Cole Watkins
League of Legends is one of the first MOBA-style games from the developer Riot Games. Two teams of five must compete against each other to destroy each other's structures and compete over side-objectives to ultimately destroy the other team's main base called the nexus. Each team consists of a player in the top lane, a player in the middle lane, a player in between the lanes in an area called the "jungle", and two players in the bottom lane. There are a litany of game mechanics to learn and master, and I will be comparing myself and my friend's proficiencies in some of these game mechanics.
I have a thought in my head of who is better or worse at this game in my friend group, but I would like to get into the nitty gritty of who's the best/worst at specific game mechanics in order for us to work better together as a team, or even just something to help me get better at the game, as I adore improving at my video game skill.
import pandas as pd
import numpy as np
import requests
from bs4 import BeautifulSoup
import matplotlib.pyplot as plt
from matplotlib.pyplot import figure
import time
<Figure size 720x720 with 0 Axes>
<Figure size 720x720 with 0 Axes>
I will be using Riot's own API. This API requires that you first request by summoner name (which is the in-game username) and then request by that summoner's accountid, which is a value hidden to a typical user.
apikey = "RGAPI-dd2a5803-9130-4604-b529-47d5a7add410"
riot = requests.get("https://na1.api.riotgames.com/lol/summoner/v4/summoners/by-name/Coolgum15?api_key={}".format(apikey))
riot
#Response 200 = correct request
<Response [200]>
This second request will vary on what queue type you are looking for. My friends and I play mostly normal games and ARAM games, so I will be looking at queue=400 (normals), as ARAM games are not tracked as well.
Queue ids can be found here: https://static.developer.riotgames.com/docs/lol/queues.json
The other value you have to pay attention is is season. I personally have played a lot this current season, which is season 11, so I will be using season=13. Documentation for season ID is unfortunately deprecated. You'll have to trial and error this.
Additionally, since seasonID is deprecated, you'll have to manually check the dataframe to make sure it has this year's games. This can be done by cross referencing the dataframe with League of Legends's match history (https://matchhistory.na.leagueoflegends.com/en/#match-history) and by checking the number of games you have in your LoL client. (Profile -> stats -> hover over games played to see queue type). Sadly this does not count ARAM games, so that would also have to be manually checked.
Data requests can only have 100 matches per request, so we'll have to make multiple requests and stich them together. Furthermore, the API limits requests to 20 requests per second or 100 requests per 2 minutes, so this implementation must be built around that.
Once we have retrieve these values we must isolate the matches data from the request into a dataframe.
#returns a dataframe from account #summoner, in queue type #queue, with #num number of matches using #api api key
def get_matches(summoner, api, queue, num):
riot = requests.get("https://na1.api.riotgames.com/lol/summoner/v4/summoners/by-name/{}?api_key={}".format(summoner, apikey))
riot_json = riot.json()
acc_id = riot_json['accountId']
req = requests.get("https://na1.api.riotgames.com/lol/match/v4/matchlists/by-account/{}?queue={}&season=13&api_key={}".format(acc_id, queue, apikey))
req_json = req.json()
matches = req_json['matches']
df = pd.DataFrame.from_dict(matches)
for count in range(100, num, 100):
if (count + 100) < num:
end = count + 100
else:
end = num
req = requests.get("https://na1.api.riotgames.com/lol/match/v4/matchlists/by-account/{}?queue={}&season=13&endIndex={}&beginIndex={}&api_key={}".format(acc_id, queue, end, count, apikey))
matches = req.json()['matches']
df2 = pd.DataFrame.from_dict(matches)
df = pd.concat([df, df2])
return df
Users to be compared as I will be using first names for my sake.
Coolgum15 = Cole (Me!)
Rotome = Jerry
Dublaiar = Aidan
I have had 187 normal games of League of Legends this year, and I will compare this data to the same data my friends have acheived in the past 187 normal games
#requests via function
cole_norms = get_matches("Coolgum15", apikey, 400, 187)
aidan_norms = get_matches("Dublaiar", apikey, 400, 187)
jerry_norms = get_matches("Rotome", apikey, 400, 187)
cole_norms.head()
| platformId | gameId | champion | queue | season | timestamp | role | lane | |
|---|---|---|---|---|---|---|---|---|
| 0 | NA1 | 3980383193 | 268 | 400 | 13 | 1626562870130 | DUO_SUPPORT | NONE |
| 1 | NA1 | 3979811190 | 154 | 400 | 13 | 1626500957506 | NONE | JUNGLE |
| 2 | NA1 | 3978656378 | 29 | 400 | 13 | 1626409869664 | DUO_CARRY | BOTTOM |
| 3 | NA1 | 3978612280 | 268 | 400 | 13 | 1626408168455 | SOLO | MID |
| 4 | NA1 | 3978516000 | 134 | 400 | 13 | 1626406129061 | SOLO | MID |
Then we can request once again, this time using the gameId to get the specific data of that match. Since this will be processing a large number of requests, as we must make a request for each match (187 per player!), the requests must be structured around the previously mentioned 100 requests per 2 minutes.
From this request we are going to isolate teammate data for analysis.
From this isolated teammate data we will also remove unnessary columns that represent parts of the game that do not impact performance (such as summoner icon), counters that don't tell us much (like number of ability casts, which varies greatly across champions), deprecated game features (like purchasable vision wards that are not control wards), account details (we don't care about puuid/summoner id anymore, only summoner name), or champion specific mechanics (like transformations).
def match_data(api, df):
#create new dataframe
game_id = df['gameId'].tolist()
data = []
for i in game_id:
#100 requests / 120 seconds ~= .9 sleep between requests.
time.sleep(.9)
#append to existing dataframe
req = requests.get("https://americas.api.riotgames.com/lol/match/v5/matches/NA1_{}?api_key={}".format(i, api))
req_json = req.json()
df2 = pd.DataFrame.from_dict(req_json['info']['participants'])
df2 = df2.drop(columns=['championTransform', 'damageSelfMitigated', 'goldSpent', 'itemsPurchased', 'lane',
'largestCriticalStrike', 'nexusKills', 'pentaKills',
'perks', 'profileIcon', 'quadraKills', 'riotIdName', 'riotIdTagline',
'sightWardsBoughtInGame', 'spell1Casts', 'spell2Casts', 'spell3Casts', 'spell4Casts',
'puuid', 'summonerId', 'totalDamageShieldedOnTeammates', 'totalHealsOnTeammates',
'tripleKills', 'unrealKills', 'champExperience', 'consumablesPurchased',
'doubleKills', 'championId'])
data.append(df2)
return data
#these are all separate, as each takes 4 minutes to request all matches
cole_matches = match_data(apikey, cole_norms)
cole_matches
[ assists baronKills bountyLevel champLevel championName \
0 0 0 0 11 Sett
1 1 0 0 10 MasterYi
2 0 0 0 11 Xerath
3 0 0 0 9 Varus
4 2 0 0 9 Yuumi
5 2 0 5 13 Riven
6 9 0 3 11 Amumu
7 1 0 2 12 Azir
8 3 0 1 11 Ashe
9 6 0 1 9 Leona
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3859 5390 3859
1 0 7813 0
2 0 200 0
3 214 376 214
4 0 135 0
5 118 118 118
6 0 11783 0
7 3514 7569 3514
8 4037 13197 4037
9 1114 5782 1114
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 4 1 0 False False
1 4 1 0 False False
2 4 2 0 False False
3 5 0 0 False False
4 4 3 0 False False
5 0 0 0 False False
6 0 0 3 False False
7 2 3 0 False False
8 1 0 0 False True
9 1 2 0 True False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 True False False
9 False True False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 5451 TOP 0
1 True 5894 JUNGLE 0
2 True 5149 MIDDLE 0
3 True 5917 BOTTOM 0
4 True 3878 UTILITY 0
5 True 7639 TOP 0
6 True 7128 JUNGLE 0
7 True 7794 MIDDLE 0
8 True 8614 BOTTOM 0
9 True 5342 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 0 1054 6630 1001 0 0
1 0 0 6672 1001 1042 1042 1042
2 0 0 1056 6655 3020 0 0
3 0 0 0 6691 3006 1036 1036
4 0 0 3851 1052 2065 2055 0
5 0 0 6630 2031 1036 3047 3067
6 0 0 3068 2031 3047 3076 1011
7 0 0 0 2420 3020 1056 6655
8 0 0 1054 6673 3006 3123 3046
9 0 0 3860 3047 2055 3105 1028
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 0 3340 0 0 0 0
1 1018 3364 0 0 0 0
2 0 3340 0 2 0 1
3 3070 3340 1 2 2 2
4 0 3364 0 0 0 0
5 1036 3340 1 5 5 2
6 0 3364 1 3 3 2
7 1052 3340 2 6 4 2
8 0 3340 1 5 4 2
9 3076 3364 0 2 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 483 556 556
1 666 6253 0
2 583 44739 6867
3 352 2947 752
4 397 3790 1683
5 0 52 52
6 0 58069 3355
7 478 68778 10658
8 746 709 677
9 741 2382 959
magicDamageTaken neutralMinionsKilled nexusTakedowns objectivesStolen \
0 2115 0 0 0
1 2823 116 0 0
2 7074 0 0 0
3 2915 0 0 0
4 2117 0 0 0
5 1014 3 0 0
6 2517 104 0 0
7 3822 0 0 0
8 2888 11 0 0
9 1319 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 58716
1 0 2 71888
2 0 3 7778
3 0 4 42621
4 0 5 2526
5 0 6 64501
6 0 7 15386
7 0 8 7147
8 0 9 67978
9 0 10 6373
physicalDamageDealtToChampions physicalDamageTaken role \
0 6127 11345 DUO
1 2314 13404 SUPPORT
2 151 480 SUPPORT
3 4750 6140 SUPPORT
4 439 2525 SUPPORT
5 12168 8366 SUPPORT
6 1070 9139 SUPPORT
7 93 3262 SUPPORT
8 5308 4512 DUO
9 986 4627 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 12 3 4 292
1 10 11 3 4 115
2 1 4 1 12 99
3 2 14 2 4 117
4 4 7 4 3 163
5 3 4 1 11 189
6 12 11 1 4 139
7 2 4 2 21 191
8 3 4 2 7 240
9 5 14 2 4 192
summonerName teamEarlySurrendered teamId teamPosition \
0 SOUTHGUNSLING False 100 TOP
1 pwndaros False 100 JUNGLE
2 PsyQe False 100 MIDDLE
3 TheDreadnaught7 False 100 BOTTOM
4 snokween11 False 100 UTILITY
5 Xigma the Dragon False 200 TOP
6 babongshoo False 200 JUNGLE
7 Coolgum15 False 200 MIDDLE
8 Negi Valentine False 200 BOTTOM
9 Thick2BThighs False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 11 1190 66560 7161
1 2 1190 95127 3831
2 13 1190 52518 7018
3 5 1190 47225 5649
4 11 1190 6316 2122
5 27 1190 68736 12358
6 15 1190 84637 5658
7 6 1190 80690 10876
8 16 1190 70113 5985
9 15 1190 24810 2372
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 14311 599 120 95
1 16518 6705 10 129
2 7555 12 87 142
3 9468 347 107 118
4 5011 5068 8 22
5 10798 1495 135 103
6 11657 4969 3 157
7 7457 94 121 128
8 7618 1468 130 379
9 6080 190 29 21
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 105 1 7288
1 112 1 16985
2 106 1 0
3 105 1 1656
4 64 5 0
5 0 1 4183
6 0 1 11181
7 53 1 4764
8 27 2 1425
9 21 1 16054
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 478 850 0 0
1 1516 290 0 0
2 0 0 0 0
3 146 412 0 0
4 0 369 0 0
5 138 1417 0 0
6 1232 0 0 0
7 124 372 1 1
8 0 216 1 2
9 427 133 1 1
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 3 10 1 0
1 3 15 2 1
2 3 16 2 1
3 3 14 0 4
4 3 20 4 0
5 0 7 0 1
6 0 9 0 1
7 0 10 3 0
8 0 14 0 2
9 0 24 3 3
wardsPlaced win
0 6 False
1 4 False
2 7 False
3 5 False
4 9 False
5 4 True
6 1 True
7 6 True
8 6 True
9 11 True ,
assists baronKills bountyLevel champLevel championName \
0 3 0 1 15 Zyra
1 9 0 11 16 Zac
2 4 0 0 14 MonkeyKing
3 9 0 0 13 Jhin
4 16 0 2 13 Yuumi
5 3 0 0 14 Mordekaiser
6 1 0 0 13 Khazix
7 3 0 0 14 Yone
8 4 0 0 12 Jinx
9 6 0 0 13 Seraphine
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2141 3943 2141
1 484 19855 484
2 3034 5173 3034
3 1591 5517 1591
4 1032 1475 1032
5 933 7164 933
6 322 13643 322
7 2738 4935 2738
8 3001 3001 3001
9 1097 1178 1097
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 2 0 1 False False
1 0 1 1 False False
2 3 3 1 False False
3 2 2 0 False False
4 2 0 0 False False
5 4 0 0 False False
6 5 0 1 False False
7 4 0 0 False False
8 8 2 0 False False
9 8 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 True False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 10788 MIDDLE 0
1 True 13766 JUNGLE 0
2 True 8702 TOP 0
3 True 9069 BOTTOM 0
4 True 7904 UTILITY 0
5 True 8969 TOP 0
6 True 8256 JUNGLE 0
7 True 9508 MIDDLE 0
8 True 9100 BOTTOM 0
9 True 8195 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 0 1056 2031 6653 3020 4637
1 0 0 3047 3067 3075 3083 3068
2 0 0 1055 6632 3047 3071 1036
3 0 0 6671 3009 6676 3086 0
4 0 0 3853 6617 3222 4642 0
5 0 0 1054 4633 3047 4637 1033
6 0 0 6691 2031 3156 3067 1036
7 0 0 6673 3006 3072 1054 0
8 0 0 1036 6672 3085 3006 2003
9 0 0 3853 2031 3011 6617 3158
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 1058 3340 2 8 4 2
1 3211 3364 1 11 11 2
2 1036 3340 0 3 0 1
3 1055 3363 1 3 3 1
4 0 3364 1 3 2 1
5 1028 3340 0 0 0 0
6 1001 3340 0 3 0 1
7 0 3340 0 1 0 1
8 1036 3363 0 3 0 1
9 3108 3364 0 2 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 1193 102699 15641
1 0 172525 17538
2 843 18209 1541
3 1032 3513 618
4 556 10911 7851
5 632 66353 7196
6 480 6059 217
7 746 15282 3202
8 752 1124 700
9 775 61881 13744
magicDamageTaken neutralMinionsKilled nexusTakedowns objectivesStolen \
0 4438 4 0 0
1 8428 169 0 0
2 7454 8 0 0
3 4839 4 0 0
4 2565 0 0 0
5 8294 12 0 0
6 5800 104 0 0
7 8659 8 0 0
8 12232 4 0 0
9 10187 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 16652
1 0 2 23932
2 0 3 57711
3 0 4 86251
4 0 5 1782
5 0 6 30991
6 0 7 73236
7 0 8 94433
8 0 9 79991
9 0 10 5534
physicalDamageDealtToChampions physicalDamageTaken role \
0 1115 8030 SOLO
1 1368 18297 NONE
2 5197 8794 SOLO
3 7847 7213 CARRY
4 1150 5911 SUPPORT
5 1200 9783 SOLO
6 4993 14223 NONE
7 8209 6584 SOLO
8 12260 6246 CARRY
9 1237 5727 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 4 2 14 145
1 3 4 20 11 191
2 1 14 3 4 193
3 3 7 2 4 96
4 3 4 4 14 137
5 2 12 1 4 106
6 3 4 14 11 34
7 5 4 6 14 94
8 3 4 5 7 329
9 5 4 6 3 368
summonerName teamEarlySurrendered teamId teamPosition \
0 Ultimate Arbiter False 100 MIDDLE
1 Coolgum15 False 100 JUNGLE
2 Kunorebi False 100 TOP
3 Dublaiar False 100 BOTTOM
4 Alece False 100 UTILITY
5 crabby boi False 200 TOP
6 xBlazeRunner False 200 JUNGLE
7 Black Leeroy False 200 MIDDLE
8 S2GodS2 False 200 BOTTOM
9 TheFalseProphet False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 35 1856 122555 17465
1 44 1856 209973 19784
2 8 1856 77724 6823
3 23 1856 95109 8465
4 27 1856 13035 9343
5 5 1856 97993 8725
6 1 1856 92988 5287
7 12 1856 119768 14426
8 24 1856 89935 13962
9 35 1856 67416 14982
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 13882 769 184 228
1 27795 42937 66 604
2 17724 2908 142 13
3 12349 2799 143 89
4 8799 14550 3 45
5 18508 4819 166 28
6 20285 9405 6 69
7 15562 346 168 64
8 18979 3951 149 66
9 16414 1770 43 297
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 91 1 3203
1 0 7 13516
2 79 1 1804
3 66 2 5344
4 37 5 340
5 114 1 648
6 127 1 13692
7 111 1 10052
8 220 3 8819
9 231 5 0
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 708 1413 1 2
1 878 1069 1 2
2 84 1475 1 2
3 0 295 0 2
4 340 321 0 2
5 327 430 1 2
6 76 262 1 1
7 3014 318 1 3
8 1001 500 0 2
9 0 499 1 2
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 4 8 0 0
1 4 25 1 7
2 4 30 3 1
3 4 27 2 1
4 4 27 0 3
5 3 16 0 2
6 3 20 0 2
7 3 16 0 0
8 3 21 4 3
9 3 42 1 1
wardsPlaced win
0 5 True
1 5 True
2 12 True
3 11 True
4 10 True
5 9 False
6 9 False
7 10 False
8 11 False
9 19 False ,
assists baronKills bountyLevel champLevel championName \
0 5 0 0 16 Riven
1 8 0 1 17 MasterYi
2 6 0 0 16 Zed
3 13 0 0 17 Twitch
4 7 0 0 15 Sett
5 19 0 0 18 Gangplank
6 16 2 0 17 Kayn
7 13 0 5 18 Qiyana
8 24 0 0 17 Ashe
9 28 0 1 18 Soraka
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 1111 1111 1111
1 849 34991 849
2 2195 5056 2195
3 2523 2523 2523
4 760 760 760
5 5594 14435 5594
6 2547 25936 2547
7 3526 6337 3526
8 8017 35701 8017
9 1335 3876 1335
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 11 1 0 False False
1 16 0 2 False False
2 11 0 0 False False
3 6 0 0 False False
4 11 2 0 False False
5 8 2 1 True False
6 12 2 3 False True
7 10 0 0 False False
8 7 0 0 False False
9 3 3 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False True False
2 True False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 12260 TOP 0
1 False 18473 JUNGLE 0
2 False 14201 MIDDLE 0
3 False 13821 BOTTOM 0
4 False 7521 UTILITY 0
5 False 16196 TOP 1
6 False 15449 JUNGLE 0
7 False 14235 MIDDLE 1
8 False 17051 BOTTOM 0
9 False 12035 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 2 3071 3158 6630 1031 6609
1 0 2 6672 6676 3124 3006 6675
2 0 2 6691 3036 3158 6676 3123
3 0 2 3123 6672 3006 3085 3031
4 0 2 3857 3009 3066 6631 1031
5 1 0 3042 3078 3053 3158 3075
6 0 0 6630 3158 2031 3071 6333
7 1 0 6693 3042 3158 6609 3134
8 0 0 3033 3026 3153 3006 3031
9 2 0 3853 2065 3157 2055 6616
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 1036 3340 1 5 2 1
1 3072 3340 3 17 4 3
2 6695 3340 1 13 6 1
3 1038 3340 1 5 3 1
4 1028 3364 0 0 0 0
5 3110 3363 3 12 5 2
6 3075 3340 4 14 3 2
7 0 3340 3 12 5 2
8 6672 3340 3 11 5 1
9 3158 3364 2 6 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 292 0 0
1 355 4488 0
2 905 6594 1450
3 1009 0 0
4 782 0 0
5 614 22204 9474
6 490 5067 272
7 359 12162 2737
8 968 4594 3094
9 1040 57554 15496
magicDamageTaken neutralMinionsKilled nexusTakedowns objectivesStolen \
0 5167 41 0 0
1 7156 136 0 0
2 5344 8 0 0
3 7313 16 0 0
4 8385 0 0 0
5 536 10 0 0
6 1655 103 0 1
7 608 4 1 0
8 1583 22 1 0
9 197 12 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 139773
1 0 2 142927
2 0 3 116292
3 0 4 162328
4 0 5 27437
5 0 6 182650
6 0 7 158116
7 0 8 129449
8 0 9 147289
9 0 10 9778
physicalDamageDealtToChampions physicalDamageTaken role \
0 18900 29380 SOLO
1 30480 38808 NONE
2 31738 22178 SOLO
3 27283 17695 CARRY
4 5810 23580 SUPPORT
5 27085 36238 SOLO
6 28340 38174 NONE
7 27076 26289 SOLO
8 23612 23488 CARRY
9 2399 20248 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 5 14 6 4 68
1 13 11 6 4 130
2 6 14 4 4 137
3 5 4 4 7 190
4 1 14 3 4 95
5 3 12 5 4 400
6 6 4 13 11 56
7 6 4 6 14 199
8 7 7 5 4 262
9 3 4 6 21 184
summonerName teamEarlySurrendered teamId teamPosition \
0 poopydoopyikilu False 100 TOP
1 Killerspartan36 False 100 JUNGLE
2 Grecko Moria False 100 MIDDLE
3 Coolgum15 False 100 BOTTOM
4 Dublaiar False 100 UTILITY
5 jackhoffdaily False 200 TOP
6 Spooktre False 200 JUNGLE
7 bresez False 200 MIDDLE
8 shelbyelite False 200 BOTTOM
9 JadeKmaz False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 27 2316 141777 20479
1 6 2316 190834 45434
2 7 2316 124925 34662
3 13 2316 193909 37519
4 9 2316 37569 7761
5 13 2316 222349 40943
6 28 2316 174406 29259
7 25 2316 143403 31485
8 44 2316 168962 30500
9 56 2316 68136 18371
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 37055 5009 149 161
1 49061 14329 44 174
2 29398 2453 153 152
3 26649 9633 220 332
4 33815 2507 53 29
5 46374 18494 194 401
6 51275 19005 60 303
7 31855 3545 136 88
8 27561 4890 153 594
9 23055 31657 36 434
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 330 1 2004
1 638 1 43417
2 470 1 2038
3 222 4 31580
4 362 1 10132
5 258 1 17495
6 419 1 11222
7 361 1 1792
8 262 4 17077
9 119 5 803
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 1578 2507 0 0
1 14953 3096 2 2
2 1472 1875 0 1
3 10236 1640 0 1
4 1950 1850 1 1
5 4384 9599 4 4
6 646 11445 1 5
7 1672 4956 1 2
8 3793 2489 3 4
9 475 2608 0 3
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 9 24 1 2
1 9 21 0 2
2 9 16 0 3
3 9 20 0 2
4 9 86 2 7
5 3 34 2 0
6 3 26 2 1
7 3 8 0 1
8 3 22 1 1
9 3 69 6 6
wardsPlaced win
0 13 False
1 8 False
2 6 False
3 10 False
4 30 False
5 15 True
6 10 True
7 5 True
8 10 True
9 33 True ,
assists baronKills bountyLevel champLevel championName \
0 1 0 1 14 Veigar
1 2 0 0 11 Rengar
2 0 0 3 13 Fizz
3 7 0 0 12 Ezreal
4 10 0 0 10 Lux
5 1 0 0 12 Teemo
6 2 0 0 10 Kindred
7 5 0 0 12 Azir
8 5 0 0 10 Seraphine
9 3 0 0 10 Ashe
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2839 2839 2839
1 89 33554 89
2 2035 2035 2035
3 5984 8905 5984
4 538 3301 538
5 1558 1558 1558
6 0 1706 0
7 1940 1940 1940
8 0 96 0
9 463 734 463
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 2 0 0 False False
1 3 4 3 False False
2 4 0 0 False False
3 1 0 0 False True
4 2 4 0 True False
5 5 0 0 False False
6 8 2 0 False False
7 4 0 0 False False
8 5 0 0 False False
9 6 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False True False
2 False False False
3 True False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 8086 TOP 0
1 True 6342 JUNGLE 0
2 True 8783 MIDDLE 0
3 True 9446 BOTTOM 0
4 True 6736 UTILITY 0
5 True 6105 TOP 0
6 True 5588 JUNGLE 0
7 True 8389 MIDDLE 0
8 True 5073 UTILITY 0
9 True 5794 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 0 1056 6656 3070 3020 1026
1 0 0 3508 3158 1042 3067 1036
2 0 0 3041 6655 2033 1052 3158
3 0 0 1055 6632 3158 3004 0
4 0 0 3853 6655 3158 1082 0
5 0 0 1056 6653 3020 0 0
6 0 0 3006 6632 1036 0 0
7 0 0 1056 3157 3020 6655 1042
8 0 0 3851 6617 3020 1052 1004
9 0 0 6672 3006 1036 2031 0
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 1058 3364 1 6 5 1
1 0 3513 1 3 2 1
2 3057 3340 3 10 3 2
3 0 3340 1 6 6 1
4 0 3364 1 3 3 1
5 0 3340 1 2 2 1
6 0 3364 0 1 0 1
7 1042 3340 1 4 2 1
8 0 3364 1 2 2 1
9 1055 3340 0 3 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 634 63250 7739
1 687 16033 365
2 434 54665 12345
3 1080 10641 4961
4 951 16387 4852
5 437 41670 10639
6 289 15155 1099
7 392 58676 14517
8 288 9844 3483
9 500 430 330
magicDamageTaken neutralMinionsKilled nexusTakedowns objectivesStolen \
0 7833 4 0 0
1 4497 82 0 0
2 8381 4 0 0
3 7294 9 0 0
4 2845 0 0 0
5 6842 0 0 0
6 5736 77 0 0
7 7543 4 0 0
8 4868 0 0 0
9 6795 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 8088
1 0 2 52457
2 0 3 16949
3 0 4 85722
4 0 5 2764
5 0 6 18408
6 0 7 44254
7 0 8 3863
8 0 9 1997
9 0 10 27219
physicalDamageDealtToChampions physicalDamageTaken role \
0 524 2778 DUO
1 4746 11195 NONE
2 2936 8889 DUO
3 9480 5454 CARRY
4 336 3431 SUPPORT
5 873 5167 SOLO
6 3853 11604 NONE
7 857 3980 SOLO
8 620 4634 SUPPORT
9 4384 4402 CARRY
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 14 2 4 235
1 11 11 2 3 57
2 3 12 3 4 240
3 3 4 3 7 69
4 3 4 1 14 97
5 3 14 3 4 200
6 12 11 3 4 137
7 4 4 2 12 190
8 3 4 2 14 137
9 4 7 2 4 95
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 Baconaotr109 False 100 TOP 6
1 whypoof False 100 JUNGLE 4
2 Mozfart False 100 MIDDLE 13
3 kingkongwang False 100 BOTTOM 0
4 Natnat1 False 100 UTILITY 30
5 Azmodien False 200 TOP 32
6 KingTerrific False 200 JUNGLE 2
7 Coolgum15 False 200 MIDDLE 8
8 Alece False 200 UTILITY 9
9 Dublaiar False 200 BOTTOM 21
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1262 71880 8805
1 1262 87672 5312
2 1262 75832 15281
3 1262 104339 14442
4 1262 19528 5564
5 1262 60701 12134
6 1262 65853 5628
7 1262 62540 15374
8 1262 11985 4247
9 1262 28153 4737
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 10862 624 125 44
1 15836 8271 7 130
2 17607 3501 122 158
3 13272 5056 140 1
4 6485 448 10 119
5 12279 711 106 234
6 17574 6288 15 109
7 11645 2 101 112
8 9719 1711 15 70
9 11476 804 58 286
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 62 1 542
1 79 1 19182
2 110 1 4218
3 35 2 7975
4 61 1 375
5 152 1 622
6 176 8 6443
7 116 1 0
8 101 4 144
9 148 3 503
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 542 250 1 2
1 200 144 1 1
2 0 337 1 1
3 0 524 1 2
4 375 208 0 0
5 622 270 0 0
6 675 232 0 0
7 0 120 0 0
8 144 216 0 0
9 22 277 0 0
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 0 6 0 1
1 0 18 4 1
2 0 7 0 0
3 0 2 0 0
4 0 38 4 3
5 4 9 0 1
6 4 18 2 5
7 4 9 0 0
8 4 8 0 1
9 4 9 0 0
wardsPlaced win
0 2 True
1 7 True
2 6 True
3 1 True
4 17 True
5 5 False
6 3 False
7 5 False
8 5 False
9 5 False ,
assists baronKills bountyLevel champLevel championName \
0 2 0 0 12 Kayn
1 3 0 0 13 Sejuani
2 3 0 0 10 Malzahar
3 3 0 0 12 Draven
4 7 0 0 10 Soraka
5 5 0 0 13 Kayle
6 7 0 3 14 Shyvana
7 6 0 5 14 Syndra
8 4 0 1 11 MissFortune
9 5 0 1 10 Sett
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 697 697 697
1 445 15696 445
2 0 519 0
3 2554 5558 2554
4 996 996 996
5 2208 2883 2208
6 699 16309 699
7 4695 4695 4695
8 2644 5037 2644
9 1948 3104 1948
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 4 0 0 False False
1 3 3 1 False False
2 5 0 0 False False
3 5 0 0 False False
4 5 5 0 False False
5 4 3 0 False False
6 1 0 2 False False
7 1 2 0 False True
8 3 0 0 False False
9 3 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 6471 TOP 0
1 True 8898 JUNGLE 0
2 True 4838 MIDDLE 0
3 True 9968 BOTTOM 0
4 True 5886 UTILITY 0
5 True 7171 TOP 0
6 True 10084 JUNGLE 0
7 True 11070 MIDDLE 0
8 True 7127 BOTTOM 0
9 True 5481 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 0 1054 3111 6630 1028 1036
1 0 0 3047 2031 3068 8001 3076
2 0 0 1056 6653 3020 0 0
3 0 0 1055 3006 3508 6673 1037
4 0 0 6617 3853 3114 3158 2055
5 0 0 3115 4635 1026 1056 3006
6 0 0 3020 6631 2031 3135 3067
7 0 0 3020 6655 3157 1058 1056
8 0 0 1055 6672 3006 3134 0
9 0 0 3857 3051 3047 6029 1028
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 0 3340 0 1 0 1
1 1028 3364 1 5 3 1
2 0 3340 0 0 0 0
3 0 3340 1 5 2 2
4 1028 3364 0 1 0 1
5 0 3340 0 2 0 1
6 3108 3364 2 8 5 3
7 1058 3340 2 8 5 2
8 0 3340 1 3 2 1
9 2055 3364 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 962 0 0
1 582 39451 3369
2 499 32074 6109
3 439 0 0
4 438 10211 4652
5 714 41139 6966
6 906 89166 15175
7 858 105297 22810
8 602 2947 878
9 593 0 0
magicDamageTaken neutralMinionsKilled nexusTakedowns objectivesStolen \
0 12435 0 0 0
1 9180 96 0 1
2 8421 0 0 0
3 8938 8 0 0
4 7397 0 0 0
5 2557 16 0 0
6 5974 140 0 0
7 3625 4 0 0
8 1493 4 0 0
9 2664 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 58594
1 0 2 64936
2 1 3 7868
3 0 4 107572
4 0 5 2504
5 0 6 27527
6 0 7 49056
7 0 8 9543
8 0 9 43070
9 0 10 14150
physicalDamageDealtToChampions physicalDamageTaken role \
0 8066 8586 NONE
1 5280 12774 NONE
2 166 3509 SOLO
3 16640 9120 CARRY
4 461 2749 SUPPORT
5 3889 9344 SOLO
6 5985 19085 NONE
7 721 5269 SOLO
8 7163 6171 CARRY
9 3344 7577 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 4 2 12 359
1 2 4 12 11 171
2 3 14 4 4 114
3 3 4 5 7 267
4 2 21 3 4 165
5 2 12 3 4 292
6 3 4 17 11 221
7 3 4 4 1 190
8 3 4 3 7 137
9 3 14 0 4 95
summonerName teamEarlySurrendered teamId teamPosition \
0 EternityAwaits False 100 TOP
1 Timaze False 100 JUNGLE
2 FutureBoy613 False 100 MIDDLE
3 Super Rainbowman False 100 BOTTOM
4 Pog Champîon False 100 UTILITY
5 CoolRai3r False 200 TOP
6 SailedCashew False 200 JUNGLE
7 Coolgum15 False 200 MIDDLE
8 Alece False 200 BOTTOM
9 Dublaiar False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 15 1423 61314 8066
1 16 1423 116411 9006
2 27 1423 43819 6757
3 12 1423 111314 16816
4 26 1423 12715 5114
5 4 1423 70740 11124
6 9 1423 148948 22496
7 29 1423 114840 23532
8 5 1423 54197 8669
9 5 1423 20762 4312
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 22221 4161 120 180
1 23110 7486 33 301
2 12092 3 73 227
3 18685 5011 163 109
4 10201 11984 16 142
5 12017 2137 110 140
6 25443 10775 21 230
7 9376 1984 161 219
8 7681 2031 108 84
9 10257 497 31 14
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 106 1 2720
1 43 3 12024
2 103 1 3877
3 105 3 3742
4 100 5 0
5 105 3 2073
6 32 1 10726
7 32 1 0
8 62 3 8179
9 56 1 6612
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 0 1199 0 0
1 356 1155 0 0
2 482 162 0 0
3 176 626 1 1
4 0 54 0 1
5 268 116 0 0
6 1336 384 0 1
7 0 482 1 1
8 626 16 1 1
9 967 16 0 1
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 4 10 0 1
1 4 20 3 2
2 4 6 0 0
3 4 10 0 3
4 4 42 7 6
5 1 20 3 2
6 1 10 2 1
7 1 20 2 1
8 1 13 0 3
9 1 29 3 4
wardsPlaced win
0 6 False
1 5 False
2 4 False
3 7 False
4 16 False
5 10 True
6 4 True
7 8 True
8 6 True
9 16 True ,
assists baronKills bountyLevel champLevel championName \
0 8 0 0 17 Akali
1 14 0 0 17 Evelynn
2 11 0 0 18 Gangplank
3 15 0 0 18 Ashe
4 14 0 0 17 Sett
5 17 0 1 18 Darius
6 23 1 0 18 TahmKench
7 17 0 6 18 Lux
8 17 0 2 18 Jinx
9 21 0 1 16 Leona
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 0 1913 0
1 525 1563 525
2 1635 4406 1635
3 5738 24795 5738
4 1807 2841 1807
5 8599 16686 8599
6 2973 38150 2973
7 7493 8268 7493
8 3614 18887 3614
9 1140 6123 1140
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 15 1 0 False False
1 13 0 1 False False
2 13 0 0 False False
3 8 0 2 False True
4 13 1 0 True False
5 8 1 0 False False
6 12 4 3 False False
7 3 1 0 False False
8 12 1 0 False False
9 9 3 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False True False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 11182 TOP 0
1 False 13776 JUNGLE 0
2 False 17606 MIDDLE 0
3 False 21693 BOTTOM 0
4 False 13876 UTILITY 0
5 False 18272 TOP 1
6 False 14538 JUNGLE 1
7 False 21376 MIDDLE 1
8 False 19008 BOTTOM 0
9 False 12094 UTILITY 1
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 4 3157 4637 4633 3020 1082
1 0 4 3020 4636 3100 1058 3135
2 0 4 6632 3158 6676 3036 3033
3 0 4 6672 3046 3006 3124 3072
4 0 4 3857 3009 3742 6631 3075
5 4 0 3133 6631 3047 3053 3742
6 1 0 6662 3742 3065 3111 3075
7 2 0 3157 3102 6655 3020 3135
8 1 0 6671 3006 3031 3046 3085
9 1 0 3860 3190 3050 3117 3075
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 0 3340 1 3 2 2
1 1058 3340 1 8 2 1
2 3072 3363 1 9 5 3
3 3085 3340 4 16 8 2
4 4401 3364 1 8 2 1
5 3065 3340 3 14 4 2
6 1037 3364 1 6 2 1
7 3165 3363 3 21 8 2
8 3094 3340 4 15 3 3
9 1011 3364 1 5 2 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 425 99617 23001
1 428 102102 24660
2 466 34678 12119
3 725 5165 3289
4 551 1783 215
5 870 770 422
6 282 125328 16221
7 1163 199663 58397
8 534 8671 4323
9 439 16117 7244
magicDamageTaken neutralMinionsKilled nexusTakedowns objectivesStolen \
0 15789 5 0 0
1 17878 113 0 0
2 17982 4 0 0
3 14718 9 0 0
4 20778 4 0 0
5 21655 8 1 0
6 16552 158 1 0
7 4745 20 1 0
8 15680 29 1 0
9 8863 1 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 23462
1 0 2 10550
2 0 3 270255
3 0 4 285433
4 0 5 52386
5 0 6 184166
6 0 7 41170
7 0 8 21918
8 0 9 236458
9 0 10 12672
physicalDamageDealtToChampions physicalDamageTaken role \
0 2098 31559 SOLO
1 362 20908 NONE
2 17069 21858 SOLO
3 55240 15112 CARRY
4 11578 25639 SUPPORT
5 36874 33259 SOLO
6 4176 37137 NONE
7 2478 7571 SOLO
8 32756 18588 CARRY
9 2948 23305 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 12 7 4 119
1 13 11 7 4 137
2 7 4 8 14 185
3 6 4 6 7 190
4 7 14 3 4 95
5 5 12 5 4 93
6 22 11 6 4 325
7 2 21 2 4 122
8 7 7 6 4 131
9 8 4 10 14 100
summonerName teamEarlySurrendered teamId teamPosition \
0 Grindr Account False 100 TOP
1 SlothoftheAbyss False 100 JUNGLE
2 DarkZexi False 100 MIDDLE
3 Coolgum15 False 100 BOTTOM
4 Dublaiar False 100 UTILITY
5 darkblade2000 False 200 TOP
6 TonyTalonucci False 200 JUNGLE
7 Sir Karagas False 200 MIDDLE
8 Adn8r False 200 BOTTOM
9 Avantell False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1 2600 148025 26552
1 23 2600 120250 25586
2 24 2600 318497 33364
3 107 2600 317517 67388
4 33 2600 76660 20739
5 41 2600 199829 41295
6 47 2600 190775 23564
7 82 2600 223375 61321
8 34 2600 271154 37548
9 55 2600 37769 12134
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 48926 9073 153 84
1 40203 10456 18 339
2 42655 8486 267 640
3 31011 3604 268 1447
4 49454 1854 69 146
5 62512 24254 201 203
6 60834 22836 32 1510
7 13987 1093 225 603
8 36306 12022 205 150
9 37712 6947 43 89
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 516 1 24945
1 519 1 7598
2 511 1 13563
3 291 4 26917
4 378 1 22490
5 373 1 14892
6 431 1 24274
7 148 1 1794
8 366 3 26024
9 275 5 8980
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 1452 1576 0 0
1 564 1415 0 0
2 4175 2814 1 1
3 8858 1180 2 2
4 8945 3036 0 1
5 3998 7598 3 7
6 3167 7144 1 5
7 446 1671 4 5
8 469 2037 2 6
9 1942 5543 1 6
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 11 5 1 1
1 11 23 0 3
2 11 24 0 2
3 11 31 0 3
4 11 64 1 8
5 3 30 1 1
6 3 26 4 3
7 3 45 1 5
8 3 25 1 3
9 3 62 3 5
wardsPlaced win
0 3 False
1 11 False
2 14 False
3 14 False
4 29 False
5 16 True
6 5 True
7 16 True
8 14 True
9 20 True ,
assists baronKills bountyLevel champLevel championName \
0 3 0 3 15 Fiora
1 12 1 0 17 Garen
2 17 0 0 17 Ziggs
3 10 0 7 18 Kaisa
4 16 0 0 14 Leona
5 3 0 0 15 Akali
6 7 0 0 15 Lillia
7 7 0 0 15 Irelia
8 11 0 0 16 Ashe
9 15 0 0 13 Senna
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 0 6046 0
1 576 22655 576
2 13314 26315 13314
3 12092 30774 12092
4 0 3012 0
5 724 1439 724
6 804 23686 804
7 2986 9732 2986
8 6179 10628 6179
9 1323 3044 1323
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 2 0 1 False False
1 5 2 2 False False
2 4 0 0 False False
3 5 0 1 False True
4 7 5 0 False False
5 7 0 0 False False
6 7 1 0 False False
7 9 0 1 False False
8 4 0 0 False False
9 6 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 True False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 9682 TOP 0
1 False 13141 JUNGLE 1
2 False 14100 MIDDLE 0
3 False 17309 BOTTOM 1
4 False 9239 UTILITY 0
5 False 9290 TOP 0
6 False 11924 JUNGLE 0
7 False 11505 MIDDLE 0
8 False 15133 BOTTOM 0
9 False 9350 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 0 1055 6631 3047 3508 3077
1 1 0 3078 3006 3742 3075 3044
2 0 0 4628 3157 6653 3003 3158
3 1 0 6672 1038 3006 3085 3094
4 0 0 3860 3190 3111 3075 3067
5 0 2 4633 3020 3157 3916 1054
6 0 2 4637 3157 6653 3020 3916
7 0 2 1055 3047 0 3153 6673
8 0 2 6672 3006 3046 3072 3124
9 0 2 3864 6662 3009 3053 3067
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 1036 3340 2 6 3 1
1 1037 3340 2 7 3 1
2 0 3340 1 8 6 2
3 3508 3340 1 8 7 2
4 1011 3364 1 4 3 2
5 0 3364 0 2 0 2
6 0 3340 2 6 2 2
7 6677 3340 0 3 0 1
8 3086 3340 1 10 8 2
9 2055 3364 1 2 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 1387 2848 748
1 795 7617 742
2 759 163411 35634
3 1052 33108 7364
4 428 8913 4863
5 689 78833 8327
6 632 106505 11566
7 646 7568 1571
8 1519 2770 2570
9 832 2493 651
magicDamageTaken neutralMinionsKilled nexusTakedowns objectivesStolen \
0 6815 4 0 0
1 8990 154 0 0
2 4883 0 0 0
3 3378 57 1 0
4 4824 0 0 0
5 4984 4 0 0
6 10994 131 0 0
7 15466 4 0 0
8 9426 4 0 0
9 11315 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 48427
1 0 2 134808
2 0 3 18000
3 0 4 213314
4 0 5 7953
5 0 6 15322
6 0 7 23597
7 0 8 120277
8 0 9 162478
9 0 10 19320
physicalDamageDealtToChampions physicalDamageTaken role \
0 5905 8450 SOLO
1 7389 20070 NONE
2 1416 6592 SOLO
3 15555 14653 CARRY
4 2022 12775 SUPPORT
5 195 13601 SOLO
6 563 21816 NONE
7 4018 12204 SOLO
8 24316 8128 CARRY
9 7945 6668 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 2 14 68
1 3 4 21 11 92
2 2 12 5 4 222
3 5 4 4 7 183
4 2 4 7 14 367
5 3 12 1 4 172
6 16 11 3 4 123
7 2 14 4 4 137
8 4 4 5 7 190
9 2 14 3 4 95
summonerName teamEarlySurrendered teamId teamPosition \
0 ItsyoboiskinnyJ False 100 TOP
1 TTheUglyOne False 100 JUNGLE
2 MrxPainTrain False 100 MIDDLE
3 MrFlufferNutz False 100 BOTTOM
4 MrsChaos43 False 100 UTILITY
5 moondarkwindhigh False 200 TOP
6 trizzo7 False 200 JUNGLE
7 SlothoftheAbyss False 200 MIDDLE
8 Coolgum15 False 200 BOTTOM
9 Dublaiar False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 4 2033 70213 8921
1 16 2033 167376 14147
2 20 2033 191740 37082
3 4 2033 288902 25626
4 39 2033 22649 7570
5 1 2033 94400 8725
6 11 2033 177020 15898
7 5 2033 137954 5813
8 62 2033 190034 29361
9 15 2033 21912 8694
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 16059 4727 109 33
1 31113 9602 43 284
2 12553 2028 219 249
3 18431 8364 231 95
4 20043 2818 40 69
5 21638 3403 166 66
6 33500 13281 44 308
7 31259 4438 203 21
8 18864 3300 228 814
9 21049 5978 19 251
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 84 5 18938
1 158 1 24950
2 152 1 10328
3 106 2 42479
4 161 1 5782
5 232 1 244
6 214 1 46918
7 314 1 10108
8 144 3 24786
9 208 5 98
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 2268 793 0 0
1 6016 2051 1 1
2 32 1077 2 2
3 2706 400 6 6
4 684 2444 0 0
5 202 3052 0 0
6 3768 690 1 3
7 224 3588 1 1
8 2474 1309 3 4
9 98 3066 0 2
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 5 14 0 0
1 5 30 3 1
2 5 13 0 0
3 5 17 0 0
4 5 94 5 10
5 9 15 0 2
6 9 29 1 1
7 9 16 0 0
8 9 23 0 3
9 9 49 3 8
wardsPlaced win
0 9 True
1 13 True
2 10 True
3 11 True
4 37 True
5 7 False
6 12 False
7 10 False
8 8 False
9 23 False ,
assists baronKills bountyLevel champLevel championName \
0 17 0 2 18 Gwen
1 16 1 1 18 Khazix
2 28 0 1 18 Lux
3 23 0 1 18 Jhin
4 33 0 0 18 Xerath
5 11 1 0 18 Chogath
6 17 1 0 18 MonkeyKing
7 7 0 0 18 Ryze
8 8 0 0 18 Vayne
9 18 0 0 18 Pyke
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 8482 25367 8482
1 1068 33196 1068
2 7148 16241 7148
3 5635 16284 5635
4 3044 12570 3044
5 5896 19963 5896
6 0 25602 0
7 5164 38509 5164
8 11641 24850 11641
9 0 0 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 19 0 0 False True
1 11 1 3 False False
2 13 0 0 False False
3 6 2 1 False False
4 10 0 1 False False
5 11 0 1 False False
6 16 1 1 False False
7 13 0 0 False False
8 12 0 0 False False
9 12 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False True False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 16533 TOP 0
1 False 19479 JUNGLE 1
2 False 18848 MIDDLE 1
3 False 23771 BOTTOM 0
4 False 15753 UTILITY 0
5 False 20465 TOP 0
6 False 16887 JUNGLE 1
7 False 20681 MIDDLE 1
8 False 19566 BOTTOM 1
9 False 19481 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 3 3115 3157 3111 4633 4629
1 1 3 6691 3026 6695 3158 6676
2 1 3 3135 6655 3020 3165 4629
3 1 3 3072 6671 6676 3036 3031
4 1 3 3853 3157 4628 3020 6655
5 3 2 3193 6662 3111 3075 3065
6 1 2 6632 3158 3053 3026 6333
7 2 2 3040 4629 6656 3089 4628
8 2 2 3033 6672 3031 3006 3046
9 1 2 3857 3156 3158 3179 6691
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 4637 3364 2 7 2 2
1 6694 3340 2 13 7 2
2 3089 3340 3 12 5 2
3 3026 3340 4 23 9 4
4 3135 3364 1 9 4 2
5 3083 3364 4 16 5 2
6 1057 3340 1 7 4 2
7 3135 3340 5 15 6 2
8 3026 3340 4 11 3 2
9 3001 3364 1 10 4 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 623 129947 28435
1 474 8325 1712
2 430 208915 45254
3 682 16638 4616
4 428 135166 49747
5 378 160170 25007
6 913 37500 4481
7 588 323313 32613
8 474 0 0
9 728 0 0
magicDamageTaken neutralMinionsKilled nexusTakedowns objectivesStolen \
0 22966 15 1 0
1 13946 146 1 0
2 12614 8 1 0
3 8303 16 1 0
4 7233 8 1 0
5 42104 24 0 0
6 28515 146 0 0
7 22618 55 0 0
8 20414 23 0 0
9 18668 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 49775
1 0 2 233028
2 0 3 18091
3 0 4 257281
4 0 5 2908
5 0 6 46074
6 0 7 141985
7 0 8 12578
8 0 9 191824
9 0 10 45250
physicalDamageDealtToChampions physicalDamageTaken role \
0 6196 34477 SOLO
1 28986 31767 NONE
2 1977 13467 SOLO
3 49640 17621 CARRY
4 759 16348 SUPPORT
5 4588 36378 SOLO
6 28117 34546 NONE
7 891 19483 SOLO
8 17167 14794 CARRY
9 20844 21402 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 12 10 14 120
1 19 11 8 4 87
2 8 14 8 4 360
3 6 7 5 4 190
4 6 4 11 14 190
5 5 4 4 12 53
6 19 11 11 6 180
7 8 4 6 14 172
8 5 4 8 7 214
9 8 14 7 4 334
summonerName teamEarlySurrendered teamId teamPosition \
0 DEVOURER OF GODS False 100 TOP
1 kmSKT False 100 JUNGLE
2 Hero Øf Time False 100 MIDDLE
3 Thick2BThighs False 100 BOTTOM
4 Coolgum15 False 100 UTILITY
5 Dropp1n False 200 TOP
6 rlynotfree2play False 200 JUNGLE
7 Timinator330 False 200 MIDDLE
8 Strasti False 200 BOTTOM
9 Prodigy Pyke False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 9 2897 252403 54985
1 6 2897 260244 32101
2 67 2897 234356 50988
3 32 2897 282317 60487
4 29 2897 140054 52110
5 95 2897 238378 40286
6 37 2897 211815 33295
7 31 2897 340716 34500
8 4 2897 247517 23372
9 52 2897 55705 25993
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 69007 20955 175 125
1 49287 23221 81 202
2 29292 1090 208 547
3 27061 9839 212 207
4 27832 2768 59 159
5 96505 22583 202 2529
6 69975 19971 42 175
7 44628 3381 215 172
8 38209 14679 223 31
9 43429 11154 57 189
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 843 1 72680
1 395 1 18890
2 502 1 7349
3 223 3 8396
4 391 1 1978
5 508 1 32132
6 732 1 32329
7 589 1 4824
8 443 4 55693
9 467 1 10454
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 20354 11563 3 3
1 1402 3573 1 2
2 3756 3211 2 5
3 6230 1137 2 3
4 1603 4249 1 3
5 10690 18022 2 3
6 696 6913 0 0
7 995 2526 3 3
8 6205 3000 4 6
9 5148 3358 0 0
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 9 6 0 0
1 9 31 1 2
2 9 29 0 5
3 9 34 2 2
4 9 54 0 6
5 9 12 0 0
6 9 19 1 1
7 9 19 0 0
8 9 14 0 2
9 9 112 2 14
wardsPlaced win
0 3 True
1 13 True
2 11 True
3 15 True
4 32 True
5 7 False
6 9 False
7 13 False
8 6 False
9 46 False ,
assists baronKills bountyLevel champLevel championName \
0 6 0 0 16 Nasus
1 10 0 0 14 Garen
2 8 0 0 15 Qiyana
3 8 0 0 14 Kaisa
4 10 0 0 14 Rengar
5 8 0 5 17 Graves
6 22 0 0 16 Hecarim
7 14 0 1 16 Lissandra
8 10 0 3 15 Vayne
9 18 0 0 14 Zilean
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 69 8369 69
1 2206 30556 2206
2 2607 7707 2607
3 4610 8081 4610
4 893 1163 893
5 3258 8839 3258
6 3089 13566 3089
7 5940 7202 5940
8 4870 10596 4870
9 1771 2484 1771
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 6 1 1 False False
1 7 2 1 True False
2 5 5 0 False True
3 7 0 1 False False
4 9 3 0 False False
5 7 1 0 False False
6 6 1 1 False False
7 6 0 0 False False
8 6 5 1 False False
9 6 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False True False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 12184 TOP 0
1 True 11121 JUNGLE 0
2 True 11597 MIDDLE 0
3 True 14239 BOTTOM 0
4 True 9626 UTILITY 0
5 True 15418 TOP 0
6 True 13878 JUNGLE 1
7 True 12820 MIDDLE 0
8 True 11450 BOTTOM 0
9 True 9757 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 1 3211 3110 3158 3078 3075
1 0 1 6631 3006 3053 3742 0
2 0 1 6695 3004 3158 1036 1036
3 0 1 1055 6673 3006 6676 3046
4 0 1 3860 3152 3158 3100 3108
5 1 0 1055 6692 3142 3047 3033
6 1 0 6632 3047 3075 3053 1031
7 1 0 3157 6656 3020 1056 3089
8 1 0 1042 1018 6677 3046 3006
9 1 0 3853 2420 2065 4629 3108
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 0 3340 1 6 4 1
1 0 3340 1 4 2 2
2 6693 3364 1 7 5 1
3 3033 3340 4 10 4 2
4 3067 3364 1 4 2 1
5 3036 3340 2 11 5 3
6 3066 3364 2 8 4 2
7 0 3363 1 6 4 3
8 6672 3340 1 5 3 2
9 3158 3340 1 4 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 644 23477 9039
1 862 5914 0
2 933 12751 1696
3 498 11515 5376
4 595 45888 9864
5 512 2263 1130
6 471 25516 4186
7 778 163621 29163
8 377 0 0
9 535 48793 12606
magicDamageTaken neutralMinionsKilled nexusTakedowns objectivesStolen \
0 9142 40 0 0
1 10007 116 0 0
2 8274 12 0 0
3 10724 18 0 0
4 11742 12 0 0
5 6407 14 0 0
6 7963 148 0 1
7 5130 8 0 0
8 4775 12 0 0
9 4048 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 133303
1 0 2 126055
2 0 3 112496
3 0 4 140326
4 0 5 20226
5 1 6 197946
6 0 7 136519
7 0 8 11251
8 0 9 83075
9 0 10 3181
physicalDamageDealtToChampions physicalDamageTaken role \
0 13434 27700 SOLO
1 9472 21299 NONE
2 17849 11916 SOLO
3 16160 11102 CARRY
4 6393 15179 SUPPORT
5 38978 19463 SOLO
6 10968 29570 NONE
7 857 16091 SOLO
8 8234 11866 CARRY
9 1169 10464 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 12 4 4 129
1 5 4 17 11 246
2 3 14 3 4 96
3 2 4 6 7 195
4 4 4 5 14 292
5 2 12 4 4 246
6 16 11 7 6 221
7 4 4 4 12 189
8 3 4 3 7 217
9 6 3 3 4 108
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 Rozukkp False 100 TOP 18
1 Brwn Trout False 100 JUNGLE 22
2 SilenceDeath4U False 100 MIDDLE 33
3 y4ngst3r False 100 BOTTOM 0
4 Olsonar22 False 100 UTILITY 19
5 AAbomb2 False 200 TOP 20
6 c star u False 200 JUNGLE 26
7 Coolgum15 False 200 MIDDLE 55
8 Diresparx False 200 BOTTOM 9
9 spawn6000 False 200 UTILITY 9
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1994 158501 22473
1 1994 151857 12027
2 1994 128581 20089
3 1994 152146 21687
4 1994 73974 17037
5 1994 206335 40108
6 1994 177651 16453
7 1994 180293 30672
8 1994 113694 11594
9 1994 52467 14117
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 37670 1105 168 1376
1 32941 8167 30 335
2 20746 3710 153 123
3 22962 5061 209 10
4 28420 7942 57 127
5 26213 6457 220 200
6 39545 18062 33 275
7 22311 2281 201 345
8 17017 5584 157 10
9 14724 4324 41 75
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 188 1 1720
1 226 1 19887
2 146 1 3334
3 207 4 305
4 210 1 7859
5 264 1 6125
6 183 1 15614
7 209 1 5420
8 136 2 30618
9 149 3 492
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 0 827 0 0
1 2554 1634 1 1
2 544 554 0 1
3 151 1134 2 2
4 780 1498 0 1
5 0 342 1 3
6 1298 2011 1 4
7 650 1089 3 5
8 3360 376 1 5
9 340 210 1 5
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 7 16 1 2
1 7 33 2 3
2 7 32 6 4
3 7 19 0 2
4 7 67 3 15
5 3 25 1 1
6 3 14 1 1
7 3 16 0 2
8 3 27 5 0
9 3 66 1 4
wardsPlaced win
0 1 False
1 13 False
2 6 False
3 8 False
4 17 False
5 9 True
6 2 True
7 11 True
8 16 True
9 36 True ,
assists baronKills bountyLevel champLevel championName \
0 1 0 0 11 Urgot
1 3 0 6 11 Trundle
2 5 0 0 11 Ryze
3 2 0 3 10 Lucian
4 4 0 1 9 Nami
5 2 0 0 10 Riven
6 2 0 0 8 Volibear
7 2 0 0 12 Lissandra
8 2 0 0 9 Varus
9 2 0 0 8 Seraphine
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3440 3440 3440
1 0 11851 0
2 888 888 888
3 2337 2337 2337
4 601 601 601
5 0 0 0
6 0 1483 0
7 0 0 0
8 944 944 944
9 637 637 637
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 3 1 0 False False
1 1 3 1 False True
2 3 0 0 True False
3 0 2 0 False False
4 2 2 0 False False
5 5 0 0 False False
6 4 0 0 False False
7 3 1 0 False False
8 2 1 0 False False
9 3 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 6536 TOP 0
1 True 7973 JUNGLE 0
2 True 5590 MIDDLE 0
3 True 6328 BOTTOM 0
4 True 4470 UTILITY 0
5 True 5139 TOP 0
6 True 4330 JUNGLE 0
7 True 5266 MIDDLE 0
8 True 5651 BOTTOM 0
9 True 4318 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 0 6029 3047 3748 0 0
1 0 0 0 2031 0 3077 6632
2 0 0 3070 6655 3158 0 0
3 0 0 1055 2031 0 6671 3006
4 0 0 4005 3851 0 1001 0
5 0 0 1055 6029 3044 3047 3067
6 0 0 3044 3057 2031 3067 3158
7 0 0 1056 3802 3020 1026 0
8 0 0 1055 3070 6691 3158 0
9 0 0 6617 2055 1001 3851 1052
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 0 3340 1 2 2 1
1 3047 3364 2 9 6 1
2 0 3340 0 1 0 1
3 0 3363 1 3 3 2
4 0 3340 0 2 0 1
5 0 3340 1 3 3 1
6 0 3340 0 1 0 1
7 0 3340 0 1 0 1
8 0 3340 1 3 3 1
9 0 3364 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 439 0 0
1 361 3177 554
2 375 52888 6077
3 0 2298 929
4 481 4309 1812
5 451 0 0
6 434 15715 727
7 762 54500 4437
8 831 1462 696
9 533 11736 3220
magicDamageTaken neutralMinionsKilled nexusTakedowns objectivesStolen \
0 470 0 0 0
1 2674 83 0 0
2 4017 0 0 0
3 959 0 0 0
4 1473 0 0 0
5 2721 4 0 0
6 1494 52 0 0
7 3080 0 0 0
8 2008 0 0 0
9 1032 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 57470
1 0 2 64797
2 0 3 7707
3 0 4 54896
4 0 5 3682
5 0 6 36739
6 0 7 22217
7 0 8 5689
8 0 9 45470
9 0 10 5904
physicalDamageDealtToChampions physicalDamageTaken role \
0 5937 7054 SUPPORT
1 10280 12793 SUPPORT
2 805 3524 SUPPORT
3 5272 4509 DUO
4 377 3745 SUPPORT
5 6155 10739 SUPPORT
6 2165 7394 SUPPORT
7 527 3724 DUO
8 7224 4232 SUPPORT
9 1233 4319 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 12 1 4 147
1 10 11 3 4 124
2 3 4 1 12 255
3 2 7 1 4 196
4 2 14 1 4 81
5 2 12 3 4 470
6 8 11 2 4 201
7 2 4 2 12 189
8 2 4 3 7 259
9 2 4 2 3 457
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 MarquariusG False 100 TOP 15
1 Naldii False 100 JUNGLE 11
2 We Shall Ryze False 100 MIDDLE 12
3 Spaarkz False 100 BOTTOM 0
4 KaayyJaayy False 100 UTILITY 5
5 TRUTANK False 200 TOP 18
6 ZuuYork False 200 JUNGLE 6
7 Coolgum15 False 200 MIDDLE 11
8 xxFalconHaloxx False 200 BOTTOM 9
9 JadeFrey False 200 UTILITY 12
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 997 65864 6356
1 997 76430 11360
2 997 60596 6883
3 997 57194 6202
4 997 8239 2436
5 997 36739 6155
6 997 41310 3040
7 997 60375 5149
8 997 46932 7921
9 997 17641 4453
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 7573 400 107 113
1 15532 8831 17 297
2 7762 1082 100 22
3 5468 1926 133 0
4 5218 2273 6 63
5 14185 1006 71 75
6 8989 2794 0 120
7 6869 0 128 107
8 6270 1878 101 241
9 5625 658 16 68
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 56 1 8393
1 14 1 8454
2 46 1 0
3 0 2 0
4 41 3 247
5 114 1 0
6 43 1 3378
7 20 0 185
8 60 2 0
9 51 3 0
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 418 48 1 1
1 525 64 0 0
2 0 220 0 0
3 0 0 1 1
4 247 0 0 1
5 0 724 0 0
6 148 100 0 0
7 185 64 0 0
8 0 29 0 0
9 0 273 0 0
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 0 7 1 0
1 0 17 3 2
2 0 6 0 1
3 0 2 2 0
4 0 14 2 4
5 2 6 0 1
6 2 5 0 0
7 2 10 1 1
8 2 7 1 2
9 2 19 3 0
wardsPlaced win
0 3 True
1 4 True
2 4 True
3 2 True
4 4 True
5 3 False
6 4 False
7 6 False
8 4 False
9 10 False ,
assists baronKills bountyLevel champLevel championName \
0 3 0 11 16 MonkeyKing
1 11 0 1 15 Teemo
2 10 0 0 15 Sylas
3 8 0 0 13 Aphelios
4 20 0 0 12 Janna
5 3 0 0 13 Kled
6 5 0 0 13 Kindred
7 5 0 1 15 Lissandra
8 6 0 0 15 Lucian
9 15 0 0 13 Nautilus
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2951 6428 2951
1 228 26193 228
2 3022 3022 3022
3 3343 5143 3343
4 221 611 221
5 0 2426 0
6 2563 6048 2563
7 2969 3231 2969
8 1473 1928 1473
9 668 668 668
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 2 1 0 False False
1 7 3 3 False False
2 8 1 0 False False
3 10 0 0 False False
4 6 6 0 False False
5 11 0 0 False False
6 11 1 0 False False
7 8 1 0 False False
8 5 1 0 False True
9 6 3 0 True False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 14171 TOP 0
1 True 11134 JUNGLE 0
2 True 10374 MIDDLE 1
3 True 10308 BOTTOM 0
4 True 8262 UTILITY 0
5 True 7459 TOP 0
6 True 10841 JUNGLE 0
7 True 11221 MIDDLE 0
8 True 11907 BOTTOM 0
9 True 8050 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 1 0 3074 6632 3053 3047 0
1 0 0 3115 2031 3006 6653 1052
2 1 0 2033 6656 2421 4629 3191
3 0 0 1083 6672 3006 3085 1018
4 0 0 3853 3158 2065 2055 3504
5 0 1 1055 3047 2003 3748 6660
6 0 1 6672 2031 6676 3006 3094
7 0 1 1056 3157 3020 6655 3089
8 0 1 1055 6672 3508 6676 3123
9 0 1 3860 2033 3190 3117 3050
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 0 3363 3 17 11 4
1 1026 3364 1 7 2 1
2 3020 3340 3 10 3 2
3 1037 3340 0 4 0 1
4 3067 3364 0 3 0 1
5 1033 3340 0 2 0 1
6 0 3364 1 9 3 2
7 0 3340 2 8 3 2
8 3006 3363 4 11 4 1
9 0 3364 1 3 2 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 620 22062 5235
1 461 104983 21775
2 442 63454 21465
3 411 1195 829
4 600 18218 7811
5 279 3270 340
6 249 18659 2159
7 365 127302 23754
8 433 3338 946
9 444 13767 7468
magicDamageTaken neutralMinionsKilled nexusTakedowns objectivesStolen \
0 4968 4 0 0
1 6989 130 0 0
2 13271 1 0 0
3 4078 12 0 0
4 7158 0 0 0
5 14265 18 0 0
6 15784 111 0 0
7 12917 1 0 0
8 7791 4 0 0
9 8055 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 96400
1 0 2 31769
2 0 3 8667
3 0 4 99911
4 0 5 3257
5 0 6 73464
6 0 7 93426
7 0 8 7182
8 0 9 113780
9 0 10 7918
physicalDamageDealtToChampions physicalDamageTaken role \
0 19138 15786 SOLO
1 4612 17935 NONE
2 1237 17022 SOLO
3 16993 12640 CARRY
4 1166 7670 SUPPORT
5 9583 18523 SOLO
6 13948 15010 NONE
7 1463 5913 SOLO
8 20642 12761 CARRY
9 2949 11712 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 3 12 189
1 14 11 2 4 208
2 3 4 6 14 165
3 3 4 4 7 202
4 6 14 4 4 248
5 3 12 3 14 88
6 2 4 9 11 154
7 4 4 6 14 189
8 6 7 4 4 228
9 6 4 7 14 268
summonerName teamEarlySurrendered teamId teamPosition \
0 Infinityflare18 False 100 TOP
1 FelixTheFixer False 100 JUNGLE
2 kristianreeves12 False 100 MIDDLE
3 3032855328210365 False 100 BOTTOM
4 Plutrio False 100 UTILITY
5 Da1Hero False 200 TOP
6 TheTea False 200 JUNGLE
7 Coolgum15 False 200 MIDDLE
8 DanTheMan274 False 200 BOTTOM
9 FalconPunch360 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 16 1653 124620 24881
1 34 1653 155497 28638
2 20 1653 76899 23575
3 14 1653 115369 19166
4 43 1653 22243 9746
5 5 1653 83060 10529
6 9 1653 130718 18555
7 42 1653 135533 26265
8 0 1653 131421 23092
9 72 1653 28120 11052
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 21886 7942 165 101
1 25713 10066 37 611
2 32913 11477 78 191
3 17874 4802 152 94
4 15372 3328 17 140
5 34030 1733 106 55
6 32132 15146 22 264
7 19697 2107 149 264
8 21005 7643 174 0
9 21610 1249 46 290
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 68 1 6158
1 200 1 18743
2 265 7 4777
3 245 2 14262
4 142 11 768
5 301 1 6326
6 284 12 18632
7 215 1 1048
8 111 3 14302
9 128 1 6435
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 508 1131 2 3
1 2250 788 1 1
2 872 2619 1 1
3 1342 1156 1 1
4 768 543 0 0
5 606 1240 0 0
6 2446 1338 0 1
7 1048 866 1 1
8 1503 451 1 1
9 634 1843 0 1
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 2 8 1 1
1 2 25 3 3
2 2 22 1 1
3 2 12 0 1
4 2 69 8 7
5 5 15 0 2
6 5 16 1 1
7 5 15 1 0
8 5 18 1 2
9 5 41 5 10
wardsPlaced win
0 5 True
1 5 True
2 11 True
3 7 True
4 27 True
5 9 False
6 2 False
7 10 False
8 9 False
9 12 False ,
assists baronKills bountyLevel champLevel championName \
0 6 0 1 15 Volibear
1 5 1 0 16 Kindred
2 9 0 1 16 Seraphine
3 9 0 0 14 Jhin
4 11 0 0 13 Senna
5 7 0 2 18 Kayle
6 6 0 0 16 Kayn
7 10 0 0 16 Ekko
8 16 0 1 14 Yuumi
9 12 1 0 14 Chogath
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 0 1864 0
1 0 21945 0
2 2772 6144 2772
3 984 3619 984
4 521 2633 521
5 13340 44596 13340
6 2673 14072 2673
7 4095 4095 4095
8 3905 10606 3905
9 3559 8738 3559
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 11 1 0 False False
1 6 2 1 False False
2 7 0 0 False False
3 10 1 0 True False
4 11 1 0 False True
5 4 1 0 False False
6 6 0 1 False False
7 5 0 0 False False
8 5 1 1 False False
9 6 0 1 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False True False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 8782 TOP 0
1 False 14401 JUNGLE 0
2 False 13216 MIDDLE 0
3 False 11313 BOTTOM 0
4 False 8474 UTILITY 0
5 False 16582 TOP 0
6 False 13995 JUNGLE 2
7 False 14497 MIDDLE 0
8 False 11752 BOTTOM 0
9 False 8469 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 2 1054 6632 3047 3076 1011
1 0 2 6672 3085 3031 3006 6676
2 0 2 3041 4629 6653 3020 3102
3 0 2 3094 6671 3134 3006 1037
4 0 2 3864 3009 6662 3053 3067
5 0 0 3089 3115 3006 4633 4637
6 2 0 6691 6676 3117 3814 6694
7 1 0 3041 4636 3157 3020 3100
8 0 0 3085 6672 3124 3006 1042
9 0 0 3860 2003 3083 3047 6660
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 1057 3340 0 3 0 1
1 0 3340 3 9 3 1
2 0 3340 0 6 0 1
3 1055 3340 1 5 2 1
4 0 3364 1 2 2 1
5 1043 3340 3 14 7 3
6 0 3364 3 11 4 2
7 1058 3340 4 14 4 2
8 0 3340 1 4 3 1
9 1033 3340 0 2 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 342 31834 3576
1 895 24446 3055
2 631 143575 23090
3 457 8226 2754
4 482 5546 926
5 516 167444 30494
6 686 8462 2713
7 642 108518 29683
8 788 8922 3315
9 651 24894 4822
magicDamageTaken neutralMinionsKilled nexusTakedowns objectivesStolen \
0 24451 12 0 1
1 12387 139 0 0
2 10499 0 0 0
3 10641 7 0 0
4 15249 0 0 0
5 8354 40 1 0
6 6527 152 1 0
7 7501 4 0 0
8 4922 12 0 0
9 10938 13 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 47965
1 0 2 155303
2 0 3 10021
3 0 4 118410
4 0 5 20242
5 0 6 53380
6 0 7 163981
7 0 8 18871
8 0 9 53242
9 0 10 8924
physicalDamageDealtToChampions physicalDamageTaken role \
0 10393 12075 SOLO
1 17398 14137 NONE
2 698 11221 SOLO
3 17659 10138 CARRY
4 6388 7692 SUPPORT
5 8474 27630 NONE
6 19379 18010 NONE
7 4553 18562 SOLO
8 2524 9487 CARRY
9 765 22215 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 3 12 53
1 4 4 15 11 292
2 3 4 6 21 417
3 4 4 4 7 189
4 5 14 4 4 95
5 3 12 5 4 174
6 15 11 5 4 182
7 7 14 5 4 237
8 2 4 0 12 184
9 5 4 5 7 43
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 gigits27 False 100 TOP 26
1 AzuStar False 100 JUNGLE 11
2 Graythe False 100 MIDDLE 37
3 Coolgum15 False 100 BOTTOM 21
4 Dublaiar False 100 UTILITY 17
5 BigBoiBingBong False 200 TOP 10
6 Borderpopo False 200 JUNGLE 9
7 Bubo False 200 MIDDLE 29
8 SuperslugG False 200 BOTTOM 24
9 MitsUwUbishi False 200 UTILITY 35
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1926 87994 14000
1 1926 201234 24090
2 1926 156376 23963
3 1926 129022 20413
4 1926 26571 8097
5 1926 234215 41353
6 1926 181258 23072
7 1926 130001 36025
8 1926 67529 5839
9 1926 48471 7683
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 37630 4485 96 232
1 27905 13395 61 256
2 22699 4160 186 273
3 22242 4414 159 100
4 25262 6910 14 246
5 36816 21002 199 217
6 27491 12526 28 241
7 29168 7086 152 307
8 14877 6070 124 29
9 38419 5001 34 238
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 299 1 8195
1 202 14 21484
2 212 5 2780
3 305 3 2385
4 274 5 782
5 144 4 13391
6 222 1 8814
7 148 1 2611
8 191 5 5364
9 131 3 14652
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 30 1103 0 0
1 3636 1381 0 0
2 175 978 1 1
3 0 1462 0 0
4 782 2321 0 0
5 2384 831 4 5
6 978 2954 2 2
7 1789 3104 0 3
8 0 467 2 3
9 2094 5265 1 3
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 10 16 1 1
1 10 30 2 0
2 10 11 0 0
3 10 14 1 0
4 10 49 1 3
5 1 31 1 1
6 1 10 0 4
7 1 14 0 2
8 1 6 1 0
9 1 22 0 0
wardsPlaced win
0 11 False
1 11 False
2 8 False
3 9 False
4 23 False
5 9 True
6 0 True
7 7 True
8 5 True
9 17 True ,
assists baronKills bountyLevel champLevel championName \
0 8 0 0 15 Renekton
1 8 0 1 14 Olaf
2 12 0 3 14 Neeko
3 8 0 2 13 Vayne
4 19 0 1 13 Senna
5 4 0 0 14 Gnar
6 1 0 0 11 Amumu
7 3 0 0 12 Pantheon
8 1 0 1 13 Tristana
9 7 0 0 11 Taric
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 6876 12260 6876
1 2608 20565 2608
2 4255 7395 4255
3 6644 16399 6644
4 1879 5472 1879
5 5312 6400 5312
6 314 3874 314
7 0 0 0
8 5782 5782 5782
9 25 25 25
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 4 0 0 False False
1 4 0 1 False False
2 0 2 1 False False
3 3 0 1 False False
4 1 1 0 False False
5 6 0 0 False True
6 5 0 1 False False
7 9 1 0 False False
8 4 0 0 False False
9 7 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 11331 TOP 0
1 False 14432 JUNGLE 0
2 False 9201 MIDDLE 1
3 False 10698 BOTTOM 0
4 False 8414 UTILITY 0
5 False 10421 TOP 0
6 False 7670 JUNGLE 0
7 False 6752 MIDDLE 0
8 False 11641 BOTTOM 0
9 False 6052 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 0 3026 3047 3053 2055 0
1 1 0 3047 6630 2031 3053 3026
2 1 0 1056 0 3157 6655 3020
3 0 0 1055 6672 3006 3046 6677
4 1 0 3864 3009 6662 3053 0
5 0 1 6631 1055 3047 3742 3076
6 0 1 3111 3068 3076 1011 0
7 0 1 1055 6692 3047 3133 1036
8 0 1 1018 0 3036 6676 6672
9 0 1 3860 2055 3070 3076 3190
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 6630 3340 2 5 2 1
1 3075 3340 2 16 13 3
2 0 3340 1 3 3 1
3 1018 3340 2 5 3 2
4 2055 3364 0 2 0 1
5 1011 3340 1 4 2 1
6 0 3340 0 1 0 1
7 0 3340 0 2 0 1
8 3006 3340 1 5 2 1
9 3047 3364 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 743 4096 2556
1 981 5581 170
2 1713 84034 20484
3 549 0 0
4 1312 2108 552
5 757 9064 4464
6 570 68196 7789
7 398 6070 825
8 466 25993 1946
9 929 8034 3437
magicDamageTaken neutralMinionsKilled nexusTakedowns objectivesStolen \
0 7672 26 1 0
1 7310 100 0 0
2 1007 4 1 0
3 1627 24 1 0
4 1999 4 1 0
5 5769 3 0 0
6 4618 104 0 1
7 7582 0 0 0
8 2809 18 0 0
9 4709 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 125195
1 0 2 132875
2 0 3 13460
3 0 4 94778
4 0 5 19971
5 0 6 98930
6 0 7 14710
7 0 8 44016
8 0 9 135143
9 0 10 3724
physicalDamageDealtToChampions physicalDamageTaken role \
0 10020 21434 SOLO
1 20891 30077 NONE
2 953 7591 SOLO
3 6454 14583 CARRY
4 8446 6100 SUPPORT
5 15464 16657 SOLO
6 806 11751 NONE
7 7359 10839 SOLO
8 24032 11513 CARRY
9 969 9908 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 3 12 124
1 5 4 16 11 169
2 2 4 4 14 208
3 3 4 5 7 189
4 3 14 2 4 95
5 4 4 2 12 373
6 3 4 15 11 47
7 2 14 4 4 81
8 4 4 5 7 236
9 5 3 4 4 97
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 Fludd47 False 100 TOP 13
1 Wabi Sabi False 100 JUNGLE 25
2 RÉINA False 100 MIDDLE 40
3 Coolgum15 False 100 BOTTOM 4
4 Dublaiar False 100 UTILITY 31
5 BooBaa False 200 TOP 35
6 bobjoe333 False 200 JUNGLE 20
7 Dreamy Eyez False 200 MIDDLE 12
8 NikkiNguyen False 200 BOTTOM 7
9 ChillinYetis False 200 UTILITY 21
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1718 133714 12744
1 1718 168259 30074
2 1718 99533 21712
3 1718 116824 9633
4 1718 22766 9661
5 1718 109554 19928
6 1718 95124 9749
7 1718 54206 8784
8 1718 174785 30639
9 1718 16838 4412
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 31247 10453 154 48
1 39551 19551 62 570
2 8845 1942 139 147
3 17218 8061 147 44
4 8961 11762 12 259
5 26099 4700 141 398
6 18956 3784 35 155
7 20022 1762 94 26
8 16288 4032 211 64
9 18088 3517 26 52
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 157 1 4423
1 84 1 29802
2 0 1 2039
3 84 4 22046
4 34 5 686
5 156 1 1560
6 161 1 12216
7 253 1 4119
8 119 3 13648
9 209 5 5079
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 168 2140 2 5
1 9013 2163 1 2
2 274 245 1 3
3 3178 1007 2 5
4 662 860 2 4
5 0 3672 2 2
6 1152 2586 0 0
7 599 1601 0 0
8 4660 1965 1 1
9 6 3470 0 0
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 3 6 2 0
1 3 20 0 1
2 3 17 2 1
3 3 14 0 0
4 3 31 2 5
5 8 14 0 0
6 8 18 0 1
7 8 11 1 2
8 8 10 0 1
9 8 23 2 2
wardsPlaced win
0 4 True
1 9 True
2 11 True
3 8 True
4 11 True
5 9 False
6 6 False
7 6 False
8 8 False
9 11 False ,
assists baronKills bountyLevel champLevel championName \
0 5 0 5 14 Syndra
1 11 1 8 14 Zac
2 8 0 9 15 Irelia
3 6 0 0 12 Caitlyn
4 7 0 0 11 Senna
5 1 0 0 12 Yorick
6 4 0 0 11 LeeSin
7 1 0 0 14 Yone
8 1 0 0 11 Jhin
9 5 0 0 10 Thresh
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 758 7146 758
1 1395 21084 1395
2 7319 17952 7319
3 2242 11604 2242
4 975 4144 975
5 2182 15280 2182
6 28 3332 28
7 4121 5293 4121
8 1592 3196 1592
9 1127 1127 1127
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 3 0 0 False False
1 0 0 2 False False
2 1 1 0 False False
3 3 0 0 False False
4 2 2 0 False False
5 6 1 0 False False
6 4 2 0 False False
7 5 0 0 False True
8 6 1 1 False False
9 4 3 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 8399 MIDDLE 0
1 True 11795 JUNGLE 0
2 True 13171 TOP 0
3 True 7404 BOTTOM 0
4 True 6554 UTILITY 0
5 True 9439 JUNGLE 0
6 True 6368 JUNGLE 0
7 True 10090 MIDDLE 0
8 True 7650 BOTTOM 0
9 True 5289 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 0 2424 6655 3020 1056 3070
1 0 0 3083 3143 3076 3047 3068
2 0 0 6333 3153 1055 3047 6673
3 0 0 6671 3134 3006 1037 0
4 0 0 3864 3009 6632 3067 1036
5 0 0 3047 3053 6632 1028 1037
6 0 0 6630 2031 3158 3044 0
7 0 0 6673 2031 3006 3031 3123
8 0 0 1055 6671 3009 3134 1018
9 0 0 3859 3190 3117 3801 0
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 0 3340 1 5 5 1
1 0 3340 1 8 8 2
2 0 3340 2 12 9 2
3 0 3340 0 0 0 0
4 0 3364 0 0 0 0
5 0 3340 0 2 0 1
6 0 3340 0 0 0 0
7 1018 3340 1 5 2 1
8 0 3340 0 1 0 1
9 0 3364 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 341 64540 9645
1 0 107983 8927
2 952 27802 7646
3 877 242 148
4 727 0 0
5 479 17368 5630
6 838 18143 1663
7 450 16179 3597
8 563 1092 903
9 567 9225 4350
magicDamageTaken neutralMinionsKilled nexusTakedowns objectivesStolen \
0 3885 13 0 0
1 4692 121 0 0
2 6635 8 0 0
3 3310 4 0 0
4 2879 0 0 0
5 7882 14 0 0
6 6799 80 0 0
7 6035 6 0 0
8 3376 12 0 0
9 3080 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 12820
1 0 2 20485
2 0 3 132325
3 0 4 79163
4 0 5 15296
5 0 6 78809
6 0 7 43708
7 0 8 107096
8 0 9 77737
9 0 10 4049
physicalDamageDealtToChampions physicalDamageTaken role \
0 330 6337 SOLO
1 875 14015 NONE
2 18562 16491 SOLO
3 5267 6687 CARRY
4 2710 3581 SUPPORT
5 7263 11395 SOLO
6 4276 12886 NONE
7 7927 8143 SOLO
8 7280 8344 CARRY
9 685 5929 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 14 2 4 81
1 2 4 17 11 189
2 3 4 2 12 37
3 4 4 4 7 44
4 3 14 0 4 95
5 4 4 3 12 314
6 3 4 13 11 61
7 3 4 3 14 383
8 3 7 3 4 112
9 4 4 6 14 38
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 crbbjj False 100 MIDDLE 27
1 Coolgum15 False 100 JUNGLE 35
2 MouseSavior False 100 TOP 15
3 KingSJ13 False 100 BOTTOM 4
4 Dublaiar False 100 UTILITY 22
5 Oz821 False 200 TOP 7
6 yellowsnowball False 200 JUNGLE 18
7 Not Tovoc False 200 MIDDLE 23
8 Brownstreak False 200 BOTTOM 16
9 Humantractor False 200 UTILITY 40
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1593 80915 10526
1 1593 137011 10552
2 1593 162978 26208
3 1593 85310 5415
4 1593 16951 2940
5 1593 101676 12894
6 1593 72107 6067
7 1593 135007 14101
8 1593 83104 8228
9 1593 16672 6001
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 11560 1740 114 226
1 20244 32295 35 512
2 23646 8682 184 93
3 10124 2149 132 17
4 6653 3583 16 58
5 19827 5077 130 123
6 19817 4683 16 232
7 14694 752 165 123
8 11794 2285 161 36
9 9268 182 18 87
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 71 1 3555
1 0 5 8542
2 35 1 2850
3 46 3 5905
4 45 5 1655
5 159 1 5498
6 118 1 10255
7 123 1 11731
8 143 3 4274
9 103 5 3397
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 550 1337 0 0
1 750 1536 2 3
2 0 520 2 3
3 0 126 0 0
4 230 192 0 1
5 0 550 1 1
6 127 132 0 0
7 2576 516 3 3
8 44 74 0 0
9 966 258 0 0
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 4 10 0 1
1 4 12 0 0
2 4 14 1 0
3 4 16 0 4
4 4 29 2 3
5 5 15 1 2
6 5 20 2 1
7 5 11 1 0
8 5 13 1 2
9 5 22 3 6
wardsPlaced win
0 6 True
1 6 True
2 8 True
3 7 True
4 15 True
5 7 False
6 11 False
7 7 False
8 6 False
9 9 False ,
assists baronKills bountyLevel champLevel championName \
0 1 0 0 11 Gwen
1 4 0 0 9 Soraka
2 2 0 0 12 Ekko
3 3 0 0 10 KogMaw
4 3 0 0 11 Kayn
5 2 0 13 15 Irelia
6 3 0 0 11 Shyvana
7 2 0 2 12 Lissandra
8 2 0 1 10 Vayne
9 7 0 0 10 Yuumi
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3739 5042 3739
1 477 610 477
2 456 2760 456
3 974 1645 974
4 0 13346 0
5 6791 6791 6791
6 1903 23452 1903
7 2901 2901 2901
8 5739 5739 5739
9 1119 1166 1119
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 1 0 False False
1 7 0 0 False False
2 2 0 0 False False
3 4 0 0 False False
4 4 1 2 False False
5 0 0 0 False False
6 3 1 1 False False
7 1 0 0 False False
8 3 1 0 True False
9 2 2 0 False True
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 6149 TOP 0
1 True 4706 UTILITY 0
2 True 6352 MIDDLE 0
3 True 6880 BOTTOM 0
4 True 6744 JUNGLE 0
5 True 12164 TOP 0
6 True 5946 JUNGLE 0
7 True 6790 MIDDLE 0
8 True 7878 BOTTOM 0
9 True 5590 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 0 1055 3047 4633 1043 0
1 0 0 3158 3851 6617 1004 0
2 0 0 1056 3020 0 1029 4636
3 0 0 1055 3006 3091 3086 1042
4 0 0 3047 6630 2031 1031 1036
5 0 0 3153 6673 1042 6677 3111
6 0 0 3115 2031 3158 1052 0
7 0 0 1056 6655 3020 2055 2420
8 0 0 1055 6672 3006 1043 1053
9 0 0 6617 3114 3853 2055 3114
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 0 3340 0 0 0 0
1 0 3340 0 1 0 1
2 0 3340 1 2 2 1
3 1042 3340 1 3 3 1
4 0 3364 1 3 2 1
5 1018 3340 1 13 13 3
6 0 3513 0 2 0 1
7 3108 3340 1 3 2 1
8 0 3340 1 5 3 1
9 1052 3364 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 414 22044 2780
1 293 4158 1587
2 1042 52703 4535
3 793 19521 4801
4 565 5803 0
5 0 19107 7621
6 481 58715 3731
7 974 68987 7426
8 503 0 0
9 847 4818 3139
magicDamageTaken neutralMinionsKilled nexusTakedowns objectivesStolen \
0 5730 0 0 0
1 3878 0 0 0
2 5372 0 0 0
3 3044 0 0 0
4 4719 101 0 0
5 4203 4 0 0
6 2672 96 0 0
7 3127 0 0 0
8 3487 7 0 0
9 1626 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 24098
1 0 2 2526
2 0 3 13454
3 0 4 36071
4 0 5 77275
5 0 6 109698
6 0 7 24994
7 0 8 9986
8 0 9 58102
9 0 10 2281
physicalDamageDealtToChampions physicalDamageTaken role \
0 2712 11306 SUPPORT
1 744 5527 SUPPORT
2 1225 6026 SUPPORT
3 5282 6355 SUPPORT
4 6242 14329 SUPPORT
5 18094 12320 SUPPORT
6 816 13077 SUPPORT
7 670 2233 DUO
8 5847 4935 SUPPORT
9 1044 3020 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 12 3 4 334
1 2 6 3 4 122
2 1 4 3 14 151
3 4 7 2 4 188
4 9 11 1 4 368
5 2 12 2 4 326
6 1 4 7 11 66
7 1 4 3 14 189
8 2 4 2 7 605
9 2 14 3 3 32
summonerName teamEarlySurrendered teamId teamPosition \
0 Tsundere Jinx False 100 TOP
1 Thromen False 100 UTILITY
2 Mammoth Cawk False 100 MIDDLE
3 AnEnjoyedEgg False 100 BOTTOM
4 Sir Swanson False 100 JUNGLE
5 xPöptart False 200 TOP
6 CodeNameAquarius False 200 JUNGLE
7 Coolgum15 False 200 MIDDLE
8 CODE Vayne False 200 BOTTOM
9 GaymerGirlMary False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 3 1189 62086 7831
1 15 1189 12175 2332
2 4 1189 71244 6077
3 3 1189 60873 10733
4 4 1189 92218 6406
5 15 1189 129557 26046
6 1 1189 93671 4666
7 21 1189 79624 8746
8 1 1189 72062 7155
9 8 1189 7331 4415
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 17434 3183 115 43
1 10429 5423 8 77
2 11851 2718 130 174
3 10166 2375 117 184
4 19049 7348 21 206
5 18724 5578 163 75
6 16368 5798 3 83
7 5990 80 140 137
8 8422 2077 110 4
9 4667 3696 3 23
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 158 1 15944
1 148 5 5490
2 35 1 5086
3 64 3 5280
4 113 1 9140
5 0 1 752
6 63 1 9962
7 35 1 649
8 43 2 13959
9 58 4 232
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 2338 397 1 1
1 0 1022 0 0
2 316 451 0 0
3 650 765 0 0
4 164 0 0 0
5 330 2200 2 2
6 118 618 0 0
7 649 629 1 2
8 1308 0 2 3
9 232 20 0 2
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 5 8 1 0
1 5 14 0 1
2 5 10 0 1
3 5 9 0 1
4 5 12 1 0
5 2 10 0 1
6 2 13 1 2
7 2 6 1 0
8 2 15 1 0
9 2 19 3 0
wardsPlaced win
0 5 False
1 7 False
2 6 False
3 5 False
4 2 False
5 6 True
6 7 True
7 4 True
8 7 True
9 10 True ,
assists baronKills bountyLevel champLevel championName \
0 1 0 0 18 Irelia
1 1 0 0 14 Vi
2 2 0 0 12 Akali
3 5 0 0 14 Kaisa
4 12 0 0 13 Senna
5 9 0 1 16 Chogath
6 19 2 2 18 Diana
7 7 0 3 17 Pantheon
8 13 0 1 16 Xayah
9 17 0 1 15 Rakan
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 6014 10869 6014
1 2381 11555 2381
2 1319 1319 1319
3 5151 7472 5151
4 3993 5742 3993
5 2038 9501 2038
6 1250 46198 1250
7 4355 11735 4355
8 3681 13303 3681
9 856 1833 856
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 0 0 False True
1 12 0 1 False False
2 15 1 0 False False
3 7 0 1 False False
4 5 0 0 False False
5 9 0 0 False False
6 4 1 1 False False
7 6 1 1 False False
8 4 1 1 False False
9 5 4 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 True False False
1 True False False
2 False False False
3 False True False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 20934 TOP 1
1 True 10186 JUNGLE 0
2 True 6658 MIDDLE 0
3 True 11078 BOTTOM 0
4 True 9206 UTILITY 0
5 True 11673 TOP 0
6 True 14846 JUNGLE 0
7 True 17803 MIDDLE 0
8 True 11304 BOTTOM 1
9 True 9138 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 1 1 6333 3053 3091 6632 3153
1 0 1 6676 2033 3006 3078 0
2 0 1 3020 4633 1056 3191 1052
3 0 1 3115 6672 6676 3006 1052
4 1 1 3864 3190 3009 3179 3133
5 0 1 3193 6662 3047 3075 1006
6 1 1 3089 3157 3152 3165 3020
7 1 1 6692 3153 3111 6609 6676
8 1 1 3006 6671 3508 1055 3086
9 1 1 2065 3158 3050 3860 1052
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 3074 3340 4 21 6 3
1 3067 3340 1 2 2 1
2 0 3340 0 1 0 1
3 0 3340 1 3 2 1
4 1036 3364 0 1 0 1
5 1028 3340 2 6 3 1
6 1052 3364 2 7 3 1
7 3053 3364 4 25 11 4
8 3123 3340 1 5 3 1
9 1004 3364 1 3 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 689 46758 19811
1 258 6107 13
2 380 20536 5303
3 702 8789 4229
4 1412 540 540
5 450 80842 12931
6 814 241089 21539
7 547 8603 2039
8 818 1399 1399
9 633 14479 3892
magicDamageTaken neutralMinionsKilled nexusTakedowns objectivesStolen \
0 17187 24 0 0
1 7445 88 0 0
2 6975 4 0 0
3 6390 8 0 0
4 4788 0 0 0
5 10001 21 0 0
6 7170 193 0 0
7 6695 16 0 0
8 5325 4 0 0
9 4141 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 229139
1 0 2 124915
2 0 3 12169
3 0 4 110321
4 0 5 45991
5 0 6 27738
6 0 7 39678
7 0 8 151226
8 0 9 142132
9 0 10 5232
physicalDamageDealtToChampions physicalDamageTaken role \
0 42959 32987 NONE
1 6888 22711 NONE
2 773 19830 SOLO
3 10822 14132 CARRY
4 17035 12272 SUPPORT
5 3187 26966 SOLO
6 3708 28230 NONE
7 44611 23287 SOLO
8 23856 12534 CARRY
9 957 13626 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 5 4 3 12 202
1 5 11 4 4 28
2 4 12 4 14 41
3 4 4 4 7 139
4 7 21 4 4 26
5 5 12 5 4 137
6 5 4 17 11 95
7 27 4 9 14 211
8 4 4 3 7 189
9 2 14 2 4 94
summonerName teamEarlySurrendered teamId teamPosition \
0 6thblade False 100 TOP
1 methamphetameany False 100 JUNGLE
2 HogwartsCrafter1 False 100 MIDDLE
3 lofeiku False 100 BOTTOM
4 Kíko False 100 UTILITY
5 TOADisME False 200 TOP
6 JuulGodPrime False 200 JUNGLE
7 Cosmoe13 False 200 MIDDLE
8 Coolgum15 False 200 BOTTOM
9 Dublaiar False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 29 2044 275898 62770
1 20 2044 136199 7412
2 0 2044 37301 6853
3 0 2044 143575 16137
4 41 2044 46532 17576
5 73 2044 124834 19224
6 11 2044 292878 26161
7 37 2044 163882 49823
8 25 2044 148440 25935
9 26 2044 24841 5151
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 55118 18038 251 118
1 31057 3804 56 314
2 28393 1269 55 32
3 20662 3988 177 0
4 17963 11572 14 68
5 37430 10450 134 1098
6 35577 16139 39 225
7 31039 7824 146 103
8 18050 3176 166 73
9 18254 6071 39 59
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 264 1 0
1 350 1 5176
2 454 1 4595
3 199 3 24463
4 157 5 0
5 250 1 16254
6 140 1 12109
7 265 1 4052
8 140 2 4908
9 140 5 5129
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 0 4943 1 2
1 510 901 0 4
2 777 1587 0 1
3 1084 140 3 3
4 0 902 1 5
5 3106 461 1 1
6 913 176 0 1
7 3172 1056 1 2
8 679 191 2 3
9 301 486 1 2
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 5 18 0 0
1 5 14 0 2
2 5 21 1 2
3 5 22 0 2
4 5 47 0 5
5 6 18 0 0
6 6 10 1 1
7 6 16 1 1
8 6 16 1 1
9 6 40 4 0
wardsPlaced win
0 11 False
1 3 False
2 9 False
3 11 False
4 19 False
5 11 True
6 2 True
7 2 True
8 8 True
9 25 True ,
assists baronKills bountyLevel champLevel championName \
0 2 0 0 14 Teemo
1 11 0 0 14 Kayn
2 6 0 0 15 Katarina
3 6 0 0 15 Ezreal
4 10 0 0 14 Lux
5 3 0 0 17 Akali
6 5 0 9 17 Kindred
7 12 0 2 17 Galio
8 2 0 0 14 Caitlyn
9 9 0 0 13 Seraphine
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2347 2347 2347
1 525 4384 525
2 2635 2635 2635
3 1148 3184 1148
4 438 819 438
5 1984 1984 1984
6 9541 31262 9541
7 7232 8427 7232
8 3861 4149 3861
9 160 655 160
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 8 0 0 False False
1 10 0 0 False False
2 7 3 0 False False
3 3 1 1 False False
4 5 3 0 False False
5 3 2 0 False False
6 12 0 3 False True
7 2 0 0 True False
8 3 0 0 False False
9 7 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 True False False
7 False True False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 9009 TOP 0
1 False 9158 JUNGLE 0
2 False 11439 MIDDLE 0
3 False 12757 BOTTOM 0
4 False 9666 UTILITY 0
5 False 11840 TOP 0
6 False 19712 JUNGLE 0
7 False 11674 MIDDLE 0
8 False 9934 BOTTOM 1
9 False 7434 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 1 1056 2031 6653 3020 3115
1 0 1 3158 2031 6693 3004 1036
2 0 1 4633 3157 3153 3020 1055
3 0 1 3035 6632 3158 3042 3110
4 0 1 3853 3020 6655 4628 3191
5 0 0 1054 3157 3135 3020 4633
6 1 0 3006 3031 6672 6676 3072
7 1 0 2421 3152 3111 3191 3076
8 1 0 6672 3006 6676 3086 0
9 0 0 3853 2065 3158 3011 3114
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 3916 3340 0 5 0 1
1 1036 3364 0 1 0 1
2 1042 3364 2 9 5 1
3 3133 3363 1 6 5 2
4 1052 3363 2 6 4 1
5 3916 3364 3 8 4 1
6 3094 3340 5 21 9 3
7 3001 3340 1 3 2 1
8 1055 3340 0 1 0 1
9 0 3364 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 792 61888 11738
1 535 6012 1571
2 734 58689 10604
3 1541 9103 5145
4 983 50989 14898
5 916 96804 14529
6 315 25601 4510
7 826 134659 13759
8 767 331 51
9 512 20799 6862
magicDamageTaken neutralMinionsKilled nexusTakedowns objectivesStolen \
0 12272 0 0 0
1 8673 104 0 0
2 11534 8 0 0
3 6094 4 0 0
4 2900 0 0 0
5 13108 0 0 0
6 15007 164 1 0
7 3100 4 1 0
8 5811 0 1 0
9 8496 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 20840
1 0 2 102439
2 0 3 36995
3 0 4 122085
4 0 5 3410
5 0 6 14709
6 0 7 187711
7 0 8 7328
8 0 9 113420
9 0 10 3082
physicalDamageDealtToChampions physicalDamageTaken role \
0 1352 4383 SOLO
1 11697 19268 NONE
2 7973 18266 SOLO
3 10516 10256 CARRY
4 575 7501 SUPPORT
5 334 10369 SOLO
6 33429 20535 NONE
7 445 13027 SOLO
8 3994 5311 CARRY
9 819 5602 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 14 4 4 97
1 14 11 4 4 120
2 1 12 4 14 219
3 2 4 5 7 84
4 5 4 5 21 70
5 3 12 3 14 159
6 5 4 12 11 279
7 3 4 3 12 187
8 1 7 1 4 93
9 5 4 4 14 136
summonerName teamEarlySurrendered teamId teamPosition \
0 1988 BMW E30 M3 False 100 TOP
1 fnigred False 100 JUNGLE
2 lAmClover False 100 MIDDLE
3 DrasticDaddy241 False 100 BOTTOM
4 ChunChunMaru1212 False 100 UTILITY
5 WestWing34 False 200 TOP
6 stilldjmango False 200 JUNGLE
7 Coolgum15 False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 Alece False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 34 1948 97550 13373
1 7 1948 115813 13930
2 6 1948 96884 19334
3 0 1948 137953 15662
4 40 1948 55105 16179
5 0 1948 123295 15913
6 13 1948 236000 42140
7 24 1948 145338 14205
8 7 1948 117643 4046
9 15 1948 27769 8219
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 17242 1613 124 408
1 29528 9712 12 227
2 31387 4610 142 55
3 17635 4658 209 240
4 11146 354 48 223
5 24106 6052 204 59
6 36798 19612 44 281
7 16326 648 161 82
8 11238 2453 186 27
9 14306 930 24 103
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 305 1 14822
1 323 1 7361
2 265 1 1199
3 147 3 6765
4 194 1 705
5 137 1 11780
6 324 17 22688
7 71 1 3350
8 96 2 3891
9 229 4 3888
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 282 586 1 1
1 661 1586 1 1
2 755 1587 0 1
3 0 1284 0 0
4 705 744 0 1
5 1050 628 0 0
6 4200 1255 3 6
7 0 197 3 6
8 0 115 2 2
9 538 207 0 1
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 9 16 0 3
1 9 17 0 0
2 9 24 3 4
3 9 20 1 1
4 9 46 3 0
5 2 10 2 3
6 2 25 0 2
7 2 15 0 2
8 2 18 0 2
9 2 31 0 2
wardsPlaced win
0 8 False
1 8 False
2 7 False
3 10 False
4 22 False
5 2 True
6 11 True
7 9 True
8 9 True
9 15 True ,
assists baronKills bountyLevel champLevel championName \
0 1 0 0 11 Warwick
1 3 0 0 11 Khazix
2 3 0 0 11 Zoe
3 1 0 0 9 Jinx
4 1 0 0 9 Pyke
5 3 0 0 13 Sett
6 8 0 1 11 Zac
7 0 0 0 11 Ahri
8 2 0 9 10 Vayne
9 10 0 2 10 Yuumi
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 0 1422 0
1 0 8851 0
2 1159 1159 1159
3 130 130 130
4 1073 3583 1073
5 6494 19707 6494
6 573 7335 573
7 2013 2367 2013
8 6904 10980 6904
9 1585 1585 1585
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 4 0 0 False True
1 2 0 0 False False
2 2 1 0 False False
3 7 1 0 False False
4 4 0 0 False False
5 3 1 0 False False
6 1 5 2 False False
7 3 2 0 False False
8 1 2 0 False False
9 0 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 5769 TOP 0
1 True 6299 JUNGLE 0
2 True 5508 MIDDLE 0
3 True 5475 BOTTOM 0
4 True 4508 UTILITY 0
5 True 9297 TOP 0
6 True 6040 JUNGLE 0
7 True 5039 MIDDLE 0
8 True 9315 BOTTOM 0
9 True 5982 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 0 1054 2031 6632 1001 3076
1 0 0 6691 2031 3158 3134 0
2 0 0 1056 3191 6655 0 1001
3 0 0 1055 6670 2031 3123 3006
4 0 0 3047 3855 1029 3134 0
5 0 0 6631 2031 3153 1055 3158
6 0 0 3047 2031 1029 6660 0
7 0 0 1056 6655 2010 2055 1001
8 0 0 2055 3006 6672 3086 1036
9 0 0 3853 2055 6617 1052 3114
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 1029 3340 1 3 2 2
1 0 3364 0 2 0 1
2 0 3340 0 0 0 0
3 0 3340 0 1 0 1
4 1037 3364 0 2 0 1
5 0 3340 1 6 5 2
6 0 3364 0 1 0 1
7 0 3340 0 0 0 0
8 1055 3340 1 10 9 2
9 1052 3364 1 2 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 567 12370 3868
1 770 6295 382
2 1010 27755 4402
3 288 133 91
4 564 69 69
5 595 163 163
6 478 48337 4226
7 672 18656 1812
8 289 0 0
9 0 9493 4622
magicDamageTaken neutralMinionsKilled nexusTakedowns objectivesStolen \
0 2546 0 0 0
1 1452 103 0 0
2 1744 0 0 0
3 3242 0 0 0
4 2582 0 0 0
5 3997 20 0 0
6 4303 80 0 0
7 2877 0 0 0
8 174 0 0 0
9 33 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 21400
1 0 2 70844
2 0 3 16586
3 0 4 35010
4 0 5 11823
5 0 6 83623
6 0 7 11792
7 0 8 10871
8 0 9 67580
9 0 10 2597
physicalDamageDealtToChampions physicalDamageTaken role \
0 2140 10037 SUPPORT
1 6724 12238 SUPPORT
2 630 2735 SUPPORT
3 5020 6983 SUPPORT
4 3596 5522 SUPPORT
5 11524 10136 SUPPORT
6 473 10913 SUPPORT
7 127 4394 SUPPORT
8 10190 9254 SUPPORT
9 944 1752 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 4 2 21 138
1 12 11 3 4 169
2 1 14 1 4 159
3 3 4 2 7 26
4 3 14 2 4 216
5 1 12 2 4 253
6 10 11 3 4 405
7 2 4 1 14 58
8 3 4 3 21 187
9 3 3 3 7 158
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 RogerDGol False 100 TOP 14
1 Cyberten False 100 JUNGLE 5
2 1102 False 100 MIDDLE 11
3 LunaMoonz False 100 BOTTOM 9
4 AxeAction False 100 UTILITY 19
5 MobGoblin False 200 TOP 12
6 Flannelman420 False 200 JUNGLE 24
7 PogQueen324 False 200 MIDDLE 3
8 Coolgum15 False 200 BOTTOM 6
9 WestWing34 False 200 UTILITY 7
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1116 39338 6321
1 1116 88564 7649
2 1116 50650 6172
3 1116 38543 5111
4 1116 19320 4232
5 1116 96510 14264
6 1116 67043 4767
7 1116 42956 3092
8 1116 78356 12852
9 1116 12091 5566
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 14027 4855 92 99
1 14514 7061 9 147
2 5773 25 102 59
3 11372 1383 94 27
4 9852 1874 31 71
5 14366 2215 114 87
6 15995 16422 12 245
7 8372 461 89 12
8 9881 2748 132 52
9 1786 6340 1 27
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 68 1 5566
1 62 1 11425
2 71 1 6307
3 100 2 3400
4 88 1 7427
5 29 1 12723
6 14 4 6912
7 87 1 13428
8 12 1 10775
9 0 5 0
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 311 1443 0 0
1 543 823 0 0
2 1139 1294 0 0
3 0 1146 0 0
4 566 1748 0 0
5 2576 232 3 3
6 66 778 0 1
7 1152 1101 0 0
8 2662 452 2 2
9 0 0 0 2
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 5 6 0 0
1 5 12 0 2
2 5 6 1 0
3 5 5 1 0
4 5 18 0 2
5 0 9 1 0
6 0 17 5 4
7 0 16 3 1
8 0 16 3 2
9 0 16 2 0
wardsPlaced win
0 5 False
1 1 False
2 4 False
3 5 False
4 9 False
5 5 True
6 5 True
7 7 True
8 7 True
9 10 True ,
assists baronKills bountyLevel champLevel championName \
0 12 0 0 16 Chogath
1 11 0 0 15 Zac
2 9 0 0 16 Anivia
3 8 0 0 14 Caitlyn
4 13 0 0 14 Karma
5 7 0 0 15 Sett
6 10 0 2 15 Evelynn
7 13 0 0 17 Viego
8 17 0 0 15 Nautilus
9 7 0 2 16 Tristana
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3698 4669 3698
1 190 12657 190
2 531 1115 531
3 1859 3095 1859
4 1079 1130 1079
5 2050 4876 2050
6 2218 22046 2218
7 3816 17626 3816
8 845 845 845
9 5733 19498 5733
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 4 0 0 False False
1 6 0 0 False False
2 9 0 0 False False
3 10 3 0 False True
4 9 4 0 True False
5 8 0 0 False False
6 7 1 3 False False
7 6 1 0 False False
8 9 0 0 False False
9 4 5 2 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 True False False
2 False True False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 13188 TOP 0
1 True 11643 JUNGLE 0
2 True 11846 MIDDLE 0
3 True 12884 BOTTOM 0
4 True 9799 UTILITY 0
5 True 10075 TOP 0
6 True 14480 JUNGLE 0
7 True 16067 MIDDLE 0
8 True 9683 UTILITY 0
9 True 14118 BOTTOM 1
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 1 1011 3193 3047 3075 6662
1 0 1 3068 3083 3047 3076 3001
2 0 1 3040 3020 6653 3157 3916
3 0 1 3094 3031 1055 3006 6672
4 0 1 6616 2065 3853 3158 3107
5 0 0 1055 6631 3111 3053 3076
6 1 0 4636 3089 3020 3135 1029
7 0 0 6672 3153 3111 3053 6333
8 1 0 3860 3047 3068 3075 3067
9 1 0 1055 6672 3006 3046 3036
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 3067 3363 2 10 7 1
1 0 3363 1 4 2 1
2 1026 3340 3 8 3 2
3 1053 3340 2 8 3 2
4 2055 3364 1 4 2 1
5 1011 3340 0 2 0 1
6 3108 3340 4 14 4 2
7 2421 3364 3 9 3 1
8 1027 3340 1 3 2 1
9 1038 3340 3 10 5 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 1442 67167 18703
1 869 124371 18467
2 368 103329 24489
3 439 2460 1017
4 377 42383 16692
5 391 0 0
6 600 116967 35091
7 694 10886 3329
8 362 18753 8839
9 1336 24884 1293
magicDamageTaken neutralMinionsKilled nexusTakedowns objectivesStolen \
0 11452 12 0 0
1 9269 96 0 0
2 9500 15 0 0
3 7152 6 0 0
4 12506 4 0 0
5 22212 13 0 0
6 13140 116 0 0
7 15917 31 0 0
8 17053 0 0 0
9 13711 28 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 25359
1 0 2 15466
2 0 3 9596
3 0 4 114014
4 0 5 4103
5 0 6 99834
6 0 7 10702
7 0 8 164610
8 0 9 9900
9 0 10 142044
physicalDamageDealtToChampions physicalDamageTaken role \
0 3688 18152 SOLO
1 1466 20990 NONE
2 1539 12838 SOLO
3 20871 12172 CARRY
4 957 9434 SUPPORT
5 13369 11781 SOLO
6 946 17644 NONE
7 23038 14634 SOLO
8 2223 9903 SUPPORT
9 14285 9110 CARRY
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 5 4 2 12 158
1 4 4 19 11 187
2 6 4 7 14 37
3 3 7 4 4 69
4 9 14 6 4 105
5 5 4 4 12 95
6 5 4 21 11 373
7 5 4 2 12 303
8 2 4 6 14 81
9 3 4 5 7 93
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 WestWing34 False 100 TOP 93
1 Coolgum15 False 100 JUNGLE 44
2 tomloft False 100 MIDDLE 45
3 bruhzooka False 100 BOTTOM 13
4 Rasklapanje False 100 UTILITY 39
5 Xento123 False 200 TOP 21
6 MiIkdud False 200 JUNGLE 16
7 HentaiLord6969 False 200 MIDDLE 26
8 Beppo29 False 200 UTILITY 67
9 ConceptuaIize False 200 BOTTOM 7
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 2090 103705 27001
1 2090 154121 21147
2 2090 116176 28650
3 2090 124472 24912
4 2090 47891 19055
5 2090 134529 20155
6 2090 141574 38653
7 2090 189238 28965
8 2090 35073 13029
9 2090 185694 19767
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 35008 7898 147 1235
1 38117 35800 65 491
2 24637 1118 146 1014
3 20705 2587 167 84
4 23306 2326 37 221
5 37461 11074 150 166
6 34967 17586 20 217
7 32408 11176 195 101
8 29407 6633 46 287
9 23680 11986 196 70
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 147 1 11179
1 240 4 14283
2 263 1 3251
3 327 3 7996
4 234 1 1405
5 239 1 34694
6 249 1 13903
7 221 1 13741
8 260 1 6420
9 170 4 18765
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 4609 5403 1 2
1 1213 7857 0 2
2 2621 2299 2 2
3 3022 1380 0 2
4 1405 1364 1 1
5 6786 3468 0 0
6 2616 4181 1 2
7 2597 1856 2 3
8 1966 2450 0 2
9 4188 858 2 2
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 5 14 0 0
1 5 14 0 1
2 5 18 0 1
3 5 34 3 5
4 5 71 5 5
5 4 21 0 1
6 4 23 1 1
7 4 33 5 6
8 4 48 0 3
9 4 31 5 5
wardsPlaced win
0 7 False
1 7 False
2 10 False
3 12 False
4 33 False
5 10 True
6 9 True
7 10 True
8 24 True
9 17 True ,
assists baronKills bountyLevel champLevel championName \
0 6 0 1 14 Darius
1 4 0 7 14 Nidalee
2 7 0 0 13 Ahri
3 2 0 5 12 Caitlyn
4 15 0 1 12 Karma
5 0 0 0 12 Shyvana
6 5 0 0 12 Kindred
7 0 0 0 13 Lissandra
8 2 0 0 10 Twitch
9 3 0 0 11 Senna
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2762 2929 2762
1 2514 26790 2514
2 4038 4339 4038
3 5228 5228 5228
4 777 907 777
5 1024 1196 1024
6 3122 14625 3122
7 1056 1572 1056
8 2579 2579 2579
9 1535 6738 1535
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 3 2 0 False False
1 2 1 1 False False
2 6 0 0 False False
3 2 0 0 False False
4 2 3 0 False False
5 7 0 0 False False
6 6 1 2 False False
7 4 0 0 False False
8 9 0 0 False True
9 4 1 0 True False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 True False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 8880 TOP 1
1 True 10930 JUNGLE 0
2 True 8737 MIDDLE 0
3 True 9858 BOTTOM 0
4 True 8478 UTILITY 0
5 True 6250 TOP 0
6 True 7412 JUNGLE 0
7 True 7881 MIDDLE 0
8 True 7295 BOTTOM 0
9 True 7786 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 1 0 3047 6631 1055 3066 1031
1 1 0 4636 0 2031 3020 3100
2 1 0 2033 6655 3111 1058 1052
3 1 0 6671 3006 3095 1055 1042
4 1 0 3853 3158 6655 0 3108
5 0 1 6631 3158 1054 1053 1042
6 0 1 6672 2031 3006 3134 1018
7 0 1 3157 6656 3020 0 0
8 0 1 3115 3020 1055 4635 1026
9 0 1 3864 6672 3006 6677 1018
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 1028 3340 0 3 0 1
1 1033 3340 2 10 7 2
2 1052 3340 0 4 0 1
3 1042 3340 2 9 5 2
4 3067 3364 1 4 3 1
5 0 3340 1 4 2 2
6 0 3364 0 0 0 0
7 3070 3340 1 5 4 1
8 0 3340 0 4 0 1
9 1042 3340 1 2 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 676 0 0
1 635 119499 12902
2 292 54563 9570
3 436 940 436
4 980 34736 15328
5 460 40596 8373
6 467 17914 1840
7 860 92657 12347
8 296 11561 1929
9 772 155 155
magicDamageTaken neutralMinionsKilled nexusTakedowns objectivesStolen \
0 8967 0 0 0
1 4238 133 0 0
2 8819 0 0 0
3 1546 0 0 0
4 2114 0 0 0
5 6109 0 0 0
6 9589 108 0 0
7 9428 4 0 0
8 9052 0 0 0
9 5623 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 72232
1 0 2 17005
2 0 3 12490
3 0 4 77043
4 0 5 4081
5 0 6 18409
6 0 7 80027
7 0 8 9019
8 0 9 28264
9 0 10 31083
physicalDamageDealtToChampions physicalDamageTaken role \
0 11983 6217 SOLO
1 925 18849 NONE
2 1133 7804 SOLO
3 7825 4758 CARRY
4 1121 4961 SUPPORT
5 1617 12638 SOLO
6 7758 13013 NONE
7 835 3544 SOLO
8 4582 7645 CARRY
9 6833 5038 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 4 3 12 13
1 14 11 3 4 454
2 3 4 3 12 115
3 1 4 0 7 22
4 4 4 6 14 29
5 4 4 2 14 37
6 10 11 2 4 22
7 2 4 3 12 187
8 3 4 3 14 29
9 3 4 3 3 158
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 Heidis Farts False 100 TOP 22
1 Crisostom0 False 100 JUNGLE 5
2 Cb4ss False 100 MIDDLE 16
3 Duscade False 100 BOTTOM 6
4 Makonnenn False 100 UTILITY 23
5 misor dade False 200 TOP 0
6 thejigglycows False 200 JUNGLE 7
7 Coolgum15 False 200 MIDDLE 29
8 OverlordRoome False 200 BOTTOM 6
9 WestWing34 False 200 UTILITY 15
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1417 77703 12894
1 1417 155131 14474
2 1417 94097 12899
3 1417 78626 8348
4 1417 42325 17571
5 1417 59347 10333
6 1417 109093 10775
7 1417 104995 13510
8 1417 54711 9286
9 1417 35477 7281
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 16250 3688 139 186
1 23541 15302 25 202
2 17718 2447 143 47
3 7876 2870 127 73
4 7805 580 30 180
5 19780 1011 79 1
6 23537 12826 15 146
7 14592 244 141 208
8 17621 1340 87 123
9 11110 6805 45 42
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 104 1 5470
1 51 3 18628
2 165 1 27043
3 39 1 642
4 66 1 3507
5 163 1 342
6 123 9 11150
7 108 1 3318
8 180 1 14885
9 84 5 4238
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 910 1065 1 2
1 646 453 0 2
2 2194 1094 1 3
3 86 1571 3 3
4 1122 728 0 2
5 342 1032 1 1
6 1176 934 1 2
7 328 1620 0 0
8 2774 924 0 1
9 292 448 1 1
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 3 18 2 0
1 3 20 1 0
2 3 11 0 0
3 3 6 1 2
4 3 47 3 4
5 6 9 0 0
6 6 22 1 2
7 6 10 0 1
8 6 6 0 0
9 6 21 2 0
wardsPlaced win
0 9 True
1 9 True
2 7 True
3 2 True
4 19 True
5 6 False
6 3 False
7 6 False
8 6 False
9 10 False ,
assists baronKills bountyLevel champLevel championName \
0 2 0 2 16 Fiora
1 8 0 0 15 Kindred
2 6 1 11 15 Katarina
3 6 0 1 15 Vayne
4 9 0 1 13 Alistar
5 5 0 0 14 Vladimir
6 3 0 0 13 Kayn
7 3 0 0 14 Lissandra
8 4 0 0 13 Kaisa
9 5 0 0 12 Soraka
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 9967 16808 9967
1 1679 28071 1679
2 3312 6029 3312
3 8130 21217 8130
4 592 1557 592
5 981 1809 981
6 0 14412 0
7 1110 4939 1110
8 2206 7758 2206
9 237 450 237
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 1 0 False False
1 4 1 3 False False
2 1 0 0 False False
3 2 0 0 False False
4 2 1 0 False False
5 7 1 0 False False
6 7 0 1 True False
7 4 0 0 False True
8 3 0 0 False False
9 2 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 12432 TOP 1
1 True 10611 JUNGLE 3
2 True 12765 MIDDLE 0
3 True 12362 BOTTOM 0
4 True 7244 UTILITY 0
5 True 8645 TOP 0
6 True 9669 JUNGLE 0
7 True 10521 MIDDLE 0
8 True 8689 BOTTOM 0
9 True 5507 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 2 0 1055 6029 3508 3111 3074
1 3 0 3006 2031 6672 6676 1037
2 1 0 3041 3157 4633 3020 3115
3 0 0 6673 3046 3006 3031 0
4 3 0 3860 3050 3076 3117 1011
5 0 4 4629 4636 3020 1052 0
6 0 4 6630 2031 3047 6609 3211
7 0 4 3157 6656 3020 3070 1058
8 0 4 6672 3006 6676 3123 0
9 0 4 3860 6617 3158 2055 3114
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 3067 3340 3 7 2 2
1 0 3340 1 2 2 1
2 0 3363 1 11 11 3
3 0 3340 0 2 0 1
4 3801 3364 0 1 0 1
5 0 3363 1 4 2 1
6 0 3340 1 5 2 1
7 1058 3340 2 7 3 2
8 1055 3340 0 0 0 0
9 0 3364 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 290 5041 734
1 636 24170 1397
2 526 86127 18646
3 955 0 0
4 963 8685 2502
5 815 85366 22591
6 790 6692 0
7 616 120791 16978
8 1157 11478 1350
9 1152 11019 3278
magicDamageTaken neutralMinionsKilled nexusTakedowns objectivesStolen \
0 15416 10 0 0
1 8843 146 0 0
2 10956 5 0 0
3 7245 20 0 0
4 5111 0 0 0
5 5523 4 0 0
6 8168 106 0 0
7 7041 4 0 0
8 2009 4 0 0
9 2289 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 118868
1 0 2 112721
2 0 3 12516
3 0 4 148203
4 0 5 4564
5 0 6 10972
6 0 7 106158
7 0 8 7869
8 0 9 104732
9 0 10 3757
physicalDamageDealtToChampions physicalDamageTaken role \
0 18193 10691 SOLO
1 7409 12782 NONE
2 1526 9884 SOLO
3 16718 7195 CARRY
4 504 6141 SUPPORT
5 800 20313 SOLO
6 13193 22525 NONE
7 1286 7763 SOLO
8 4080 12799 CARRY
9 255 5612 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 1 4 3 12 145
1 14 11 3 4 189
2 4 4 6 14 200
3 1 7 2 4 50
4 3 4 4 3 46
5 7 6 8 14 182
6 15 11 4 4 356
7 4 4 5 14 187
8 4 7 2 4 93
9 4 3 0 4 188
summonerName teamEarlySurrendered teamId teamPosition \
0 AshenOak2 False 100 TOP
1 Cantkillme11 False 100 JUNGLE
2 meatywaterbottle False 100 MIDDLE
3 Jadkareen False 100 BOTTOM
4 HazeSlaze False 100 UTILITY
5 Hikan False 200 TOP
6 Hero Øf Time False 200 JUNGLE
7 Coolgum15 False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 Thick2BThighs False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 6 1722 140451 25182
1 5 1722 158019 10429
2 1 1722 101498 21936
3 12 1722 173482 20274
4 16 1722 17080 3006
5 5 1722 97207 24259
6 17 1722 123757 14341
7 43 1722 135738 19353
8 0 1722 124272 5623
9 21 1722 17930 3533
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 27383 12184 158 129
1 22015 12901 29 160
2 21991 5705 140 19
3 14745 3953 238 45
4 11431 8320 25 49
5 31134 20535 134 121
6 35433 13676 24 354
7 16104 1446 162 352
8 15991 3780 178 0
9 8578 17320 27 201
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 216 7 16542
1 93 15 21126
2 21 1 2854
3 60 1 25279
4 55 5 3830
5 224 1 867
6 200 1 10906
7 148 1 7078
8 65 3 8061
9 65 5 3153
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 6254 1275 4 4
1 1622 389 0 1
2 1763 1150 1 3
3 3555 304 2 6
4 0 177 2 3
5 867 5297 0 0
6 1148 4740 0 0
7 1088 1298 1 1
8 193 1183 0 0
9 0 676 0 0
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 1 12 1 2
1 1 23 1 1
2 1 16 0 1
3 1 18 0 2
4 1 35 1 0
5 9 21 1 1
6 9 14 0 1
7 9 13 0 2
8 9 14 0 1
9 9 18 3 1
wardsPlaced win
0 5 True
1 9 True
2 9 True
3 8 True
4 19 True
5 9 False
6 6 False
7 9 False
8 8 False
9 9 False ,
assists baronKills bountyLevel champLevel championName \
0 10 0 7 16 Sion
1 24 0 0 14 Rammus
2 11 1 0 15 Gwen
3 12 0 2 15 Jinx
4 22 0 0 14 Morgana
5 5 0 0 16 Udyr
6 9 0 0 13 Trundle
7 5 0 0 14 TwistedFate
8 8 0 0 13 Kaisa
9 9 0 0 12 Nautilus
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 5455 5938 5455
1 719 22468 719
2 3519 10038 3519
3 15109 27417 15109
4 2655 15695 2655
5 3566 8563 3566
6 565 5785 565
7 185 1269 185
8 1757 2295 1757
9 0 582 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 4 3 0 False True
1 7 3 3 True False
2 5 0 0 True False
3 3 0 0 True False
4 5 2 0 True False
5 6 0 0 False False
6 10 2 1 False False
7 9 0 0 False False
8 8 0 0 False False
9 10 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False True False
3 True False False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 11849 TOP 1
1 False 10317 JUNGLE 0
2 False 13897 MIDDLE 0
3 False 12639 BOTTOM 1
4 False 10806 UTILITY 1
5 False 13509 TOP 0
6 False 10055 JUNGLE 0
7 False 9045 MIDDLE 0
8 False 8224 BOTTOM 0
9 False 7073 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 1 0 2033 3047 3068 3075 3077
1 0 0 6664 3075 0 3067 3047
2 2 0 3070 0 0 0 0
3 3 0 1055 6672 3006 3085 1038
4 3 0 3853 3157 6653 1026 3117
5 0 4 2033 6693 3140 3158 6609
6 0 4 3078 2031 3006 3153 1033
7 0 4 2033 6656 3100 3020 2015
8 0 4 6672 3006 6676 1055 0
9 0 4 3068 3047 2055 3076 1011
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 0 3340 2 10 7 2
1 3082 3340 1 5 4 1
2 0 3340 2 13 10 2
3 1037 3340 3 8 3 2
4 2055 3364 3 7 3 2
5 3508 3340 2 9 4 2
6 3051 3340 2 6 2 1
7 0 3340 1 5 2 1
8 0 3340 0 2 0 1
9 3860 3364 0 2 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 677 37221 5390
1 940 61429 15545
2 866 68343 13732
3 977 1618 364
4 493 59217 19635
5 652 297 297
6 504 5334 1499
7 485 91815 15850
8 372 8623 2121
9 574 15960 5703
magicDamageTaken neutralMinionsKilled nexusTakedowns objectivesStolen \
0 2374 4 1 0
1 7903 80 0 0
2 7977 43 0 0
3 1921 12 1 0
4 6111 0 1 0
5 9701 8 0 0
6 15441 87 0 0
7 10961 0 0 0
8 8961 4 0 0
9 11131 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 63513
1 0 2 19182
2 0 3 32866
3 0 4 138728
4 0 5 6979
5 0 6 120792
6 0 7 87470
7 0 8 12187
8 0 9 82763
9 0 10 6923
physicalDamageDealtToChampions physicalDamageTaken role \
0 9114 15191 SOLO
1 2566 18037 NONE
2 3887 16057 DUO
3 16132 12601 DUO
4 1613 8543 SUPPORT
5 16308 14178 NONE
6 14533 16840 NONE
7 2908 9155 SOLO
8 6379 8205 CARRY
9 1938 7791 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 5 7 100
1 17 11 5 4 192
2 4 14 3 4 131
3 4 7 5 4 135
4 7 14 5 4 258
5 5 4 3 12 27
6 4 4 14 11 357
7 4 4 5 14 186
8 5 7 4 4 186
9 7 14 3 4 91
summonerName teamEarlySurrendered teamId teamPosition \
0 very baked False 100 TOP
1 zDevin False 100 JUNGLE
2 Grizzlier False 100 MIDDLE
3 jieshika False 100 BOTTOM
4 TheWonderBucket False 100 UTILITY
5 RyeBreadPitt False 200 TOP
6 Rotome False 200 JUNGLE
7 Coolgum15 False 200 MIDDLE
8 Thick2BThighs False 200 BOTTOM
9 Dublaiar False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 29 1702 100878 14649
1 49 1702 95628 18891
2 9 1702 140360 23744
3 26 1702 155398 19388
4 66 1702 70775 21978
5 33 1702 124878 16922
6 26 1702 99430 16946
7 37 1702 107946 19678
8 0 1702 97286 9296
9 43 1702 29588 8662
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 18154 4933 130 531
1 28002 8638 16 679
2 24471 9288 136 100
3 14718 6398 160 140
4 15339 5814 43 89
5 25184 6272 179 112
6 35700 14901 24 406
7 22756 3884 128 180
8 17755 3903 155 0
9 21642 561 35 210
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 68 3 144
1 196 5 15016
2 152 1 39151
3 109 3 15051
4 113 1 4577
5 197 1 3787
6 237 1 6625
7 286 1 3943
8 149 3 5899
9 237 1 6703
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 144 588 0 2
1 780 2060 2 3
2 6124 436 3 3
3 2891 195 4 7
4 730 684 1 6
5 316 1305 0 1
6 913 3418 1 1
7 920 2639 0 0
8 795 588 0 0
9 1020 2718 0 0
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 1 13 3 0
1 1 27 3 2
2 1 16 0 1
3 1 6 0 0
4 1 48 3 1
5 11 13 0 1
6 11 25 2 2
7 11 11 0 0
8 11 9 0 1
9 11 26 2 3
wardsPlaced win
0 10 True
1 11 True
2 9 True
3 4 True
4 17 True
5 9 False
6 6 False
7 7 False
8 5 False
9 12 False ,
assists baronKills bountyLevel champLevel championName \
0 1 0 0 12 Jax
1 0 0 0 10 Zac
2 1 0 0 12 Orianna
3 2 0 0 11 KogMaw
4 4 0 0 10 Yuumi
5 5 0 6 14 Sion
6 9 0 1 11 Volibear
7 7 0 0 13 Lissandra
8 5 0 3 10 Samira
9 6 0 1 9 Nautilus
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 1174 1174 1174
1 0 2636 0
2 1390 2049 1390
3 2516 4528 2516
4 1026 1026 1026
5 10029 15237 10029
6 488 17438 488
7 2703 11258 2703
8 1793 7300 1793
9 297 4751 297
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 3 0 0 False False
1 3 2 0 False False
2 4 0 0 False False
3 4 0 0 False False
4 4 1 0 False False
5 2 0 0 True False
6 0 4 2 False True
7 2 0 0 True False
8 2 1 1 False False
9 1 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 5982 TOP 0
1 True 5958 JUNGLE 0
2 True 5300 MIDDLE 0
3 True 7503 BOTTOM 0
4 True 5334 UTILITY 0
5 True 11072 TOP 0
6 True 7329 JUNGLE 0
7 True 7908 MIDDLE 0
8 True 7679 BOTTOM 0
9 True 5634 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 0 1055 6632 3077 1001 1036
1 0 0 4633 2031 1052 1082 3020
2 0 0 6653 2033 3020 1052 0
3 0 0 1055 2003 6672 3006 1036
4 0 0 3853 0 6617 1052 2055
5 0 0 1054 3748 1001 3181 6660
6 0 0 3068 2031 3047 0 0
7 0 0 1056 3157 3020 6655 3070
8 0 0 6673 3006 3123 3134 1018
9 0 0 3190 3047 3076 3860 1028
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 0 3340 0 0 0 0
1 0 3364 0 2 0 1
2 0 3340 0 0 0 0
3 3086 3340 1 3 2 1
4 3114 3364 0 1 0 1
5 3105 3340 1 7 6 3
6 0 3340 0 1 0 1
7 0 3340 0 2 0 1
8 1055 3340 2 5 3 2
9 0 3364 1 3 2 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 473 10833 1285
1 844 53637 3633
2 788 46098 5453
3 505 26257 3711
4 505 9580 6445
5 577 8419 1998
6 0 35744 1312
7 921 81816 9251
8 727 2702 911
9 846 4127 2249
magicDamageTaken neutralMinionsKilled nexusTakedowns objectivesStolen \
0 2424 8 0 0
1 3700 83 0 0
2 5376 0 0 0
3 3087 4 0 0
4 2727 0 0 0
5 6602 12 0 0
6 3101 101 0 0
7 5211 8 0 0
8 3225 4 0 0
9 3782 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 38742
1 0 2 14286
2 0 3 10942
3 0 4 49997
4 0 5 2382
5 0 6 102289
6 0 7 38295
7 0 8 8138
8 0 9 38897
9 0 10 6214
physicalDamageDealtToChampions physicalDamageTaken role \
0 3591 8144 SOLO
1 609 13981 NONE
2 214 3932 SOLO
3 3950 5970 CARRY
4 365 3617 SUPPORT
5 10222 9993 DUO
6 2048 7767 NONE
7 376 2577 DUO
8 4272 4434 CARRY
9 1088 2721 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 1 12 2 4 47
1 3 4 11 11 206
2 3 4 2 12 52
3 3 7 3 4 209
4 2 3 3 14 251
5 1 4 2 12 27
6 2 4 13 11 357
7 1 4 2 12 186
8 3 7 3 4 186
9 3 14 1 4 91
summonerName teamEarlySurrendered teamId teamPosition \
0 legisgey False 100 TOP
1 Welp SeeYaLater False 100 JUNGLE
2 chaxa False 100 MIDDLE
3 Pinkypinkster False 100 BOTTOM
4 Aleynsia False 100 UTILITY
5 RyeBreadPitt False 200 TOP
6 Rotome False 200 JUNGLE
7 Coolgum15 False 200 MIDDLE
8 Thick2BThighs False 200 BOTTOM
9 Dublaiar False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 5 1305 56708 4955
1 13 1305 73907 4695
2 11 1305 62601 5668
3 5 1305 84747 10626
4 12 1305 12289 7137
5 30 1305 118160 12748
6 8 1305 83714 3975
7 18 1305 95066 10036
8 2 1305 41780 5363
9 22 1305 18115 3790
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 10624 1281 101 24
1 19306 14932 9 339
2 9380 0 106 315
3 9380 2131 149 313
4 6508 3980 9 31
5 17433 970 161 390
6 11259 6073 18 205
7 8346 356 143 185
8 8365 2775 95 3
9 7778 948 25 65
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 46 1 7132
1 40 1 5983
2 135 0 5560
3 107 3 8492
4 70 5 326
5 68 1 7452
6 0 1 9674
7 35 1 5110
8 37 2 180
9 21 1 7772
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 77 56 1 1
1 452 1624 0 0
2 0 71 0 0
3 2964 322 0 0
4 326 163 0 0
5 527 837 3 3
6 614 390 0 0
7 408 557 2 2
8 180 705 1 2
9 452 1274 0 1
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 6 9 0 1
1 6 10 2 1
2 6 10 0 0
3 6 10 0 1
4 6 30 2 5
5 1 10 0 0
6 1 27 4 2
7 1 4 0 0
8 1 9 1 0
9 1 25 2 1
wardsPlaced win
0 6 False
1 3 False
2 7 False
3 6 False
4 10 False
5 7 True
6 10 True
7 3 True
8 7 True
9 11 True ,
assists baronKills bountyLevel champLevel championName \
0 4 0 2 16 Jax
1 8 1 5 17 Trundle
2 10 0 0 17 Yone
3 10 0 0 15 Aphelios
4 8 0 1 15 Lux
5 0 0 0 17 Mordekaiser
6 9 0 0 14 Rammus
7 6 0 0 15 Syndra
8 3 0 0 14 Jinx
9 6 0 0 13 Leona
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 4329 7783 4329
1 6552 43357 6552
2 3676 10628 3676
3 7793 26336 7793
4 3166 6707 3166
5 589 4667 589
6 0 655 0
7 0 0 0
8 0 0 0
9 0 40 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 2 0 False False
1 0 0 5 True False
2 6 2 0 False True
3 5 2 0 False False
4 3 1 0 False False
5 8 0 0 False False
6 6 0 0 False False
7 9 1 0 False False
8 6 0 0 False False
9 6 3 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False True False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 12004 TOP 0
1 False 12719 JUNGLE 1
2 False 12465 MIDDLE 0
3 False 13655 BOTTOM 1
4 False 12100 UTILITY 0
5 False 12289 TOP 0
6 False 8364 JUNGLE 0
7 False 10459 MIDDLE 0
8 False 10542 BOTTOM 0
9 False 6778 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 1 0 6632 3111 2033 3091 3044
1 1 0 3111 3748 1057 6632 1053
2 0 0 1055 3031 6673 3033 3006
3 1 0 3006 6672 6694 6676 3086
4 0 0 3853 6655 3020 4628 1058
5 0 2 3075 4637 1052 4633 3047
6 0 2 3047 6664 2031 3742 1033
7 0 2 2033 3157 6655 2055 3089
8 0 2 1037 6672 3006 3085 1018
9 0 2 3857 3047 3068 0 1057
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 1037 3340 2 6 2 1
1 3051 3340 1 5 5 1
2 0 3340 2 7 3 1
3 1055 3363 3 7 3 2
4 0 3364 1 10 7 1
5 1011 3340 2 8 4 2
6 1028 3340 0 3 0 1
7 0 3340 0 3 0 1
8 1038 3340 1 4 3 2
9 1028 3364 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 441 22297 4922
1 1867 6842 1137
2 542 17498 4494
3 1266 1015 536
4 1370 78837 21497
5 422 118940 16247
6 535 53353 8574
7 439 124416 11999
8 534 1489 478
9 535 13919 2751
magicDamageTaken neutralMinionsKilled nexusTakedowns objectivesStolen \
0 9143 20 1 0
1 6019 167 1 0
2 12433 12 1 0
3 8231 18 0 0
4 6957 10 0 0
5 7274 11 0 0
6 6826 68 0 0
7 7927 4 0 0
8 6680 7 0 0
9 5260 1 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 87894
1 0 2 178857
2 0 3 116575
3 0 4 112681
4 0 5 4464
5 0 6 22749
6 0 7 18654
7 0 8 7232
8 0 9 104608
9 0 10 7292
physicalDamageDealtToChampions physicalDamageTaken role \
0 12260 11305 SOLO
1 8662 24408 NONE
2 14748 13279 SOLO
3 14857 7413 CARRY
4 960 4031 SUPPORT
5 3000 22538 SOLO
6 2333 14390 NONE
7 905 9257 SOLO
8 8762 11083 CARRY
9 1840 10478 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 6 14 4 4 224
1 15 11 3 4 212
2 7 14 3 4 339
3 3 7 3 4 148
4 8 14 3 4 479
5 3 4 7 14 27
6 3 4 17 11 357
7 5 4 4 14 186
8 6 7 5 4 354
9 4 14 4 4 186
summonerName teamEarlySurrendered teamId teamPosition \
0 mapmusic False 100 TOP
1 RD Mickey False 100 JUNGLE
2 Swomp03 False 100 MIDDLE
3 Life Evanescent False 100 BOTTOM
4 Cats Own Earth False 100 UTILITY
5 RyeBreadPitt False 200 TOP
6 Rotome False 200 JUNGLE
7 Coolgum15 False 200 MIDDLE
8 Hero Øf Time False 200 BOTTOM
9 Thick2BThighs False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 25 1872 116625 19216
1 12 1872 203871 11302
2 27 1872 141151 22584
3 16 1872 136791 18226
4 60 1872 85121 24077
5 7 1872 152435 22489
6 46 1872 76956 12022
7 26 1872 132516 13519
8 16 1872 128933 10162
9 35 1872 27709 5275
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 22284 5261 144 137
1 31840 21731 35 319
2 27289 10022 154 119
3 16842 4075 141 177
4 11545 2149 59 266
5 32816 9030 200 61
6 24051 4424 23 495
7 18564 1760 216 266
8 18565 4061 168 153
9 19050 938 47 67
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 176 1 6433
1 0 1 18170
2 219 1 7076
3 161 2 23094
4 121 1 1819
5 262 1 10746
6 180 1 4949
7 338 1 867
8 112 3 22834
9 140 4 6496
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 2032 1836 1 2
1 1502 1412 4 4
2 3341 1575 0 2
3 2832 1197 5 5
4 1619 556 0 3
5 3241 3002 0 0
6 1115 2834 0 0
7 615 1379 0 0
8 921 801 0 0
9 684 3311 0 0
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 0 30 2 1
1 0 18 0 0
2 0 32 2 1
3 0 23 2 2
4 0 40 1 1
5 10 16 0 2
6 10 14 0 2
7 10 8 2 0
8 10 6 0 0
9 10 22 3 3
wardsPlaced win
0 10 True
1 9 True
2 12 True
3 9 True
4 16 True
5 10 False
6 6 False
7 4 False
8 4 False
9 11 False ,
assists baronKills bountyLevel champLevel championName \
0 4 0 0 11 Pantheon
1 0 0 2 11 Volibear
2 1 0 1 12 Zoe
3 3 0 0 10 Vayne
4 6 0 0 10 Thresh
5 1 0 0 14 Viego
6 8 0 2 11 Morgana
7 3 0 2 13 Syndra
8 3 0 1 10 Draven
9 4 0 0 10 Leona
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 113 2086 113
1 106 9502 106
2 1007 1007 1007
3 2578 5008 2578
4 298 298 298
5 5772 18320 5772
6 414 9634 414
7 2087 5128 2087
8 3096 9336 3096
9 623 2127 623
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 0 0 True False
1 2 3 0 False True
2 3 3 0 False False
3 4 1 0 False False
4 2 5 0 False False
5 3 0 0 False False
6 1 1 3 False False
7 1 2 0 False False
8 3 1 0 False False
9 2 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 6108 TOP 0
1 True 7567 JUNGLE 0
2 True 7344 MIDDLE 0
3 True 6766 BOTTOM 0
4 True 4812 UTILITY 0
5 True 10892 TOP 0
6 True 7353 JUNGLE 0
7 True 7703 MIDDLE 0
8 True 8394 BOTTOM 0
9 True 4995 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 0 2033 6630 3047 3076 0
1 0 0 2055 3047 6632 3082 1036
2 0 0 6655 2033 1082 3020 0
3 0 0 1055 6672 2055 3006 1042
4 0 0 3855 1028 3190 3117 0
5 0 0 1055 1037 3153 6672 3044
6 0 0 2031 6656 3020 1052 0
7 0 0 2033 2421 3020 6655 0
8 0 0 6672 0 3134 3006 0
9 0 0 3857 3047 2055 3105 1028
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 0 3340 0 1 0 1
1 3067 3364 2 4 2 2
2 0 3363 1 3 2 1
3 1053 3340 0 2 0 1
4 0 3364 0 0 0 0
5 3006 3340 2 9 7 3
6 0 3340 1 2 2 2
7 0 3340 1 3 2 1
8 0 3340 0 3 0 1
9 1029 3364 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 424 1719 266
1 704 39754 181
2 628 55949 4596
3 590 0 0
4 1119 8143 2136
5 520 4054 1112
6 699 59708 4730
7 524 71947 4457
8 751 488 290
9 643 4209 1218
magicDamageTaken neutralMinionsKilled nexusTakedowns objectivesStolen \
0 2704 0 0 0
1 2192 115 0 0
2 3225 0 0 0
3 1852 1 0 0
4 2532 0 0 0
5 2900 4 0 0
6 3154 112 0 0
7 1160 0 0 0
8 1334 0 0 0
9 1037 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 52225
1 0 2 54201
2 0 3 8909
3 0 4 37151
4 0 5 6255
5 0 6 99747
6 0 7 15402
7 0 8 8470
8 0 9 71294
9 0 10 6365
physicalDamageDealtToChampions physicalDamageTaken role \
0 6095 10261 SOLO
1 2837 12180 NONE
2 459 2579 SOLO
3 3080 6248 CARRY
4 676 5369 SUPPORT
5 13161 11281 NONE
6 580 12087 NONE
7 531 1770 SOLO
8 6833 4188 CARRY
9 1490 5283 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 12 2 4 247
1 3 4 9 11 201
2 4 14 3 4 192
3 2 4 2 7 398
4 5 3 6 4 200
5 3 4 5 14 27
6 2 4 11 11 357
7 2 4 2 14 186
8 0 12 3 4 354
9 4 14 2 4 186
summonerName teamEarlySurrendered teamId teamPosition \
0 edaimonia False 100 TOP
1 Jaymeeee False 100 JUNGLE
2 slimmenycricket False 100 MIDDLE
3 Dalodid False 100 BOTTOM
4 riktiktak False 100 UTILITY
5 RyeBreadPitt False 200 TOP
6 Rotome False 200 JUNGLE
7 Coolgum15 False 200 MIDDLE
8 Hero Øf Time False 200 BOTTOM
9 Thick2BThighs False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 11 1241 54942 6361
1 6 1241 104018 3332
2 8 1241 65992 6122
3 2 1241 50844 4966
4 13 1241 18243 2813
5 13 1241 124493 15813
6 23 1241 82357 5747
7 14 1241 80584 5154
8 5 1241 83217 7436
9 19 1241 16127 3177
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 14218 420 108 27
1 14979 5465 6 417
2 6035 995 129 33
3 8760 1617 125 2
4 8073 395 38 74
5 14820 5857 146 80
6 15358 9559 2 213
7 3181 631 141 230
8 6348 858 149 51
9 7754 334 25 36
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 170 2 997
1 57 1 10061
2 77 1 1134
3 67 2 13693
4 33 3 3843
5 84 1 20691
6 21 1 7246
7 27 1 166
8 81 1 11435
9 51 2 5552
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 0 1252 0 0
1 313 606 0 0
2 1066 230 0 0
3 1885 660 1 1
4 0 171 0 0
5 1539 638 3 3
6 436 116 0 1
7 166 250 1 2
8 312 826 0 1
9 467 1433 1 1
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 5 12 0 1
1 5 18 5 1
2 5 19 4 1
3 5 12 3 0
4 5 35 5 4
5 1 9 2 0
6 1 13 1 1
7 1 17 2 2
8 1 8 1 1
9 1 12 1 0
wardsPlaced win
0 6 False
1 4 False
2 9 False
3 7 False
4 15 False
5 7 True
6 7 True
7 8 True
8 6 True
9 8 True ,
assists baronKills bountyLevel champLevel championName \
0 4 0 2 15 Aatrox
1 5 1 0 15 Kindred
2 6 0 1 14 Ahri
3 7 0 0 14 Yasuo
4 10 0 0 12 DrMundo
5 5 0 1 14 Soraka
6 5 0 0 12 FiddleSticks
7 3 0 2 16 Kayle
8 8 0 1 13 Jhin
9 3 0 0 12 Zyra
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3230 9482 3230
1 5496 59811 5496
2 2852 6899 2852
3 4107 6003 4107
4 3635 3635 3635
5 1747 3397 1747
6 0 1246 0
7 0 0 0
8 0 140 0
9 0 0 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 2 1 0 False False
1 1 3 4 False True
2 2 1 0 False False
3 6 0 0 False False
4 5 0 0 False False
5 6 0 0 False False
6 11 0 0 False False
7 1 0 0 False False
8 4 1 0 False False
9 4 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 True False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 10510 TOP 0
1 False 13174 JUNGLE 3
2 False 8052 MIDDLE 0
3 False 10403 BOTTOM 0
4 False 8694 UTILITY 0
5 False 8185 TOP 0
6 False 6233 JUNGLE 0
7 False 12896 MIDDLE 0
8 False 7216 BOTTOM 0
9 False 7127 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 1 0 1055 3047 6630 3053 3133
1 3 0 6672 6676 0 3006 3031
2 2 0 2033 6655 2055 3158 4629
3 2 0 3031 3006 6673 3123 1018
4 2 0 6662 3857 3111 3083 1028
5 0 3 1055 3153 3006 6670 1018
6 0 3 3152 2031 3020 3191 0
7 0 3 1054 1082 3006 3115 4633
8 0 3 6671 3009 3123 0 0
9 0 3 3853 2421 6653 3020 3191
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 1031 3340 2 5 2 1
1 1053 3340 1 10 10 2
2 0 3340 0 2 0 1
3 1042 3340 0 3 0 1
4 0 3364 1 6 3 1
5 1037 3340 1 4 2 1
6 0 3330 0 0 0 0
7 3089 3363 2 7 5 2
8 1055 3340 0 1 0 1
9 1052 3340 1 4 4 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 572 0 0
1 1457 31637 2372
2 834 45493 5461
3 426 7843 913
4 583 22237 12005
5 374 33854 5982
6 282 66822 3625
7 1130 124188 14348
8 1027 3608 784
9 1010 57307 16396
magicDamageTaken neutralMinionsKilled nexusTakedowns objectivesStolen \
0 11741 8 0 0
1 5597 163 1 0
2 4262 8 0 0
3 8803 12 0 0
4 12992 0 0 0
5 2587 8 0 0
6 6817 67 0 0
7 5905 4 0 0
8 2867 0 0 0
9 4013 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 94470
1 0 2 138593
2 0 3 13614
3 0 4 113678
4 0 5 19485
5 0 6 42288
6 0 7 4742
7 0 8 40205
8 0 9 65515
9 0 10 3664
physicalDamageDealtToChampions physicalDamageTaken role \
0 12825 11427 SOLO
1 14669 16397 NONE
2 712 5165 SOLO
3 9150 6803 CARRY
4 3599 13274 SUPPORT
5 5015 12371 SOLO
6 88 16870 NONE
7 3567 10940 SOLO
8 9027 10529 CARRY
9 1165 6289 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 3 12 190
1 14 11 3 4 90
2 2 12 1 4 135
3 3 4 4 14 210
4 4 4 4 3 205
5 4 4 4 14 26
6 9 11 4 4 137
7 2 4 2 12 356
8 5 7 2 4 91
9 4 4 4 14 186
summonerName teamEarlySurrendered teamId teamPosition \
0 MonkeyBsness False 100 TOP
1 Mythicsmyazz False 100 JUNGLE
2 Arymilla False 100 MIDDLE
3 SKT T1 Vip3R False 100 BOTTOM
4 xXSUPZXx False 100 UTILITY
5 RyeBreadPitt False 200 TOP
6 SlothoftheAbyss False 200 JUNGLE
7 Rotome False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 Coolgum15 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 12 1571 100834 12825
1 7 1571 203091 19610
2 6 1571 77773 7352
3 24 1571 123689 10662
4 19 1571 45836 15605
5 34 1571 82122 11936
6 8 1571 76868 3979
7 6 1571 166516 18185
8 19 1571 69123 9812
9 31 1571 61441 18032
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 23421 11843 151 206
1 22577 14385 36 254
2 9510 1978 118 46
3 16124 3630 175 109
4 26773 8123 35 287
5 16017 5634 124 292
6 24514 6583 24 230
7 18064 6668 261 185
8 14227 3236 105 87
9 10714 1023 37 209
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 51 1 6365
1 48 13 32861
2 68 1 18665
3 161 1 2168
4 150 1 4113
5 185 5 5979
6 261 1 5303
7 41 5 2121
8 133 4 0
9 130 1 470
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 0 252 2 4
1 2567 582 3 6
2 1178 82 2 7
3 598 517 1 5
4 0 507 2 3
5 938 1058 0 0
6 265 825 0 0
7 269 1217 0 0
8 0 830 0 0
9 470 411 0 0
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 0 11 1 0
1 0 38 3 3
2 0 23 2 0
3 0 8 0 0
4 0 27 0 3
5 11 12 0 1
6 11 17 0 4
7 11 8 1 1
8 11 10 1 0
9 11 23 0 0
wardsPlaced win
0 8 True
1 12 True
2 8 True
3 6 True
4 14 True
5 8 False
6 4 False
7 5 False
8 7 False
9 12 False ,
assists baronKills bountyLevel champLevel championName \
0 0 0 0 8 Sett
1 0 0 0 8 MasterYi
2 0 0 0 10 Viktor
3 1 0 0 8 Draven
4 1 0 0 8 Karma
5 1 0 6 11 Udyr
6 5 0 4 10 FiddleSticks
7 2 0 7 11 Pantheon
8 4 0 1 8 Jhin
9 3 0 0 8 Xerath
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 0 0 0
1 0 2419 0
2 515 515 515
3 411 411 411
4 489 489 489
5 4036 4036 4036
6 0 6695 0
7 0 1979 0
8 0 1153 0
9 0 591 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 0 0 False False
1 5 1 0 False False
2 4 0 0 False False
3 3 2 0 False False
4 1 1 0 False False
5 0 1 0 False True
6 1 0 2 False False
7 0 2 0 False False
8 0 0 0 False False
9 0 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 3140 TOP 0
1 True 4308 JUNGLE 0
2 True 3889 MIDDLE 0
3 True 5054 BOTTOM 0
4 True 2926 UTILITY 0
5 True 7454 TOP 0
6 True 5899 JUNGLE 0
7 True 6377 MIDDLE 0
8 True 4212 BOTTOM 0
9 True 3658 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 0 3051 3047 3067 0 0
1 0 0 3006 2031 1037 0 0
2 0 0 3108 1056 1029 3802 0
3 0 0 1055 1001 0 6670 1053
4 0 0 3859 4642 2010 0 1001
5 0 0 2033 6693 1083 0 3158
6 0 0 0 2031 3020 1052 1052
7 0 0 6692 2033 3047 1036 1036
8 0 0 6670 3009 0 0 0
9 0 0 3853 3802 3020 2055 0
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 0 3340 0 0 0 0
1 6670 3364 0 1 0 1
2 0 3340 0 0 0 0
3 1018 3340 0 0 0 0
4 3067 3340 0 0 0 0
5 0 3340 1 6 6 1
6 0 3330 1 4 4 2
7 0 3340 1 7 7 2
8 1055 3340 0 1 0 1
9 0 3364 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 218 0 0
1 393 4185 0
2 386 29390 3611
3 603 0 0
4 904 6603 2242
5 0 119 119
6 443 58134 5124
7 0 267 110
8 0 1021 106
9 0 15243 5949
magicDamageTaken neutralMinionsKilled nexusTakedowns objectivesStolen \
0 706 0 0 0
1 3006 72 0 0
2 1191 0 0 0
3 5162 0 0 0
4 2356 0 0 0
5 1 4 0 0
6 2192 87 0 0
7 2566 0 0 0
8 927 0 0 0
9 1062 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 21455
1 0 2 46365
2 0 3 7643
3 0 4 36550
4 0 5 2565
5 0 6 45974
6 0 7 5100
7 0 8 51725
8 0 9 28046
9 0 10 1326
physicalDamageDealtToChampions physicalDamageTaken role \
0 5619 8148 SUPPORT
1 3294 9278 SUPPORT
2 502 6343 SUPPORT
3 3227 3429 DUO
4 359 2671 SUPPORT
5 8150 8240 SUPPORT
6 38 9783 SUPPORT
7 9429 3241 DUO
8 2823 1456 SUPPORT
9 396 1895 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 4 2 12 250
1 2 4 8 11 293
2 1 4 2 12 268
3 2 7 2 4 308
4 1 14 1 4 311
5 2 4 2 12 26
6 9 11 2 4 137
7 2 4 2 14 356
8 0 7 0 4 91
9 2 4 1 21 186
summonerName teamEarlySurrendered teamId teamPosition \
0 fortmadeof False 100 TOP
1 notpk False 100 JUNGLE
2 s h ö e False 100 MIDDLE
3 OwU UwO False 100 BOTTOM
4 Marcrocker False 100 UTILITY
5 RyeBreadPitt False 200 TOP
6 SlothoftheAbyss False 200 JUNGLE
7 Rotome False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 Coolgum15 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 8 918 25121 5698
1 3 918 61059 4236
2 6 918 37033 4113
3 2 918 39155 3227
4 15 918 12469 2811
5 13 918 47981 8317
6 16 918 68645 5383
7 12 918 52641 9876
8 8 918 29067 2929
9 17 918 16570 6346
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 8918 201 48 52
1 12345 3936 3 107
2 7860 313 83 55
3 8660 1714 127 10
4 5114 153 22 97
5 8538 3938 102 39
6 12752 8884 6 272
7 5966 1193 106 38
8 2383 579 59 48
9 2958 135 13 116
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 93 1 3666
1 92 1 10507
2 88 1 0
3 37 2 2605
4 0 2 3300
5 0 1 1888
6 14 1 5410
7 0 1 648
8 0 1 0
9 0 1 0
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 79 64 0 0
1 942 60 0 0
2 0 324 0 0
3 0 68 0 0
4 210 86 0 0
5 48 296 1 1
6 220 776 0 0
7 336 158 0 0
8 0 0 0 0
9 0 0 0 0
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 1 5 0 0
1 1 14 2 1
2 1 2 0 0
3 1 11 2 0
4 1 10 1 2
5 0 7 1 0
6 0 13 0 2
7 0 8 2 1
8 0 3 0 0
9 0 8 2 0
wardsPlaced win
0 3 False
1 3 False
2 3 False
3 5 False
4 5 False
5 6 True
6 2 True
7 4 True
8 3 True
9 3 True ,
assists baronKills bountyLevel champLevel championName \
0 1 0 0 13 Yone
1 0 0 1 13 Volibear
2 1 0 0 13 Yasuo
3 1 0 0 10 Ashe
4 5 0 0 10 Senna
5 1 0 1 16 Viego
6 5 0 1 13 Poppy
7 3 0 4 13 Kayle
8 7 0 1 11 Jhin
9 7 0 1 12 Xerath
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3066 5166 3066
1 285 17363 285
2 1223 1223 1223
3 709 709 709
4 585 585 585
5 6134 10714 6134
6 2093 8833 2093
7 4965 6507 4965
8 2125 3270 2125
9 992 1952 992
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 10 1 0 False False
1 1 0 2 False False
2 6 0 0 False False
3 7 1 0 False False
4 5 1 0 False False
5 4 0 0 False True
6 1 0 1 False False
7 0 1 0 False False
8 3 0 0 False False
9 4 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 7612 TOP 0
1 True 9677 JUNGLE 0
2 True 8624 MIDDLE 0
3 True 6867 BOTTOM 0
4 True 5582 UTILITY 0
5 True 14649 TOP 0
6 True 7079 JUNGLE 0
7 True 9755 MIDDLE 0
8 True 7992 BOTTOM 0
9 True 7148 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 0 1055 6673 1053 3006 1038
1 0 0 3068 2031 3047 3075 3044
2 0 0 1055 3006 6673 1018 1037
3 0 0 6671 2031 3006 2055 3070
4 0 0 3006 6632 0 3864 0
5 0 0 3181 6609 3006 0 3153
6 0 0 6632 2031 3047 1031 3066
7 0 0 1054 3115 1082 3006 2055
8 0 0 6671 3009 3134 1037 1018
9 0 0 3853 6655 3020 1052 1058
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 0 3363 0 1 0 1
1 1037 3340 1 6 5 2
2 1038 3340 1 3 2 2
3 1042 3340 0 2 0 1
4 0 3364 0 0 0 0
5 6672 3340 3 17 7 2
6 0 3340 0 1 0 1
7 4633 3363 1 4 4 1
8 1055 3340 1 3 2 2
9 0 3340 1 4 3 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 177 14111 2268
1 1165 52378 4140
2 456 6340 773
3 481 1531 1431
4 484 0 0
5 516 6188 2198
6 223 9989 361
7 0 60572 4236
8 501 1678 311
9 496 46069 17717
magicDamageTaken neutralMinionsKilled nexusTakedowns objectivesStolen \
0 2963 9 0 0
1 3621 104 0 0
2 3434 6 0 0
3 9386 8 0 0
4 6789 0 0 0
5 4048 12 0 0
6 2487 110 0 0
7 1363 9 0 0
8 1136 4 0 0
9 916 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 92249
1 0 2 44613
2 0 3 100503
3 0 4 70154
4 0 5 11016
5 0 6 146895
6 0 7 80451
7 0 8 27986
8 0 9 63749
9 0 10 1197
physicalDamageDealtToChampions physicalDamageTaken role \
0 5941 16206 SOLO
1 5473 13640 NONE
2 7113 9333 SOLO
3 10999 6256 CARRY
4 5340 5006 SUPPORT
5 24519 23683 SOLO
6 3157 11085 NONE
7 1317 7686 SOLO
8 5052 8181 CARRY
9 251 6970 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 4 3 12 394
1 14 11 3 4 91
2 2 4 3 14 184
3 4 7 3 4 71
4 3 3 2 4 189
5 4 4 6 14 26
6 13 11 4 4 137
7 1 4 3 12 356
8 2 7 1 4 91
9 3 4 4 21 186
summonerName teamEarlySurrendered teamId teamPosition \
0 YoRHa KnightØ False 100 TOP
1 GerberLord False 100 JUNGLE
2 Kolos False 100 MIDDLE
3 MyNamesGrey False 100 BOTTOM
4 KrashBandiScoot False 100 UTILITY
5 RyeBreadPitt False 200 TOP
6 SlothoftheAbyss False 200 JUNGLE
7 Rotome False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 Coolgum15 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 10 1420 116020 9029
1 26 1420 107811 10925
2 11 1420 114058 8307
3 40 1420 71906 12651
4 23 1420 11016 5340
5 16 1420 163881 29476
6 13 1420 101236 3785
7 3 1420 97179 5553
8 22 1420 65643 5364
9 29 1420 47267 17968
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 19948 2898 144 106
1 18264 8144 31 477
2 13409 1676 168 78
3 15907 1345 122 615
4 12133 7088 5 84
5 29696 12551 180 75
6 13928 7446 12 519
7 9227 3658 174 158
8 9433 2133 118 74
9 8045 1 25 125
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 250 1 9659
1 36 1 10820
2 197 1 7215
3 157 2 220
4 113 4 0
5 130 1 10797
6 10 1 10795
7 0 5 8620
8 51 2 216
9 104 1 0
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 819 778 1 1
1 1312 1002 0 0
2 420 641 1 1
3 220 265 0 0
4 0 338 0 0
5 2758 1964 1 2
6 267 356 1 3
7 0 176 2 3
8 0 116 1 3
9 0 158 0 2
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 5 11 1 0
1 5 17 0 1
2 5 13 0 2
3 5 12 3 1
4 5 19 1 1
5 2 12 1 0
6 2 10 0 1
7 2 10 2 0
8 2 11 0 0
9 2 11 0 0
wardsPlaced win
0 8 False
1 6 False
2 6 False
3 5 False
4 6 False
5 8 True
6 6 True
7 4 True
8 7 True
9 7 True ,
assists baronKills bountyLevel champLevel championName \
0 3 0 0 18 Urgot
1 8 0 0 18 LeeSin
2 6 0 0 18 Talon
3 12 0 0 18 Yasuo
4 16 0 0 16 Rakan
5 13 0 4 18 Kayle
6 10 2 1 18 Kayn
7 13 0 3 18 Syndra
8 14 0 0 18 Lucian
9 15 0 0 18 Brand
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 11188 32395 11188
1 1368 24697 1368
2 5675 9580 5675
3 3899 18465 3899
4 1480 2466 1480
5 5910 43312 5910
6 760 18879 760
7 418 4860 418
8 7086 9671 7086
9 2721 8938 2721
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 8 1 0 False False
1 11 0 5 False True
2 11 3 0 True False
3 4 1 0 False False
4 4 2 0 True False
5 4 1 1 False False
6 13 1 0 False False
7 6 1 0 False False
8 9 0 0 False False
9 8 1 1 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 18758 TOP 1
1 False 17121 JUNGLE 0
2 False 19626 MIDDLE 1
3 False 16769 BOTTOM 0
4 False 11475 UTILITY 0
5 False 23727 TOP 0
6 False 15982 JUNGLE 0
7 False 14944 MIDDLE 0
8 False 15543 BOTTOM 1
9 False 16609 UTILITY 1
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 1 2 3748 6631 3047 4401 3075
1 0 2 3158 6691 6676 3074 3026
2 1 2 6333 6694 6630 3053 3071
3 0 2 3053 3046 2421 3072 6662
4 0 2 3050 2065 3107 3860 3117
5 1 2 3089 3157 3041 3006 4633
6 0 2 6691 6695 3117 6676 3033
7 0 2 6655 3157 3135 3089 3020
8 2 2 3033 1018 6692 3006 3508
9 1 2 6653 3853 3165 3116 3020
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 3053 3340 3 11 4 2
1 3156 3340 1 9 4 2
2 3111 3364 3 13 2 2
3 3006 3340 1 3 3 1
4 1057 3364 1 4 4 1
5 3115 3363 2 12 7 2
6 3134 3340 1 7 2 1
7 0 3340 1 5 3 1
8 6694 3340 0 5 0 1
9 4637 3364 3 9 4 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 1030 1215 426
1 750 58176 5129
2 494 0 0
3 1837 27559 2195
4 1648 20123 5884
5 992 330307 38379
6 423 10022 2874
7 531 210286 37431
8 443 6310 538
9 710 161318 42668
magicDamageTaken neutralMinionsKilled nexusTakedowns objectivesStolen \
0 31593 23 0 0
1 19678 190 0 0
2 40352 40 0 0
3 16771 24 0 0
4 15626 0 0 0
5 4178 56 1 0
6 5510 145 1 0
7 2765 0 1 0
8 3657 20 0 0
9 1481 28 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 239100
1 0 2 187975
2 0 3 261805
3 0 4 292110
4 0 5 12195
5 0 6 68651
6 0 7 211005
7 0 8 12065
8 0 9 172401
9 0 10 7853
physicalDamageDealtToChampions physicalDamageTaken role \
0 26087 14831 DUO
1 23723 20513 NONE
2 31610 24330 DUO
3 16386 12789 SOLO
4 1942 6321 SUPPORT
5 4861 28941 SOLO
6 19576 42469 NONE
7 1368 18698 SOLO
8 14662 22449 CARRY
9 1040 22637 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 5 4 5 12 75
1 6 4 27 11 155
2 10 14 5 4 191
3 5 4 6 7 203
4 5 4 7 14 98
5 5 4 4 12 356
6 26 11 7 4 353
7 7 4 5 14 186
8 8 7 6 4 109
9 5 4 9 14 242
summonerName teamEarlySurrendered teamId teamPosition \
0 ASHGOD28 False 100 TOP
1 Carchan False 100 JUNGLE
2 syIIabIe False 100 MIDDLE
3 Tropikanaa False 100 BOTTOM
4 Tapatio2 False 100 UTILITY
5 Rotome False 200 TOP
6 Hero Øf Time False 200 JUNGLE
7 Coolgum15 False 200 MIDDLE
8 Caruto Cruzemaki False 200 BOTTOM
9 alexbeplanet False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 23 2775 255172 28190
1 21 2775 274179 30337
2 5 2775 265995 34846
3 28 2775 338920 19246
4 21 2775 40433 9669
5 16 2775 446369 48573
6 14 2775 233028 24366
7 69 2775 224412 39779
8 1 2775 179329 15459
9 37 2775 175928 45626
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 50068 5186 235 199
1 41601 17795 68 279
2 68136 19453 278 280
3 30962 7749 285 839
4 22936 5842 45 74
5 34093 24887 364 404
6 51350 21155 80 339
7 23171 6668 228 442
8 27567 7893 174 76
9 25509 3961 118 311
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 374 1 14856
1 336 1 28027
2 470 1 4190
3 163 3 19249
4 124 5 8114
5 152 5 47410
6 548 1 12000
7 195 1 2060
8 300 3 617
9 258 1 6755
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 1676 3643 5 6
1 1484 1408 1 1
2 3236 3452 1 3
3 664 1402 1 1
4 1842 987 0 1
5 5332 974 2 3
6 1915 3370 0 1
7 980 1707 0 1
8 259 1460 1 4
9 1916 1390 2 3
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 7 38 1 7
1 7 24 0 1
2 7 26 4 3
3 7 51 1 4
4 7 63 2 2
5 10 21 1 2
6 10 26 1 1
7 10 24 1 1
8 10 14 0 1
9 10 71 1 10
wardsPlaced win
0 14 False
1 12 False
2 4 False
3 16 False
4 28 False
5 10 True
6 14 True
7 15 True
8 7 True
9 29 True ,
assists baronKills bountyLevel champLevel championName \
0 0 0 0 13 Yone
1 0 0 0 11 Elise
2 1 0 0 13 Galio
3 2 0 0 11 Ezreal
4 1 0 0 10 Taric
5 10 0 4 15 DrMundo
6 11 1 4 13 Warwick
7 12 0 4 15 Yasuo
8 12 0 4 13 Samira
9 17 0 1 13 Sona
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3170 3170 3170
1 0 2432 0
2 775 775 775
3 2537 2783 2537
4 290 290 290
5 7427 11079 7427
6 0 19847 0
7 4287 12792 4287
8 5868 10578 5868
9 3595 5525 3595
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 1 0 False False
1 9 2 0 False False
2 7 2 0 False False
3 3 1 0 False False
4 6 0 0 False False
5 1 2 1 True False
6 1 0 3 False True
7 2 0 0 False False
8 0 1 0 False False
9 2 3 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 True False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 9435 TOP 0
1 False 5970 JUNGLE 0
2 False 7038 MIDDLE 0
3 False 7521 BOTTOM 0
4 False 5131 UTILITY 0
5 False 10027 TOP 0
6 False 10362 JUNGLE 2
7 False 11399 MIDDLE 0
8 False 9817 BOTTOM 0
9 False 7796 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 2 3072 3123 3006 6673 0
1 0 2 4636 2031 3020 1042 1042
2 0 2 1056 3047 3152 3191 2055
3 0 2 1055 3078 3070 3158 3133
4 0 2 3860 3190 3047 3024 0
5 2 0 3068 3047 3076 1011 3067
6 2 0 6632 2031 3111 3742 1028
7 2 0 1018 3139 3006 6672 1038
8 2 0 6673 3006 3134 1037 1055
9 2 0 3853 6617 3158 6616 0
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 0 3340 1 4 4 1
1 0 3340 0 0 0 0
2 1052 3364 0 2 0 2
3 1036 3340 0 0 0 0
4 0 3340 0 0 0 0
5 1054 3364 2 6 4 3
6 0 3340 2 9 5 3
7 0 3340 2 10 5 3
8 0 3363 1 4 4 1
9 0 3364 0 3 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 817 13947 3716
1 327 45767 4256
2 900 66809 9965
3 981 6615 2991
4 1099 5970 2145
5 1104 56681 10292
6 1184 41684 5042
7 921 17191 1903
8 1570 8432 2260
9 1195 22080 9418
magicDamageTaken neutralMinionsKilled nexusTakedowns objectivesStolen \
0 7839 2 0 0
1 5127 91 0 0
2 3633 4 0 0
3 5584 4 0 0
4 8128 0 0 0
5 6586 8 0 0
6 6412 117 1 0
7 6038 1 0 0
8 2537 10 1 0
9 4121 0 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 93112
1 0 2 17620
2 0 3 5371
3 0 4 73062
4 0 5 5446
5 0 6 40521
6 0 7 55602
7 0 8 113688
8 0 9 72547
9 0 10 6479
physicalDamageDealtToChampions physicalDamageTaken role \
0 11476 9704 SOLO
1 442 15858 NONE
2 973 16188 SOLO
3 11733 7459 CARRY
4 415 9888 SUPPORT
5 4681 10946 DUO
6 4543 19835 NONE
7 16707 10596 DUO
8 13581 8186 CARRY
9 2334 7356 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 4 14 311
1 4 4 16 11 482
2 3 4 2 12 383
3 2 7 2 4 121
4 3 4 3 3 114
5 3 12 1 4 91
6 2 4 11 11 356
7 4 14 4 4 353
8 3 7 3 4 185
9 2 4 4 14 186
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 NtvGmr False 100 TOP 14
1 RaymondPing False 100 JUNGLE 15
2 Bloq False 100 MIDDLE 33
3 Saferer False 100 BOTTOM 0
4 Cthulhu False 100 UTILITY 26
5 Dublaiar False 200 TOP 8
6 Rotome False 200 JUNGLE 20
7 Hero Øf Time False 200 MIDDLE 21
8 Thick2BThighs False 200 BOTTOM 0
9 Coolgum15 False 200 UTILITY 15
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1575 115545 17183
1 1575 75978 4845
2 1575 72181 10938
3 1575 79677 14725
4 1575 18116 2561
5 1575 104037 14973
6 1575 107904 9985
7 1575 139120 20785
8 1575 84499 15841
9 1575 28990 12183
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 17885 2678 160 110
1 21438 6240 3 178
2 21063 103 122 79
3 13575 2394 161 0
4 18453 3985 22 56
5 18692 7043 137 236
6 26626 15633 4 375
7 16923 5694 161 113
8 10972 3879 113 2
9 11539 14446 7 27
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 196 1 8485
1 188 1 12590
2 224 1 0
3 103 2 0
4 158 4 6699
5 36 1 6835
6 33 1 10617
7 78 1 8240
8 0 3 3520
9 74 5 430
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 1990 341 1 1
1 146 452 0 0
2 0 1241 0 0
3 0 532 0 1
4 0 437 1 1
5 0 1159 2 7
6 399 379 0 0
7 2174 288 0 4
8 0 248 6 6
9 430 61 1 5
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 9 14 2 0
1 9 21 2 1
2 9 14 4 1
3 9 20 1 2
4 9 11 0 0
5 2 20 2 1
6 2 16 0 1
7 2 12 0 0
8 2 8 2 0
9 2 22 3 1
wardsPlaced win
0 9 False
1 8 False
2 3 False
3 7 False
4 6 False
5 6 True
6 6 True
7 7 True
8 6 True
9 8 True ,
assists baronKills bountyLevel champLevel championName \
0 0 0 1 3 DrMundo
1 0 0 0 1 Skarner
2 0 0 0 3 Ahri
3 0 0 0 2 Kaisa
4 0 0 0 2 Thresh
5 0 0 0 2 Rengar
6 0 0 0 3 MasterYi
7 0 0 0 2 Akali
8 0 0 0 2 Caitlyn
9 0 0 0 2 Soraka
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 0 0 0
1 0 0 0
2 98 98 98
3 0 0 0
4 0 0 0
5 0 0 0
6 0 0 0
7 0 0 0
8 56 56 56
9 0 0 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 0 0 0 False True
1 0 0 0 False False
2 0 0 0 False False
3 0 0 0 False False
4 0 0 0 False False
5 1 0 0 False False
6 0 0 0 False False
7 0 0 0 False False
8 0 0 0 False False
9 0 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False True
1 False False True
2 False False True
3 False False True
4 False False True
5 False False True
6 False False True
7 False False True
8 False False True
9 False False True
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 1390 TOP 0
1 False 678 AFK 0
2 False 899 MIDDLE 0
3 False 881 BOTTOM 0
4 False 737 UTILITY 0
5 False 818 TOP 0
6 False 1048 JUNGLE 0
7 False 819 MIDDLE 0
8 False 1004 BOTTOM 0
9 False 835 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 0 0 0 0 0 0
1 0 0 0 0 0 0 0
2 0 0 2033 0 0 0 0
3 0 0 1055 0 0 0 0
4 0 0 3854 2003 2010 0 0
5 0 0 2031 0 0 0 1055
6 0 0 1035 0 0 0 0
7 0 0 1082 2031 2055 0 0
8 0 0 1055 2003 2010 0 0
9 0 0 3850 0 2003 0 0
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 1054 3340 0 1 0 1
1 0 0 0 0 0 0
2 0 3340 0 0 0 0
3 0 3340 0 0 0 0
4 0 3340 0 0 0 0
5 0 3340 0 0 0 0
6 2031 3340 0 0 0 0
7 0 3340 0 0 0 0
8 0 3340 0 0 0 0
9 0 3340 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 0 884 404
1 0 0 0
2 0 1405 254
3 0 29 0
4 0 304 177
5 137 100 0
6 0 1227 0
7 0 1086 178
8 0 0 0
9 0 1103 467
magicDamageTaken neutralMinionsKilled nexusTakedowns objectivesStolen \
0 0 0 0 0
1 0 0 0 0
2 178 0 0 0
3 198 0 0 0
4 268 0 0 0
5 404 0 0 0
6 410 16 0 0
7 254 0 0 0
8 0 0 0 0
9 177 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 2636
1 0 2 0
2 0 3 1606
3 0 4 1541
4 0 5 179
5 0 6 2063
6 0 7 6082
7 0 8 366
8 0 9 5627
9 0 10 284
physicalDamageDealtToChampions physicalDamageTaken role summoner1Casts \
0 348 705 DUO 0
1 0 0 DUO 0
2 394 650 DUO 1
3 32 133 DUO 0
4 39 448 DUO 0
5 589 562 DUO 1
6 0 1255 DUO 1
7 52 462 DUO 1
8 469 13 DUO 0
9 76 72 DUO 0
summoner1Id summoner2Casts summoner2Id summonerLevel summonerName \
0 12 1 4 91 Dublaiar
1 11 0 4 69 Dieu de Guerre
2 14 1 4 353 Hero Øf Time
3 7 0 4 185 Thick2BThighs
4 4 0 14 186 Coolgum15
5 4 0 14 196 PingasMaster69
6 11 0 4 60 Hemo Dancer
7 4 1 12 83 RankedSoul
8 4 1 14 142 BlameJV
9 4 0 7 229 floaur
teamEarlySurrendered teamId teamPosition timeCCingOthers timePlayed \
0 True 100 TOP 1 197
1 True 100 AFK 0 197
2 True 100 MIDDLE 0 197
3 True 100 BOTTOM 0 197
4 True 100 UTILITY 2 197
5 False 200 TOP 0 197
6 False 200 JUNGLE 0 197
7 False 200 MIDDLE 0 197
8 False 200 BOTTOM 0 197
9 False 200 UTILITY 2 197
totalDamageDealt totalDamageDealtToChampions totalDamageTaken totalHeal \
0 3520 752 705 380
1 0 0 0 0
2 4167 878 829 54
3 1570 32 331 26
4 637 217 734 0
5 3643 589 966 56
6 8078 0 1666 694
7 1453 230 946 22
8 5645 487 13 3
9 1388 543 250 161
totalMinionsKilled totalTimeCCDealt totalTimeSpentDead totalUnitsHealed \
0 15 17 0 1
1 0 0 0 0
2 10 0 0 1
3 11 0 0 1
4 2 3 0 0
5 7 0 6 1
6 0 0 0 1
7 7 5 0 1
8 16 0 0 1
9 0 21 0 2
trueDamageDealt trueDamageDealtToChampions trueDamageTaken turretKills \
0 0 0 0 0
1 0 0 0 0
2 1154 228 0 0
3 0 0 0 0
4 152 0 18 0
5 1480 0 0 0
6 768 0 0 0
7 0 0 228 0
8 18 18 0 0
9 0 0 0 0
turretTakedowns turretsLost visionScore visionWardsBoughtInGame \
0 0 0 0 0
1 0 0 0 0
2 0 0 0 0
3 0 0 0 0
4 0 0 0 0
5 0 0 0 0
6 0 0 1 0
7 0 0 0 1
8 0 0 1 0
9 0 0 0 0
wardsKilled wardsPlaced win
0 0 0 False
1 0 0 False
2 0 0 False
3 0 0 False
4 0 0 False
5 0 1 True
6 0 1 True
7 0 0 True
8 0 1 True
9 0 0 True ,
assists baronKills bountyLevel champLevel championName \
0 7 0 0 15 Jax
1 5 0 0 16 Diana
2 8 0 0 15 Lux
3 8 1 0 16 Kalista
4 16 0 0 15 Pantheon
5 12 0 9 18 Malphite
6 10 0 21 18 Shyvana
7 9 0 3 17 Syndra
8 14 0 0 16 Samira
9 13 0 1 14 Thresh
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3838 19449 3838
1 1333 24149 1333
2 280 608 280
3 2976 13316 2976
4 878 3754 878
5 3142 3142 3142
6 4932 35562 4932
7 3793 8390 3793
8 6380 8921 6380
9 2201 3849 2201
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 9 0 0 False False
1 12 3 2 False False
2 13 0 0 False False
3 9 3 0 False True
4 10 5 0 True False
5 2 2 0 False False
6 1 1 4 False False
7 6 1 0 False False
8 8 0 0 False False
9 11 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 True False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 12633 TOP 0
1 False 11478 JUNGLE 0
2 False 7754 MIDDLE 0
3 False 16018 BOTTOM 0
4 False 11788 UTILITY 0
5 False 14015 TOP 0
6 False 18636 JUNGLE 0
7 False 15188 MIDDLE 0
8 False 11534 BOTTOM 1
9 False 8777 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 1 2033 3153 3111 6632 3071
1 0 1 3157 3916 0 3020 3115
2 0 1 1056 2003 3020 6655 1058
3 0 1 3085 6673 3153 3124 3006
4 0 1 3857 6676 3179 3117 6692
5 0 0 3047 3068 3075 3041 3110
6 0 0 3115 4628 3041 3020 4636
7 0 0 4632 3157 3020 3089 6655
8 1 0 6673 3047 6676 3036 0
9 1 0 3857 3075 6664 1028 3117
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 1033 3340 3 7 2 1
1 4633 3364 0 2 0 1
2 3145 3340 0 1 0 1
3 1038 3340 3 12 5 2
4 1036 3364 1 6 2 1
5 1057 3340 2 12 9 2
6 3089 3340 1 22 21 5
7 3108 3340 3 13 8 3
8 1055 3363 1 4 3 2
9 0 3364 0 2 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 527 20954 3641
1 390 175001 14458
2 274 39153 5367
3 786 4610 2411
4 681 6945 1680
5 1427 60806 16825
6 396 204528 39712
7 1048 181341 32951
8 543 11474 1041
9 306 21910 8876
magicDamageTaken neutralMinionsKilled nexusTakedowns objectivesStolen \
0 19635 24 0 0
1 23319 135 0 1
2 15229 0 0 0
3 22159 34 0 0
4 20089 0 0 0
5 6235 4 1 0
6 7816 189 1 0
7 6642 16 1 0
8 3058 4 1 0
9 6195 0 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 93454
1 0 2 31376
2 0 3 14692
3 0 4 203909
4 0 5 47530
5 0 6 30544
6 0 7 49327
7 0 8 12321
8 0 9 99059
9 0 10 6128
physicalDamageDealtToChampions physicalDamageTaken role \
0 10737 9787 SOLO
1 1981 12658 NONE
2 162 3689 SOLO
3 19320 6597 CARRY
4 19335 7928 SUPPORT
5 5111 7152 SUPPORT
6 2308 22078 NONE
7 939 10635 CARRY
8 8351 16753 CARRY
9 1525 19687 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 5 14 58
1 5 4 13 11 114
2 0 4 2 12 41
3 4 4 5 7 305
4 8 14 2 4 141
5 5 4 2 12 148
6 3 4 10 11 72
7 5 4 5 14 186
8 4 7 2 4 91
9 4 14 6 4 353
summonerName teamEarlySurrendered teamId teamPosition \
0 Lobo is my dog False 100 TOP
1 AhWoah False 100 JUNGLE
2 KiterKaterRJB False 100 MIDDLE
3 Joe With The Flo False 100 BOTTOM
4 caMaroni False 100 UTILITY
5 KinkajouEggs False 200 TOP
6 HotCrockets False 200 JUNGLE
7 Coolgum15 False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 Hero Øf Time False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 20 2193 134581 15117
1 9 2193 219262 17282
2 19 2193 54167 5851
3 20 2193 208776 21987
4 24 2193 60311 22689
5 31 2193 103244 21937
6 7 2193 265795 42659
7 46 2193 195457 34204
8 3 2193 115128 9393
9 52 2193 32639 11148
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 29732 3978 115 61
1 36248 8873 65 158
2 19342 36 79 241
3 29110 5991 229 112
4 28358 3043 54 65
5 14480 3560 125 782
6 30774 12798 65 206
7 17974 3441 223 347
8 20084 3864 164 7
9 26774 2025 42 125
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 277 1 20173
1 385 1 12884
2 360 1 321
3 316 2 256
4 335 1 5835
5 51 1 11893
6 14 1 11939
7 285 1 1794
8 240 3 4595
9 300 5 4600
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 738 310 2 2
1 843 271 0 1
2 321 423 0 1
3 256 354 0 1
4 1673 340 1 1
5 0 1092 1 3
6 638 879 2 3
7 314 696 2 5
8 0 272 1 5
9 746 891 2 6
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 9 10 0 1
1 9 31 3 5
2 9 12 0 0
3 9 37 3 2
4 9 57 5 5
5 3 23 5 2
6 3 24 1 2
7 3 28 1 1
8 3 16 0 0
9 3 26 0 4
wardsPlaced win
0 6 False
1 4 False
2 8 False
3 16 False
4 26 False
5 11 True
6 10 True
7 12 True
8 9 True
9 14 True ,
assists baronKills bountyLevel champLevel championName \
0 8 0 0 16 DrMundo
1 15 0 0 16 Zac
2 12 0 0 17 Yasuo
3 7 0 0 15 Jhin
4 17 0 0 15 Seraphine
5 8 0 1 17 Fiora
6 7 1 3 18 Urgot
7 11 0 1 18 Kayle
8 9 0 1 15 Ezreal
9 9 0 0 14 Lux
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 1178 1178 1178
1 1314 23947 1314
2 2944 6908 2944
3 3155 9545 3155
4 1533 2030 1533
5 12568 14086 12568
6 3055 25845 3055
7 9396 24171 9396
8 1678 5549 1678
9 762 1257 762
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 0 0 False False
1 6 0 2 False False
2 10 1 0 False True
3 7 2 0 False False
4 6 0 0 False False
5 4 0 0 False False
6 6 0 2 False False
7 12 0 0 False False
8 10 0 1 False False
9 4 7 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False True False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 10868 TOP 0
1 False 11934 JUNGLE 0
2 False 13730 MIDDLE 0
3 False 14137 BOTTOM 0
4 False 9869 UTILITY 0
5 False 11618 TOP 2
6 False 16896 JUNGLE 0
7 False 17687 MIDDLE 0
8 False 11914 BOTTOM 0
9 False 8318 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 2 3068 3047 3075 3065 0
1 0 2 3068 3076 3065 3047 3193
2 0 2 1055 3006 6673 3072 3031
3 0 2 3072 6671 6676 1031 3009
4 0 2 3853 4005 3020 3011 3116
5 2 0 6630 3074 3158 1036 1054
6 2 0 6631 3111 3076 3066 3053
7 2 0 3042 3047 3156 3046 3091
8 0 0 3042 6632 3110 3158 1036
9 1 0 3853 3020 2031 6655 3916
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 1054 3340 1 6 3 1
1 0 3340 0 3 0 1
2 1038 3340 1 10 5 2
3 0 3340 4 13 6 3
4 0 3364 1 4 2 1
5 3123 3340 0 1 0 1
6 3748 3364 2 13 7 3
7 6672 3340 2 14 5 3
8 1036 3340 1 5 2 1
9 1026 3340 1 3 2 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 778 59513 16495
1 675 144020 18137
2 574 10251 2169
3 701 5114 2881
4 695 38113 15561
5 996 3578 1938
6 600 9230 73
7 271 93199 22308
8 475 10858 5906
9 1011 25370 9798
magicDamageTaken neutralMinionsKilled nexusTakedowns objectivesStolen \
0 13441 2 0 0
1 10395 133 0 1
2 5575 12 0 0
3 6652 0 0 0
4 5559 0 0 0
5 13906 4 1 0
6 13281 164 1 0
7 15344 28 1 0
8 8381 5 1 1
9 6897 0 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 34210
1 0 2 20813
2 0 3 168928
3 0 4 133401
4 0 5 2880
5 0 6 105056
6 0 7 220768
7 0 8 118714
8 0 9 86212
9 0 10 2194
physicalDamageDealtToChampions physicalDamageTaken role \
0 5926 23322 SOLO
1 1873 26134 NONE
2 23054 21712 SOLO
3 18526 14954 CARRY
4 1265 11961 SUPPORT
5 6350 13883 SOLO
6 26839 24072 NONE
7 26258 17876 SOLO
8 14236 13898 CARRY
9 384 7700 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 12 3 4 91
1 3 4 21 11 186
2 3 4 5 14 205
3 7 7 4 4 353
4 4 4 7 3 135
5 3 4 3 12 36
6 7 6 16 11 149
7 3 12 4 4 150
8 5 4 6 7 191
9 3 14 4 4 161
summonerName teamEarlySurrendered teamId teamPosition \
0 Dublaiar False 100 TOP
1 Coolgum15 False 100 JUNGLE
2 GrandSaltLord False 100 MIDDLE
3 Hero Øf Time False 100 BOTTOM
4 Alece False 100 UTILITY
5 MusterdCat5623 False 200 TOP
6 CoolL86 False 200 JUNGLE
7 Nights Slaughter False 200 MIDDLE
8 Joshmp4 False 200 BOTTOM
9 Escanor277 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 15 1991 98824 22421
1 53 1991 178792 22527
2 33 1991 190112 25944
3 35 1991 139720 21731
4 34 1991 41113 16857
5 10 1991 144086 11821
6 42 1991 262605 31401
7 10 1991 228063 57037
8 0 1991 97175 20247
9 39 1991 28363 10981
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 43490 11682 149 281
1 44781 46901 51 557
2 29059 6809 174 111
3 22741 7020 185 124
4 18527 3118 17 243
5 28038 8436 190 140
6 38256 16732 88 776
7 33720 12015 191 224
8 22840 2692 150 138
9 14671 1449 15 283
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 237 1 5100
1 178 5 13959
2 308 1 10933
3 226 4 1204
4 172 4 120
5 175 7 35450
6 202 1 32605
7 473 3 16148
8 316 2 104
9 139 1 798
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 0 6726 0 0
1 2517 8250 1 2
2 720 1770 0 1
3 322 1134 0 2
4 30 1006 2 2
5 3532 248 3 7
6 4488 902 0 5
7 8470 500 4 6
8 104 560 3 4
9 798 73 1 3
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 11 16 0 0
1 11 16 0 0
2 11 28 4 1
3 11 28 2 3
4 11 27 0 1
5 4 16 0 2
6 4 13 0 2
7 4 11 0 0
8 4 17 0 0
9 4 53 7 1
wardsPlaced win
0 10 False
1 8 False
2 11 False
3 10 False
4 13 False
5 9 True
6 1 True
7 6 True
8 11 True
9 34 True ,
assists baronKills bountyLevel champLevel championName \
0 5 0 0 14 Camille
1 1 0 2 13 Chogath
2 1 0 0 14 Jinx
3 1 0 0 12 Caitlyn
4 6 0 0 11 Vi
5 9 0 0 16 Nocturne
6 6 1 0 14 Viego
7 3 0 4 18 Kayle
8 1 0 3 13 Xayah
9 8 0 0 12 Senna
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 0 0 0
1 0 7632 0
2 5222 12662 5222
3 2816 2816 2816
4 1394 1394 1394
5 4178 9433 4178
6 69 26964 69
7 10858 23894 10858
8 2272 11988 2272
9 2702 7008 2702
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 6 1 0 False False
1 4 1 2 False False
2 5 0 1 False False
3 6 0 0 False False
4 6 1 0 False False
5 3 0 0 False False
6 1 0 1 False False
7 4 1 0 False False
8 0 0 0 False True
9 4 4 0 True False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False True False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 7788 TOP 0
1 False 9925 JUNGLE 0
2 False 8850 MIDDLE 0
3 False 8302 BOTTOM 0
4 False 7013 UTILITY 0
5 False 12178 TOP 0
6 False 10547 JUNGLE 0
7 False 15867 MIDDLE 1
8 False 9606 BOTTOM 0
9 False 8072 UTILITY 1
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 2 1055 2033 6632 3077 3047
1 0 2 3047 2031 6662 3083 1033
2 0 2 1055 6672 3006 3085 0
3 0 2 6672 3006 6676 0 0
4 0 2 3857 3190 3047 3801 1006
5 0 0 1011 2033 6631 3053 3026
6 0 0 3047 3153 6632 3044 1037
7 1 0 3115 3006 4633 1082 1029
8 0 0 1055 3508 3086 3006 6671
9 1 0 6672 3864 3094 1036 2055
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 1028 3340 0 2 0 1
1 1029 3364 2 4 2 1
2 0 3340 1 2 2 1
3 1055 3340 1 3 2 1
4 3067 3364 0 1 0 1
5 3047 3364 2 7 4 1
6 1028 3364 1 5 5 1
7 3089 3340 2 12 7 2
8 1036 3340 1 3 3 1
9 3009 3364 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 386 737 737
1 990 75732 4833
2 682 1220 750
3 833 376 236
4 592 792 792
5 785 2858 2528
6 1615 16508 991
7 633 175548 21089
8 0 182 182
9 469 872 176
magicDamageTaken neutralMinionsKilled nexusTakedowns objectivesStolen \
0 6204 0 0 0
1 5235 117 0 0
2 3119 4 0 1
3 5768 4 0 0
4 6015 0 0 0
5 3162 8 0 0
6 3792 143 0 0
7 1537 41 0 0
8 1531 6 0 0
9 1043 4 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 56079
1 0 2 27056
2 0 3 99343
3 0 4 87212
4 0 5 28252
5 0 6 112953
6 0 7 123408
7 0 8 50357
8 0 9 108622
9 0 10 33457
physicalDamageDealtToChampions physicalDamageTaken role \
0 10353 15879 SOLO
1 1002 19765 NONE
2 11123 10337 SOLO
3 7395 9546 CARRY
4 7602 11286 SUPPORT
5 18741 17022 SOLO
6 9461 16378 NONE
7 4602 19522 SOLO
8 8113 6482 CARRY
9 5969 8159 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 4 12 355
1 15 11 3 4 288
2 3 4 2 14 134
3 4 7 3 4 90
4 4 4 6 3 185
5 2 12 4 4 214
6 4 4 14 11 63
7 3 4 2 12 174
8 3 4 1 7 27
9 3 21 3 4 242
summonerName teamEarlySurrendered teamId teamPosition \
0 Rotome False 100 TOP
1 MidweekEel False 100 JUNGLE
2 Alece False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 Coolgum15 False 100 UTILITY
5 Shaunthesheep321 False 200 TOP
6 MangaReader16 False 200 JUNGLE
7 GwapplesL False 200 MIDDLE
8 Lux1250 False 200 BOTTOM
9 xCLIFFORDx False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 15 1690 71544 13636
1 39 1690 121344 9271
2 18 1690 118158 12830
3 18 1690 93797 7731
4 28 1690 35214 8394
5 122 1690 115812 21269
6 15 1690 148862 11030
7 6 1690 234769 27761
8 3 1690 108804 8295
9 27 1690 36553 6540
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 23113 5620 130 106
1 25624 7931 28 1419
2 13481 2123 164 63
3 15651 3189 155 54
4 18330 2228 39 82
5 23489 9529 183 312
6 21192 12340 13 264
7 24107 11135 233 279
8 8045 1306 169 10
9 9837 5684 14 80
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 183 1 14728
1 143 1 18554
2 156 1 17595
3 150 2 6208
4 159 4 6169
5 65 1 0
6 46 1 8945
7 122 4 8863
8 0 2 0
9 72 5 2224
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 2546 1029 0 0
1 3434 623 0 0
2 956 24 1 2
3 99 336 1 1
4 0 1027 0 1
5 0 3304 2 2
6 577 1021 1 1
7 2069 3046 4 5
8 0 30 1 1
9 394 634 1 3
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 10 7 3 0
1 10 14 1 1
2 10 7 0 0
3 10 10 0 0
4 10 32 1 4
5 2 10 0 1
6 2 13 4 2
7 2 9 1 0
8 2 14 0 0
9 2 60 6 4
wardsPlaced win
0 5 False
1 6 False
2 6 False
3 7 False
4 11 False
5 3 True
6 1 True
7 5 True
8 9 True
9 25 True ,
assists baronKills bountyLevel champLevel championName \
0 7 0 0 17 Ziggs
1 4 0 0 15 Gwen
2 4 2 0 17 Khazix
3 7 0 0 18 Yasuo
4 9 0 1 15 Lux
5 16 0 0 15 Lulu
6 4 0 6 17 Jhin
7 3 0 0 15 DrMundo
8 2 0 0 17 Ezreal
9 9 0 0 18 Mordekaiser
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 18506 29638 18506
1 6926 11706 6926
2 1329 25021 1329
3 8333 25971 8333
4 2343 6575 2343
5 47 2501 47
6 0 1064 0
7 43 6069 43
8 806 7572 806
9 2337 11575 2337
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 3 2 0 False False
1 5 1 0 False False
2 8 0 3 False False
3 8 5 0 False False
4 5 2 0 False False
5 7 0 0 False False
6 5 0 0 False False
7 10 0 1 False False
8 6 2 0 False False
9 6 0 1 False True
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 14368 BOTTOM 1
1 False 10475 TOP 1
2 False 14209 JUNGLE 2
3 False 15628 MIDDLE 1
4 False 12689 UTILITY 1
5 False 8451 UTILITY 0
6 False 13813 BOTTOM 0
7 False 9557 JUNGLE 0
8 False 13290 MIDDLE 0
9 False 16712 TOP 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 1 0 6653 3158 4628 4637 3165
1 1 0 3191 3115 4633 3108 3047
2 2 0 6692 3009 3142 3508 6676
3 2 0 3140 0 3033 6672 3072
4 1 0 3853 3041 6655 4628 3020
5 0 6 3853 2065 3009 3011 1057
6 0 6 6671 3009 6676 3094 3033
7 0 6 6662 2031 3047 3083 3076
8 0 6 1056 6691 3158 3508 3074
9 0 6 3116 3157 4633 3111 4637
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 0 3340 0 2 0 1
1 1055 3340 0 1 0 1
2 0 3340 3 13 4 2
3 3006 3340 1 9 5 1
4 1058 3340 2 9 5 1
5 3114 3364 0 1 0 1
6 1055 3340 1 8 6 2
7 1011 3340 1 4 3 1
8 1038 3363 1 6 3 1
9 3211 3340 3 10 3 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 781 211720 38296
1 1288 30594 1059
2 835 12416 1697
3 980 16719 1774
4 802 60035 31645
5 561 16971 5442
6 623 19718 2105
7 561 73722 5591
8 661 24121 6172
9 868 205066 30548
magicDamageTaken neutralMinionsKilled nexusTakedowns objectivesStolen \
0 7084 4 0 0
1 11162 12 0 0
2 15329 158 0 1
3 12142 16 0 0
4 7495 4 0 0
5 13365 0 0 0
6 14160 0 0 0
7 21300 96 0 0
8 8786 12 0 0
9 18653 16 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 14338
1 0 2 21960
2 0 3 149974
3 0 4 203865
4 1 5 2916
5 0 6 3149
6 0 7 175181
7 0 8 46310
8 0 9 143057
9 0 10 20157
physicalDamageDealtToChampions physicalDamageTaken role \
0 362 7361 CARRY
1 551 8761 SOLO
2 23784 27808 NONE
3 19929 13319 SOLO
4 1006 4605 SUPPORT
5 761 7459 SUPPORT
6 9402 10025 CARRY
7 3290 27923 NONE
8 10409 10628 SOLO
9 3227 24050 SOLO
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 6 4 5 7 147
1 1 14 2 12 131
2 18 11 6 4 265
3 6 4 9 14 332
4 6 4 7 14 222
5 6 4 6 14 134
6 5 7 3 4 90
7 9 11 4 4 87
8 3 4 2 12 355
9 5 4 3 12 184
summonerName teamEarlySurrendered teamId teamPosition \
0 JuicyTendency False 100 BOTTOM
1 Eize False 100 TOP
2 Furia De Rosé False 100 JUNGLE
3 Mori Dan False 100 MIDDLE
4 shadows868 TTV False 100 UTILITY
5 Alece False 200 UTILITY
6 Dublaiar False 200 BOTTOM
7 PaladinAlwaysYes False 200 JUNGLE
8 Rotome False 200 MIDDLE
9 Coolgum15 False 200 TOP
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 23 2313 243663 38659
1 0 2313 71071 2459
2 8 2313 176192 26289
3 28 2313 236712 25133
4 44 2313 63680 33380
5 26 2313 21022 7105
6 18 2313 207705 11552
7 12 2313 127296 9136
8 1 2313 180236 16725
9 12 2313 231916 36112
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 14966 2522 244 291
1 20167 4257 94 18
2 44148 22371 9 260
3 26879 5113 216 177
4 12591 910 29 145
5 21373 1897 17 258
6 24536 6912 233 162
7 50509 15315 33 1301
8 19994 1812 216 26
9 45754 16963 229 284
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 107 2 17605
1 136 1 18516
2 282 1 13801
3 343 1 16128
4 154 1 728
5 223 1 901
6 166 2 12804
7 288 1 7264
8 253 1 13057
9 217 1 6692
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 0 521 3 3
1 848 243 5 7
2 808 1009 0 2
3 3429 1417 2 4
4 728 489 1 3
5 901 548 0 0
6 44 350 0 0
7 254 1285 0 0
8 144 579 0 0
9 2336 3050 1 1
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 1 32 2 2
1 1 27 1 1
2 1 15 0 0
3 1 39 5 0
4 1 61 2 2
5 11 36 0 4
6 11 17 0 1
7 11 7 0 1
8 11 24 2 0
9 11 22 0 1
wardsPlaced win
0 14 True
1 8 True
2 7 True
3 18 True
4 26 True
5 17 False
6 10 False
7 3 False
8 9 False
9 12 False ,
assists baronKills bountyLevel champLevel championName \
0 5 0 6 15 Nasus
1 15 0 2 14 Nunu
2 5 0 0 14 Pyke
3 12 0 1 13 Varus
4 19 0 2 13 Lux
5 4 0 0 11 Blitzcrank
6 4 0 0 13 Zac
7 0 0 0 12 Ezreal
8 3 0 0 12 Ashe
9 2 0 0 13 Illaoi
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 4907 4922 4907
1 1337 25789 1337
2 0 0 0
3 3902 5544 3902
4 3588 5528 3588
5 0 0 0
6 255 4971 255
7 706 706 706
8 0 0 0
9 725 7394 725
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 2 1 0 False False
1 1 1 4 False False
2 3 5 0 False False
3 4 1 0 False False
4 4 3 0 False False
5 8 0 0 False True
6 4 0 0 False False
7 5 0 0 False False
8 10 0 0 True False
9 6 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 True False False
1 False True False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 10347 TOP 0
1 True 9836 JUNGLE 0
2 True 12323 MIDDLE 0
3 True 10679 BOTTOM 0
4 True 9283 UTILITY 1
5 True 6152 UTILITY 0
6 True 9426 JUNGLE 0
7 True 6413 MIDDLE 0
8 True 9373 BOTTOM 0
9 True 8481 TOP 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 1 0 2033 6632 3047 3110 3076
1 1 0 3068 2031 3075 1029 3047
2 0 0 1054 3142 3158 3179 3134
3 1 0 2055 3042 3020 1026 3115
4 1 0 3853 6655 3020 4643 3145
5 0 1 3190 2031 3857 3047 3076
6 0 1 3068 2031 3076 3111 3065
7 0 1 4636 3020 3916 2031 1028
8 0 1 1055 2031 6672 3085 3006
9 0 1 6632 3047 3053 1029 0
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 1028 3364 1 7 6 1
1 1028 3364 1 2 2 1
2 6691 3364 2 12 6 2
3 3802 3340 2 8 4 2
4 0 3364 2 4 2 1
5 1011 3364 0 2 0 1
6 1028 3340 1 4 3 1
7 0 3340 0 2 0 1
8 1037 3340 1 4 2 2
9 0 3340 0 2 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 694 29536 4253
1 329 54335 8259
2 904 0 0
3 878 21163 6934
4 554 48402 17059
5 612 8891 2737
6 535 90864 12165
7 778 14314 8238
8 391 2478 1278
9 699 567 470
magicDamageTaken neutralMinionsKilled nexusTakedowns objectivesStolen \
0 4343 12 0 0
1 5382 122 0 0
2 6040 4 0 0
3 6698 0 0 0
4 3815 0 0 0
5 9365 0 0 0
6 8232 102 0 0
7 3574 0 0 0
8 8245 4 0 0
9 8067 4 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 76527
1 0 2 20383
2 0 3 56292
3 0 4 82283
4 0 5 2593
5 0 6 5449
6 0 7 13682
7 0 8 30541
8 0 9 70148
9 0 10 100530
physicalDamageDealtToChampions physicalDamageTaken role \
0 10558 15247 SOLO
1 974 17629 NONE
2 9682 9466 SOLO
3 14062 6923 CARRY
4 702 4754 SUPPORT
5 2217 8570 SUPPORT
6 964 17942 NONE
7 1753 8416 SOLO
8 9537 8564 CARRY
9 13166 12090 SOLO
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 1 12 2 4 51
1 15 11 2 4 107
2 4 4 4 14 125
3 4 7 4 4 142
4 6 14 4 4 168
5 2 4 5 14 291
6 4 4 17 11 184
7 2 14 3 4 90
8 4 7 3 4 178
9 3 4 0 12 134
summonerName teamEarlySurrendered teamId teamPosition \
0 Gordiepapa False 100 TOP
1 Seriousnow False 100 JUNGLE
2 wendsthefreeelf False 100 MIDDLE
3 SilentStrikerTH False 100 BOTTOM
4 RayneDrop67 False 100 UTILITY
5 Icy1sh False 200 UTILITY
6 Coolgum15 False 200 JUNGLE
7 Dublaiar False 200 MIDDLE
8 The Elite Solari False 200 BOTTOM
9 Alece False 200 TOP
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 5 1616 108680 15011
1 27 1616 131049 9454
2 20 1616 61428 13305
3 25 1616 104195 21746
4 33 1616 52758 19524
5 30 1616 19848 5418
6 38 1616 112636 14230
7 0 1616 45175 10312
8 31 1616 84053 11591
9 1 1616 105813 13636
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 19898 3987 139 162
1 23931 17128 16 359
2 16162 3348 122 134
3 14260 3584 151 377
4 8707 594 30 267
5 19429 0 31 75
6 29668 28528 32 421
7 12759 876 95 0
8 17664 1685 154 534
9 20719 5512 144 7
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 65 1 2616
1 12 5 56331
2 111 1 5135
3 149 2 748
4 74 1 1762
5 218 0 5507
6 101 5 8089
7 142 1 320
8 293 3 11427
9 184 1 4715
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 199 308 0 2
1 221 920 1 2
2 3623 655 0 0
3 748 638 2 3
4 1762 137 2 4
5 463 1493 0 0
6 1100 3493 0 0
7 320 769 0 0
8 776 854 0 0
9 0 560 1 1
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 1 5 1 0
1 1 17 1 0
2 1 18 5 3
3 1 19 2 1
4 1 38 3 1
5 5 17 0 3
6 5 17 0 2
7 5 9 0 1
8 5 8 0 1
9 5 9 0 1
wardsPlaced win
0 3 True
1 3 True
2 6 True
3 7 True
4 18 True
5 8 False
6 7 False
7 5 False
8 3 False
9 5 False ,
assists baronKills bountyLevel champLevel championName \
0 0 0 0 14 Nasus
1 4 0 5 15 Kayn
2 8 0 0 15 Zoe
3 8 0 1 15 Yasuo
4 17 0 1 14 Blitzcrank
5 3 0 0 15 Teemo
6 6 0 0 13 Zac
7 3 0 0 13 Ezreal
8 4 0 0 13 Lucian
9 5 0 1 10 Thresh
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 12014 13511 12014
1 0 10778 0
2 2073 5320 2073
3 9305 12255 9305
4 3233 4039 3233
5 2416 2416 2416
6 0 2709 0
7 524 524 524
8 0 137 0
9 1538 1711 1538
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 6 2 0 False False
1 0 0 2 False False
2 2 0 0 True False
3 8 0 1 False True
4 4 0 0 True False
5 8 0 0 False False
6 8 0 0 False False
7 7 0 0 False False
8 11 1 0 False False
9 11 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False True False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 10774 TOP 1
1 False 10979 JUNGLE 0
2 False 11001 MIDDLE 0
3 False 15955 BOTTOM 1
4 False 9310 UTILITY 0
5 False 10310 TOP 0
6 False 8835 JUNGLE 0
7 False 6218 MIDDLE 0
8 False 9999 BOTTOM 0
9 False 6809 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 1 0 3110 6632 3111 3065 0
1 1 0 6630 3111 3042 3044 0
2 0 0 3135 6655 3020 4628 0
3 1 0 3072 3006 6673 3031 3033
4 1 0 3859 3190 3117 3050 3076
5 0 3 3020 3115 3916 6653 1011
6 0 3 3068 2031 3111 3076 3211
7 0 3 4636 3020 3145 0 0
8 0 3 6675 3006 6671 1018 3057
9 0 3 3855 6670 1037 3006 1055
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 0 3364 1 7 3 1
1 1037 3340 1 5 5 1
2 0 3364 2 8 5 2
3 0 3364 5 20 5 3
4 1011 3340 1 5 2 1
5 1026 3340 1 7 2 1
6 3067 3340 0 4 0 1
7 1056 3363 0 1 0 1
8 0 3363 1 6 2 1
9 1055 3340 0 2 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 524 20574 4080
1 0 8287 0
2 852 65724 17871
3 378 9601 2357
4 630 11114 6297
5 471 91100 32103
6 749 85251 13178
7 382 11707 6703
8 353 4025 1188
9 168 5986 2360
magicDamageTaken neutralMinionsKilled nexusTakedowns objectivesStolen \
0 20109 4 0 0
1 9203 171 1 0
2 8667 8 0 0
3 11458 8 0 0
4 8285 0 1 0
5 7558 0 0 0
6 9240 80 0 0
7 5978 0 0 0
8 5867 0 0 0
9 3920 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 89341
1 0 2 151719
2 0 3 12596
3 0 4 145093
4 0 5 10656
5 0 6 32328
6 0 7 13435
7 0 8 27299
8 0 9 86984
9 0 10 6543
physicalDamageDealtToChampions physicalDamageTaken role \
0 8831 16223 SOLO
1 7905 14006 NONE
2 1159 6124 SOLO
3 32333 13482 CARRY
4 3776 10390 SUPPORT
5 5342 17577 SOLO
6 1189 20742 NONE
7 1436 9395 SOLO
8 20238 15904 CARRY
9 1215 12003 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 4 12 61
1 2 4 13 11 146
2 7 14 4 4 88
3 6 3 5 4 153
4 5 7 4 4 41
5 3 12 4 4 207
6 3 4 18 11 184
7 3 14 1 4 90
8 5 7 4 4 228
9 4 3 3 4 188
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 NeoBigG False 100 TOP 13
1 Moistrusse False 100 JUNGLE 11
2 knifeupthebutt False 100 MIDDLE 40
3 cdog420 False 100 BOTTOM 36
4 luckybobfish False 100 UTILITY 45
5 KingYayYa False 200 TOP 45
6 Coolgum15 False 200 JUNGLE 43
7 Dublaiar False 200 MIDDLE 0
8 LetsPlayLeague False 200 BOTTOM 0
9 Sabernator False 200 UTILITY 17
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1648 114776 12912
1 1648 171254 8168
2 1648 85121 22181
3 1648 167342 37211
4 1648 26174 10291
5 1648 123429 37445
6 1648 104807 16128
7 1648 42640 8768
8 1648 93504 21426
9 1648 18723 3576
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 36757 6370 133 173
1 23369 14791 30 320
2 17218 5886 137 132
3 26527 5895 157 124
4 18888 2989 29 119
5 25599 4095 149 366
6 34317 23289 37 371
7 16761 0 95 0
8 22122 2815 137 1
9 16121 458 21 60
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 181 1 4860
1 0 1 11247
2 32 2 6801
3 194 1 12646
4 118 2 4403
5 260 1 0
6 253 4 6120
7 209 0 3633
8 285 2 2495
9 190 1 6194
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 0 424 4 4
1 263 160 0 0
2 3150 2426 1 3
3 2519 1586 3 3
4 217 212 1 4
5 0 462 1 1
6 1760 4334 0 0
7 628 1388 0 0
8 0 350 0 0
9 0 196 0 1
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 1 12 2 1
1 1 22 0 1
2 1 13 0 1
3 1 3 0 0
4 1 14 0 0
5 10 8 0 0
6 10 9 0 0
7 10 7 0 1
8 10 20 4 1
9 10 8 0 0
wardsPlaced win
0 5 True
1 9 True
2 6 True
3 3 True
4 7 True
5 5 False
6 6 False
7 4 False
8 10 False
9 6 False ,
assists baronKills bountyLevel champLevel championName \
0 11 0 4 18 Darius
1 14 0 1 15 LeeSin
2 8 0 3 16 Veigar
3 9 0 0 15 Caitlyn
4 22 0 0 16 Xerath
5 5 0 0 16 Illaoi
6 9 1 0 17 Talon
7 7 0 0 18 Kayle
8 10 0 0 14 Draven
9 18 0 0 16 Zilean
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 4697 15388 4697
1 2421 9590 2421
2 5196 6253 5196
3 4683 7109 4683
4 2440 5553 2440
5 2653 7523 2653
6 118 11380 118
7 5893 18468 5893
8 2698 8400 2698
9 1318 2266 1318
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 0 0 False True
1 7 1 1 False False
2 9 0 0 False False
3 5 0 1 False False
4 8 1 0 False False
5 14 0 0 False False
6 12 2 0 False False
7 4 1 1 False False
8 11 0 1 False False
9 7 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 18899 TOP 0
1 False 11964 JUNGLE 0
2 False 11881 MIDDLE 0
3 False 12019 BOTTOM 0
4 False 11173 UTILITY 2
5 False 10551 TOP 0
6 False 13288 JUNGLE 0
7 False 21195 MIDDLE 0
8 False 9533 BOTTOM 0
9 False 9297 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 1 0 6631 4401 3047 3742 3075
1 2 0 3211 2031 3117 6692 3071
2 1 0 3070 6656 3158 3742 3083
3 1 0 6672 3006 6676 3094 3123
4 2 0 3853 6655 3020 4628 1058
5 0 2 3071 6632 3047 3075 0
6 0 2 6693 6694 3042 3158 3123
7 0 2 3089 3006 3115 4633 3165
8 0 2 1055 6673 3006 6676 1018
9 0 2 3853 3158 2065 3011 3067
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 3026 3340 4 19 8 2
1 3067 3340 1 8 4 1
2 0 3363 2 7 3 2
3 1055 3340 2 10 7 2
4 1058 3364 0 4 0 1
5 0 3340 0 3 0 1
6 3133 3364 2 10 3 1
7 3135 3340 2 19 16 3
8 1036 3340 0 1 0 1
9 3108 3340 0 2 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 606 7108 887
1 1288 30767 2964
2 622 124728 25558
3 738 902 218
4 599 109534 35699
5 330 1119 278
6 264 8365 0
7 923 195944 34661
8 327 0 0
9 514 32999 6519
magicDamageTaken neutralMinionsKilled nexusTakedowns objectivesStolen \
0 11333 12 0 0
1 11436 92 1 0
2 10660 0 1 0
3 4061 12 1 0
4 4943 4 0 0
5 14654 0 0 0
6 14117 136 0 0
7 15044 23 0 0
8 14864 28 0 0
9 9644 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 169693
1 0 2 80801
2 0 3 8732
3 0 4 109404
4 0 5 2612
5 0 6 156581
6 0 7 151715
7 0 8 55363
8 0 9 105554
9 0 10 3873
physicalDamageDealtToChampions physicalDamageTaken role \
0 35230 31549 NONE
1 19182 19442 NONE
2 401 19108 SOLO
3 12780 10678 CARRY
4 434 12409 SUPPORT
5 23783 28709 SOLO
6 23658 23508 NONE
7 5825 12188 SOLO
8 11145 20939 CARRY
9 652 14685 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 5 4 8 6 137
1 5 4 16 11 148
2 8 6 4 12 99
3 3 7 2 4 88
4 5 4 7 21 184
5 4 4 2 12 69
6 17 11 6 4 65
7 4 4 3 12 157
8 6 7 5 4 24
9 6 14 4 4 226
summonerName teamEarlySurrendered teamId teamPosition \
0 DracoSimia False 100 TOP
1 Cription False 100 JUNGLE
2 EvoScotty False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 Coolgum15 False 100 UTILITY
5 TTV BrdrJmpr69 False 200 TOP
6 ricemx False 200 JUNGLE
7 SouljaBoiTellem False 200 MIDDLE
8 10inchpunish3r False 200 BOTTOM
9 Tomberry Deadly False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 50 2060 194009 43393
1 26 2060 119993 23081
2 68 2060 135956 25960
3 9 2060 117278 14098
4 34 2060 112146 36134
5 2 2060 164115 24061
6 10 2060 168608 25088
7 14 2060 257405 43167
8 13 2060 109743 11249
9 16 2060 41413 8084
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 44872 12261 194 529
1 31868 6184 31 328
2 30697 1509 158 183
3 15153 4074 129 39
4 18157 1203 75 178
5 48664 12620 165 23
6 38515 10963 25 249
7 28773 14363 279 322
8 37015 4996 109 122
9 24695 11360 23 143
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 274 1 17207
1 305 1 8424
2 352 1 2495
3 169 2 6971
4 206 1 0
5 504 1 6415
6 380 1 8527
7 135 5 6098
8 329 3 4189
9 181 3 4540
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 7275 1989 3 3
1 934 989 2 3
2 0 929 2 5
3 1099 413 0 4
4 0 804 1 3
5 0 5300 1 2
6 1429 890 0 1
7 2680 1540 4 4
8 104 1211 0 3
9 912 366 0 3
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 5 15 0 0
1 5 33 2 1
2 5 9 0 0
3 5 20 0 2
4 5 53 1 3
5 8 10 0 1
6 8 13 4 0
7 8 18 1 0
8 8 8 0 2
9 8 66 1 1
wardsPlaced win
0 10 True
1 9 True
2 3 True
3 10 True
4 18 True
5 5 False
6 4 False
7 10 False
8 3 False
9 32 False ,
assists baronKills bountyLevel champLevel championName \
0 15 0 0 18 Yone
1 20 0 5 17 Zac
2 12 0 4 18 Pantheon
3 11 0 0 15 Jhin
4 17 0 7 16 Lux
5 7 1 0 17 DrMundo
6 7 1 0 16 Elise
7 8 0 0 17 Yasuo
8 7 0 0 16 Draven
9 7 0 0 13 Leona
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 8899 18560 8899
1 1370 9852 1370
2 3874 10898 3874
3 2696 8367 2696
4 2865 6553 2865
5 6103 16923 6103
6 159 17840 159
7 3706 14697 3706
8 5072 30824 5072
9 737 1300 737
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 4 0 0 False False
1 4 1 2 False False
2 6 2 0 False True
3 7 0 0 False False
4 6 1 0 False False
5 5 1 1 False False
6 7 5 3 False False
7 11 3 0 False False
8 5 0 0 False False
9 6 4 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False True False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 16686 TOP 0
1 False 13008 JUNGLE 0
2 False 15764 MIDDLE 0
3 False 10960 BOTTOM 0
4 False 13316 UTILITY 2
5 False 12267 TOP 0
6 False 12136 JUNGLE 0
7 False 16122 MIDDLE 0
8 False 18663 BOTTOM 1
9 False 8643 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 3035 3047 6673 3033 3031 3072 3340
1 1 3068 3143 3075 3047 3105 1029 3364
2 1 6692 3074 3047 3071 3053 0 3340
3 1 6671 3009 3036 3094 0 1055 3340
4 1 3853 6655 4643 3158 4629 3011 3364
5 2 3065 3068 3047 3075 1011 1028 3340
6 2 3157 3165 4636 1082 3020 4632 3364
7 2 3139 3143 6673 3031 3006 1053 3340
8 2 3033 6673 3009 3031 6676 3072 3363
9 2 3860 3190 3047 3075 3024 1028 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 5 4 1
1 1 6 5 3
2 3 13 5 2
3 1 3 2 1
4 1 7 7 2
5 1 2 2 1
6 1 6 2 1
7 1 7 5 2
8 1 11 11 3
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 1026 53590 6232
1 795 126788 13608
2 322 4068 1710
3 975 8367 542
4 364 104503 29200
5 946 71426 13620
6 662 102098 12583
7 590 13384 2046
8 1299 566 362
9 993 6396 2336
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 9056 48 0
1 9721 116 0
2 7148 20 0
3 4863 20 0
4 1895 16 0
5 14842 16 0
6 10240 119 0
7 11100 24 0
8 10485 48 0
9 7410 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 238815
1 0 2 18521
2 0 3 161596
3 0 4 106019
4 0 5 9616
5 0 6 71905
6 0 7 21227
7 0 8 223885
8 0 9 244422
9 0 10 3744
physicalDamageDealtToChampions physicalDamageTaken role \
0 16576 11840 SOLO
1 1070 23595 NONE
2 27652 18064 SOLO
3 10120 14525 CARRY
4 1467 8661 SUPPORT
5 3090 25135 SOLO
6 846 19549 NONE
7 23306 24092 SOLO
8 20932 12399 CARRY
9 1070 7983 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 4 12 263
1 5 4 21 11 183
2 6 4 9 14 352
3 6 7 4 4 87
4 8 14 5 4 193
5 1 12 3 4 52
6 4 4 15 11 345
7 5 4 7 14 354
8 4 4 6 7 277
9 2 4 3 14 167
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 StalwartHide False 100 TOP 21
1 Coolgum15 False 100 JUNGLE 47
2 Rotome False 100 MIDDLE 32
3 Dublaiar False 100 BOTTOM 19
4 lofr False 100 UTILITY 73
5 Bobby Tokoto False 200 TOP 14
6 iStayKrazy False 200 JUNGLE 24
7 Solar Divinity False 200 MIDDLE 25
8 Khano False 200 BOTTOM 12
9 Tiramiisu False 200 UTILITY 25
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 2338 296922 27326
1 2338 157934 16592
2 2338 170261 30982
3 2338 115007 10707
4 2338 117480 31520
5 2338 144812 16711
6 2338 131852 14575
7 2338 240517 26770
8 2338 248876 22885
9 2338 15245 3710
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 21324 2847 260 157
1 35365 39270 49 619
2 26807 8212 190 78
3 19824 5475 114 164
4 10701 597 66 404
5 42237 17174 197 250
6 31601 14736 28 103
7 37737 10897 249 175
8 24153 7034 201 93
9 16263 1530 24 35
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 134 1 4516
1 133 5 12624
2 186 1 4595
3 159 3 620
4 129 1 3360
5 191 1 1480
6 205 1 8527
7 402 1 3248
8 190 4 3887
9 122 1 5104
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 4516 428 3 5
1 1914 2048 1 5
2 1620 1594 1 5
3 44 435 0 5
4 853 144 2 5
5 0 2259 3 7
6 1145 1811 0 7
7 1418 2544 0 7
8 1589 1268 2 7
9 304 870 0 7
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 28 0 2 16 True
1 17 1 7 1 True
2 25 2 2 10 True
3 22 0 1 13 True
4 80 1 7 26 True
5 35 1 1 11 False
6 27 5 2 6 False
7 24 3 3 15 False
8 25 0 1 10 False
9 45 4 2 17 False ,
assists baronKills bountyLevel champLevel championName \
0 4 0 1 15 Nasus
1 5 0 1 13 Shaco
2 4 0 1 14 Ekko
3 3 0 14 14 Jhin
4 18 0 1 13 Morgana
5 1 0 0 14 Kayle
6 3 0 1 13 Rammus
7 3 0 0 13 Pantheon
8 2 0 0 12 Samira
9 2 0 0 12 Zyra
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 14430 21980 14430
1 3232 23060 3232
2 1281 3718 1281
3 7637 13081 7637
4 706 5101 706
5 4886 5961 4886
6 0 4393 0
7 3066 3066 3066
8 0 0 0
9 0 114 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 0 0 False False
1 3 0 2 False False
2 1 1 0 False True
3 0 0 1 True False
4 0 6 0 True False
5 5 0 0 False False
6 3 0 1 False False
7 8 1 0 False False
8 8 0 0 False False
9 7 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False True False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 10933 TOP 2
1 False 8824 JUNGLE 1
2 False 11700 MIDDLE 0
3 False 13824 BOTTOM 1
4 False 8720 UTILITY 0
5 False 9462 TOP 0
6 False 8941 JUNGLE 0
7 False 8387 MIDDLE 0
8 False 6141 BOTTOM 0
9 False 6173 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1054 6632 3158 3110 3211 0 3340
1 0 3006 2031 6691 3057 3133 1018 3340
2 0 3100 3152 3041 3020 1058 0 3340
3 0 1037 6671 3006 3508 3036 1038 3340
4 0 4643 3853 2031 3108 3117 3157 3364
5 4 3006 1056 3115 4633 3057 3113 3340
6 4 3047 6662 2031 3075 1011 1033 3340
7 4 6692 2033 3111 3071 0 0 3363
8 4 6673 3047 3134 0 0 1055 3340
9 4 3853 2420 3020 6653 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 2 0 1
1 0 2 0 1
2 1 12 11 3
3 1 14 14 2
4 0 1 0 1
5 1 3 3 1
6 0 2 0 1
7 1 2 2 1
8 0 0 0 0
9 0 2 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 665 7572 1831
1 751 34075 4027
2 1546 114383 21473
3 0 2561 2301
4 0 27318 11005
5 692 90606 7955
6 805 62634 3615
7 742 5606 475
8 436 4342 186
9 627 30535 8893
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 6373 24 0
1 5395 114 0
2 4000 12 0
3 3239 16 0
4 3714 4 0
5 6988 20 0
6 9364 87 0
7 10744 0 0
8 8830 0 0
9 7233 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 156800
1 0 2 73559
2 0 3 18326
3 0 4 144167
4 0 5 3924
5 0 6 41545
6 0 7 23481
7 0 8 92709
8 0 9 41626
9 0 10 3344
physicalDamageDealtToChampions physicalDamageTaken role \
0 7815 17962 SOLO
1 5096 13906 NONE
2 2589 10327 DUO
3 15708 4087 DUO
4 1198 4193 SUPPORT
5 4148 15194 SOLO
6 1215 10620 NONE
7 13293 11093 SOLO
8 1227 8068 CARRY
9 1048 5044 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 6 3 12 259
1 17 11 4 4 62
2 3 4 4 14 265
3 2 7 2 4 293
4 5 3 4 4 294
5 4 4 2 12 113
6 4 4 16 11 263
7 4 4 2 12 352
8 5 7 3 4 87
9 3 4 4 14 183
summonerName teamEarlySurrendered teamId teamPosition \
0 Your Turret False 100 TOP
1 UserNameBrand False 100 JUNGLE
2 REQUlS False 100 MIDDLE
3 Hero Doge False 100 BOTTOM
4 CynicalSynapsis False 100 UTILITY
5 Lougeemlin False 200 TOP
6 StalwartHide False 200 JUNGLE
7 Rotome False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 Coolgum15 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 10 1696 164373 9647
1 21 1696 125190 9769
2 24 1696 134798 24580
3 31 1696 149723 18159
4 56 1696 31242 12203
5 4 1696 143894 12103
6 27 1696 97867 5714
7 17 1696 98316 13768
8 0 1696 46976 1413
9 22 1696 36424 10526
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 24706 1955 179 682
1 19603 7996 12 775
2 14593 4518 164 230
3 7327 4485 169 80
4 8437 2500 9 107
5 22745 6117 183 200
6 20174 5822 47 948
7 22161 3871 155 36
8 17037 3299 102 1
9 12378 1207 23 160
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 121 1 0
1 78 1 17555
2 46 1 2088
3 0 2 2995
4 0 1 0
5 159 3 11741
6 99 5 11751
7 258 1 0
8 188 3 1008
9 129 1 2544
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 370 5 2
1 646 302 1 2
2 518 266 1 2
3 150 0 3 2
4 0 530 1 2
5 0 562 0 11
6 884 190 0 11
7 0 324 1 11
8 0 138 0 11
9 584 100 0 11
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 13 0 0 7 True
1 18 0 0 9 True
2 19 1 0 7 True
3 13 0 1 8 True
4 81 4 6 33 True
5 12 0 0 8 False
6 14 0 0 8 False
7 10 2 0 5 False
8 9 0 0 7 False
9 23 0 2 13 False ,
assists baronKills bountyLevel champLevel championName \
0 6 0 0 18 Fiora
1 10 0 0 16 XinZhao
2 7 0 3 17 Leblanc
3 9 0 0 15 Ashe
4 10 0 0 13 Thresh
5 9 0 0 18 DrMundo
6 11 0 3 17 Khazix
7 5 1 10 18 Kayle
8 12 0 1 16 Samira
9 15 0 1 16 Zyra
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 9144 9344 9144
1 2601 22042 2601
2 2259 4852 2259
3 499 6176 499
4 330 2111 330
5 7049 11217 7049
6 2189 20175 2189
7 8345 25854 8345
8 2007 4631 2007
9 1064 6897 1064
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 8 2 0 True False
1 7 1 0 False True
2 2 1 1 False False
3 4 1 1 False False
4 6 0 0 False False
5 4 0 0 False False
6 8 0 2 False False
7 3 1 1 False False
8 7 0 0 False False
9 5 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 14469 TOP 1
1 False 14021 JUNGLE 0
2 False 13101 MIDDLE 0
3 False 12587 BOTTOM 0
4 False 8566 UTILITY 0
5 False 15355 TOP 0
6 False 12547 JUNGLE 0
7 False 17783 MIDDLE 1
8 False 12128 BOTTOM 0
9 False 10237 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 3053 3074 3047 3026 6630 0 3340
1 1 3006 3100 6609 4636 3115 1033 3364
2 1 3157 6656 3135 3020 3165 0 3340
3 1 3035 6672 2055 3006 3031 3046 3363
4 1 3860 3190 3050 3117 1057 3066 3364
5 1 3065 6662 3075 3009 4401 3077 3340
6 1 6691 2031 3158 6676 3814 1033 3340
7 1 4633 3041 3006 3115 3089 0 3363
8 1 6673 3047 6676 3035 1018 1055 3340
9 1 3853 3157 1011 3020 6653 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 3 0 1
1 3 9 3 1
2 2 6 3 1
3 2 5 2 2
4 1 4 2 1
5 2 5 2 1
6 1 4 3 2
7 1 11 10 2
8 0 3 0 1
9 1 4 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 663 2409 989
1 598 78655 7647
2 909 123804 16850
3 921 2413 2213
4 711 11262 5514
5 634 81810 20858
6 660 9043 838
7 1260 209535 20775
8 657 11526 1423
9 514 64330 26417
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 22417 10 0
1 15564 165 0
2 11526 4 1
3 10428 20 0
4 12584 1 0
5 9512 4 0
6 6702 168 0
7 7475 41 0
8 6754 8 0
9 5553 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 201089
1 0 2 117942
2 0 3 18341
3 0 4 132241
4 0 5 4436
5 0 6 130019
6 0 7 159635
7 0 8 51695
8 0 9 97136
9 0 10 3942
physicalDamageDealtToChampions physicalDamageTaken role \
0 19691 18784 SOLO
1 14415 22647 NONE
2 1824 10318 SOLO
3 14846 6017 CARRY
4 502 5673 SUPPORT
5 8556 25348 SOLO
6 13383 24640 NONE
7 3723 15218 SOLO
8 5057 12205 CARRY
9 802 6759 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 3 12 241
1 5 4 16 11 236
2 4 4 4 14 225
3 5 7 4 4 84
4 3 4 3 14 92
5 6 6 4 12 263
6 20 11 5 4 271
7 4 4 4 12 352
8 6 7 4 4 87
9 5 4 6 14 183
summonerName teamEarlySurrendered teamId teamPosition \
0 ONNNIII CHAAANNN False 100 TOP
1 ChaosRepulsor False 100 JUNGLE
2 isobasso False 100 MIDDLE
3 DaFlamingPanda False 100 BOTTOM
4 The Spicy Noodle False 100 UTILITY
5 StalwartHide False 200 TOP
6 SugoiOverlord False 200 JUNGLE
7 Rotome False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 Coolgum15 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 11 2108 227089 31116
1 25 2108 210493 23560
2 25 2108 157880 19054
3 42 2108 147218 18405
4 29 2108 19912 6611
5 23 2108 222568 29414
6 6 2108 177968 15313
7 8 2108 302525 25280
8 0 2108 128983 6577
9 64 2108 82882 28200
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 42157 14957 284 209
1 39060 20259 37 562
2 22105 4458 231 55
3 16700 2926 218 648
4 18887 1627 40 91
5 43635 15746 264 1420
6 33093 14144 17 186
7 24275 15220 258 372
8 20446 4406 180 3
9 12973 1008 48 243
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 334 3 23589
1 236 1 13896
2 53 1 15735
3 112 4 12563
4 152 3 4213
5 153 1 10738
6 268 1 9289
7 83 5 41295
8 221 3 20320
9 166 1 14610
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 10435 955 3 8
1 1498 848 2 8
2 380 260 1 8
3 1345 254 0 8
4 594 630 0 8
5 0 8775 2 6
6 1091 1750 2 6
7 781 1581 3 6
8 96 1486 1 6
9 980 660 0 6
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 28 2 0 12 False
1 29 1 1 9 False
2 40 1 2 13 False
3 21 2 1 8 False
4 61 0 6 25 False
5 20 0 1 12 True
6 21 0 2 7 True
7 27 1 5 7 True
8 20 0 1 12 True
9 58 1 5 24 True ,
assists baronKills bountyLevel champLevel championName \
0 3 0 0 16 Volibear
1 4 0 0 13 Khazix
2 3 0 0 18 Kayle
3 5 0 2 15 Jhin
4 2 0 1 14 Xerath
5 5 1 1 18 Singed
6 11 1 0 17 Rumble
7 7 0 2 18 Galio
8 9 0 0 16 Ashe
9 5 0 1 15 Pyke
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 7036 11216 7036
1 172 9254 172
2 2903 4043 2903
3 1535 2924 1535
4 477 1490 477
5 736 17334 736
6 778 43382 778
7 893 6145 893
8 5110 11465 5110
9 544 2969 544
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 1 0 False False
1 5 1 2 False False
2 4 1 0 False False
3 4 0 0 False False
4 7 0 0 False False
5 2 0 0 False False
6 1 5 4 False False
7 0 0 0 False False
8 6 0 0 False True
9 5 2 0 True False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False True False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 12122 TOP 0
1 True 9681 JUNGLE 0
2 True 13416 MIDDLE 0
3 True 11600 BOTTOM 0
4 True 9630 UTILITY 0
5 True 13131 TOP 0
6 True 13330 JUNGLE 0
7 True 11809 MIDDLE 0
8 True 15285 BOTTOM 0
9 True 14342 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3108 6632 3158 3115 3110 3067 3340
1 0 2003 6691 3158 6676 1037 0 3340
2 0 3041 3006 0 3115 4633 3089 3363
3 0 6671 3009 6676 3094 3123 1055 3340
4 0 3853 2420 3020 4628 3108 6655 3340
5 0 3916 1082 3742 4637 6653 3111 3364
6 0 3020 3108 3157 4636 3067 4637 3364
7 0 3152 3157 3165 1011 3047 1052 3340
8 0 3153 6671 3006 3046 3085 1038 3340
9 0 6693 3142 3117 3179 6695 3857 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 1 0 1
1 1 2 2 1
2 0 3 0 1
3 1 3 2 1
4 0 5 0 1
5 1 5 4 1
6 0 1 0 1
7 1 2 2 1
8 2 7 2 1
9 3 12 6 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 515 95626 5245
1 1310 7587 152
2 943 130036 5361
3 528 3235 659
4 418 84594 21400
5 1100 147417 11404
6 1922 192168 14096
7 0 147697 16051
8 409 6023 4327
9 675 0 0
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 18039 24 0
1 6232 136 0
2 14214 26 0
3 5908 4 0
4 3281 1 0
5 5506 16 0
6 8093 188 0
7 2330 14 0
8 9618 8 0
9 11490 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 83577
1 0 2 103280
2 0 3 51056
3 0 4 112464
4 0 5 1286
5 0 6 9349
6 0 7 26702
7 0 8 6354
8 0 9 151243
9 0 10 39682
physicalDamageDealtToChampions physicalDamageTaken role \
0 6525 8495 DUO
1 6097 14285 NONE
2 2007 7276 DUO
3 7932 9521 CARRY
4 506 8907 SUPPORT
5 441 13233 SOLO
6 446 17489 NONE
7 54 7752 SOLO
8 13048 9860 CARRY
9 11736 12763 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 4 12 263
1 2 4 19 11 163
2 4 4 3 12 352
3 5 7 4 4 87
4 5 4 5 14 183
5 7 14 5 6 186
6 17 11 3 4 196
7 4 4 4 12 37
8 4 4 4 7 78
9 5 4 5 14 281
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 StalwartHide False 100 TOP 16
1 Dorito Taco False 100 JUNGLE 1
2 Rotome False 100 MIDDLE 5
3 Dublaiar False 100 BOTTOM 24
4 Coolgum15 False 100 UTILITY 25
5 Randolph LS False 200 TOP 16
6 Draw Me Closer False 200 JUNGLE 9
7 TALOOK False 200 MIDDLE 24
8 2002 hundayi False 200 BOTTOM 42
9 TR Ankara 06 False 200 UTILITY 29
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 2161 199642 11771
1 2161 123591 6627
2 2161 195181 7794
3 2161 118137 8591
4 2161 86719 22745
5 2161 157958 13038
6 2161 235951 15793
7 2161 158282 16105
8 2161 167270 17376
9 2161 50677 14676
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 28473 3802 229 500
1 21741 10154 21 167
2 22629 7063 270 246
3 15783 4080 180 106
4 12915 824 64 179
5 18850 2909 199 92
6 25614 11604 51 496
7 10227 1285 205 77
8 20012 2181 220 686
9 25076 7824 58 139
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 271 1 20438
1 201 1 12724
2 191 4 14087
3 101 2 2437
4 176 1 838
5 52 1 1192
6 54 1 17080
7 0 1 4230
8 201 2 10003
9 165 1 10995
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 1938 2 4
1 378 1224 0 4
2 424 1139 1 4
3 0 353 1 4
4 838 727 0 4
5 1192 110 0 4
6 1250 32 2 4
7 0 143 0 4
8 0 533 2 4
9 2940 821 0 4
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 17 1 1 12 False
1 22 1 3 9 False
2 12 1 1 8 False
3 18 0 6 10 False
4 42 0 5 26 False
5 29 0 7 5 True
6 43 5 5 13 True
7 21 0 1 11 True
8 22 0 1 12 True
9 76 4 9 37 True ,
assists baronKills bountyLevel champLevel championName \
0 8 0 0 16 Anivia
1 9 0 1 16 Skarner
2 6 0 3 18 Yasuo
3 11 0 0 15 Caitlyn
4 13 0 0 12 Blitzcrank
5 5 0 0 18 Garen
6 13 0 3 16 Zac
7 9 0 0 15 Ahri
8 12 0 0 17 Xayah
9 20 0 0 14 Morgana
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3005 7689 3005
1 373 13130 373
2 8205 8205 8205
3 2483 3227 2483
4 578 578 578
5 4573 8858 4573
6 211 13869 211
7 0 677 0
8 4168 18187 4168
9 2048 4402 2048
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 2 0 False False
1 5 2 2 False False
2 7 0 0 False False
3 9 3 0 False False
4 10 3 0 False False
5 6 1 0 False False
6 5 1 1 False False
7 11 2 0 False False
8 5 0 2 True False
9 6 3 0 False True
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False True False
9 True False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 14563 TOP 0
1 False 12840 JUNGLE 1
2 False 19236 MIDDLE 1
3 False 11861 BOTTOM 0
4 False 7705 UTILITY 0
5 False 14906 TOP 0
6 False 14198 JUNGLE 0
7 False 10295 MIDDLE 0
8 False 17420 BOTTOM 0
9 False 10638 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3040 6653 3020 4637 3157 2055 3340
1 0 6664 4401 3742 1029 1033 3158 3364
2 0 3072 6673 3065 3006 3031 1053 3340
3 0 0 6671 3006 3036 0 3095 3363
4 0 3109 3050 3860 3009 4642 0 3364
5 2 4401 6631 3006 3742 3033 1036 3340
6 2 3047 3143 3068 3075 3065 1029 3364
7 2 1052 6656 3157 3158 3108 3067 3340
8 2 6672 3508 3139 1038 3006 3031 3363
9 2 3157 3853 3107 3158 3108 6617 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 8 6 2
1 1 5 3 2
2 4 16 6 1
3 1 4 2 1
4 0 0 0 0
5 1 8 6 2
6 2 7 3 1
7 1 5 2 1
8 3 12 6 2
9 1 4 3 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 1288 167386 41301
1 738 71499 3981
2 684 16781 1885
3 427 2818 1176
4 407 7811 5891
5 601 2888 663
6 871 147556 18652
7 484 55516 9066
8 1019 0 0
9 766 31016 16492
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 7289 15 0
1 8301 156 0
2 16076 39 0
3 5144 24 0
4 9776 0 0
5 16391 17 0
6 13619 132 0
7 9771 4 0
8 8356 48 0
9 9080 4 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 10544
1 0 2 71875
2 0 3 276024
3 0 4 127007
4 0 5 5925
5 0 6 169388
6 0 7 19542
7 0 8 14327
8 0 9 250639
9 0 10 5076
physicalDamageDealtToChampions physicalDamageTaken role \
0 2062 12272 SOLO
1 4788 19831 NONE
2 50698 17961 SOLO
3 18390 13547 CARRY
4 2397 15376 SUPPORT
5 16495 23789 SOLO
6 1118 30662 NONE
7 1458 21014 SOLO
8 29354 19190 CARRY
9 1858 14080 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 12 4 4 199
1 4 4 27 11 62
2 4 4 5 14 322
3 3 4 6 7 54
4 6 4 9 14 32
5 6 4 9 14 148
6 6 4 28 11 183
7 4 4 4 14 87
8 5 4 6 7 134
9 8 14 2 4 175
summonerName teamEarlySurrendered teamId teamPosition \
0 Trevyy False 100 TOP
1 Brigatone False 100 JUNGLE
2 ZedMainAccount False 100 MIDDLE
3 I am Ocean Soul False 100 BOTTOM
4 Zer0Mental False 100 UTILITY
5 WestWing34 False 200 TOP
6 Coolgum15 False 200 JUNGLE
7 daddy yeri False 200 MIDDLE
8 VantageMatt False 200 BOTTOM
9 JuicyJasmine False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 79 2307 187074 45153
1 42 2307 160983 10312
2 72 2307 299935 57503
3 17 2307 132581 20530
4 33 2307 20915 9996
5 47 2307 184946 24661
6 58 2307 184269 20843
7 22 2307 107245 13550
8 29 2307 262655 30787
9 105 2307 38139 20397
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 22915 2204 200 1335
1 31009 9840 24 694
2 38080 8041 259 315
3 21498 6400 139 73
4 26783 1778 28 118
5 41593 5239 222 339
6 50575 53470 63 614
7 31608 5342 112 94
8 28834 9637 249 74
9 24689 13996 19 152
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 257 1 9143
1 178 1 17607
2 317 1 7129
3 265 4 2755
4 300 5 7178
5 154 1 12670
6 184 5 17170
7 308 1 37401
8 185 4 12015
9 222 5 2046
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1788 3353 2 4
1 1543 2876 0 4
2 4919 4041 3 4
3 963 2806 0 4
4 1707 1630 0 4
5 7503 1412 2 7
6 1072 6294 1 7
7 3025 822 0 7
8 1432 1288 1 7
9 2046 1528 0 7
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 34 3 2 11 True
1 42 2 7 8 True
2 22 0 2 12 True
3 34 3 1 16 True
4 78 3 10 29 True
5 19 3 1 11 False
6 11 1 3 1 False
7 23 2 1 13 False
8 22 0 6 8 False
9 60 3 6 32 False ,
assists baronKills bountyLevel champLevel championName \
0 1 0 0 11 Sett
1 2 0 0 10 Diana
2 1 0 0 12 AurelionSol
3 5 0 0 11 Jinx
4 7 0 0 9 Nautilus
5 5 0 5 14 Garen
6 10 0 7 12 Zac
7 3 0 0 11 Zed
8 1 0 1 12 Samira
9 10 0 0 10 Bard
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 0 0 0
1 0 13221 0
2 142 374 142
3 3119 4448 3119
4 231 778 231
5 3450 5567 3450
6 334 7527 334
7 164 4443 164
8 2286 5271 2286
9 335 335 335
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 6 2 0 False False
1 8 0 1 False False
2 4 0 0 False True
3 5 2 0 False False
4 4 1 0 False False
5 1 2 0 False False
6 0 2 1 False False
7 6 1 1 False False
8 3 0 0 False False
9 6 3 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 5313 TOP 0
1 True 6554 JUNGLE 0
2 True 8570 MIDDLE 0
3 True 7971 BOTTOM 0
4 True 5731 UTILITY 0
5 True 10695 TOP 0
6 True 8616 JUNGLE 0
7 True 7096 MIDDLE 0
8 True 8007 BOTTOM 0
9 True 4990 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 6631 3047 1055 0 0 0 3340
1 0 4636 1026 3020 1042 1042 0 3364
2 0 4636 3157 2033 3020 1082 1052 3340
3 0 1055 6672 3006 3085 0 0 3340
4 0 3859 3190 2031 3117 3067 1029 3364
5 0 3742 6631 3006 0 0 0 3340
6 0 3076 2031 3068 3111 3211 3067 3364
7 0 6695 2031 1001 0 6693 0 3340
8 0 1055 6673 3047 3134 1037 1018 3340
9 0 3853 3158 0 2031 1082 1029 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 0 0 0
1 0 3 0 1
2 1 6 3 2
3 1 4 2 1
4 1 3 3 1
5 2 10 5 2
6 1 7 7 2
7 0 3 0 1
8 1 7 6 2
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 519 0 0
1 397 65371 8934
2 447 58722 9362
3 679 885 325
4 749 7164 4709
5 754 1408 276
6 0 72455 10575
7 313 5395 390
8 525 5452 1149
9 238 5711 4131
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 1368 12 0
1 5418 102 0
2 3815 0 0
3 3324 0 0
4 3466 0 0
5 2887 8 0
6 6620 94 0
7 5895 12 0
8 4298 8 0
9 4885 4 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 46467
1 0 2 16946
2 0 3 9774
3 0 4 63640
4 0 5 5749
5 0 6 90014
6 0 7 14533
7 0 8 59838
8 0 9 57065
9 0 10 1953
physicalDamageDealtToChampions physicalDamageTaken role \
0 6155 10910 SOLO
1 1474 11246 NONE
2 1662 5862 SOLO
3 10854 7692 CARRY
4 2519 7224 SUPPORT
5 14715 12471 SOLO
6 1520 11725 NONE
7 4619 4527 SOLO
8 8620 5673 CARRY
9 1413 5418 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 1 12 3 4 107
1 13 11 2 4 138
2 3 14 2 4 414
3 3 7 3 4 178
4 5 14 3 4 134
5 3 4 5 14 148
6 3 4 15 11 183
7 5 7 3 4 263
8 3 7 2 4 113
9 4 14 3 4 196
summonerName teamEarlySurrendered teamId teamPosition \
0 Worse Connection False 100 TOP
1 TheCommieKid False 100 JUNGLE
2 Twisted Gamer False 100 MIDDLE
3 BradleyDaBaller False 100 BOTTOM
4 agrimit False 100 UTILITY
5 WestWing34 False 200 TOP
6 Coolgum15 False 200 JUNGLE
7 Radio Wolfy False 200 MIDDLE
8 Kaorinite False 200 BOTTOM
9 Slothtasticc False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 18 1247 49018 6705
1 8 1247 94124 10950
2 15 1247 68850 11378
3 11 1247 69480 12583
4 50 1247 17289 7719
5 39 1247 99364 18067
6 36 1247 94205 12716
7 1 1247 68259 5010
8 1 1247 67437 9770
9 27 1247 8316 6197
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 14854 665 97 115
1 17157 3710 10 145
2 10126 1460 136 82
3 11346 2612 150 32
4 11192 0 20 171
5 16841 3653 152 171
6 18854 21599 12 353
7 10842 1974 109 31
8 10415 3039 102 1
9 10787 2501 2 100
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 142 1 2550
1 169 1 11807
2 106 1 354
3 123 2 4954
4 72 0 4375
5 35 1 7941
6 0 5 7216
7 131 3 3025
8 65 2 4920
9 96 4 652
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 549 2575 0 2
1 541 492 0 2
2 354 448 0 2
3 1403 330 1 2
4 490 501 0 2
5 3075 1482 1 1
6 620 508 0 1
7 0 420 0 1
8 0 443 0 1
9 652 484 1 1
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 17 2 1 8 False
1 17 0 3 1 False
2 9 0 1 5 False
3 14 2 2 7 False
4 21 1 1 9 False
5 9 2 1 8 True
6 9 2 1 2 True
7 11 1 1 8 True
8 8 0 2 4 True
9 26 3 0 13 True ,
assists baronKills bountyLevel champLevel championName \
0 3 0 0 12 Aatrox
1 8 0 0 12 LeeSin
2 3 0 5 13 Veigar
3 10 0 1 13 Jhin
4 14 0 2 12 Zyra
5 6 0 0 14 Viego
6 5 0 0 12 Poppy
7 4 0 0 12 Yasuo
8 6 0 0 10 Senna
9 2 0 0 11 Swain
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 661 661 661
1 269 18327 269
2 612 612 612
3 8204 18923 8204
4 2022 7107 2022
5 2820 4051 2820
6 397 950 397
7 1888 1888 1888
8 0 573 0
9 0 1004 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 6 1 0 False False
1 4 3 2 False False
2 1 1 0 False False
3 2 0 0 True False
4 2 0 1 False True
5 4 1 0 False False
6 7 0 0 False False
7 5 2 0 False False
8 8 0 0 False False
9 6 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 6213 TOP 0
1 True 7257 JUNGLE 0
2 True 8926 MIDDLE 0
3 True 11444 BOTTOM 0
4 True 9869 UTILITY 0
5 True 10610 TOP 0
6 True 7761 JUNGLE 0
7 True 7836 MIDDLE 0
8 True 5909 UTILITY 0
9 True 6975 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1055 3047 6630 0 0 0 3340
1 0 6692 3047 3067 1036 1036 0 3340
2 0 1056 3157 6655 3020 0 0 3340
3 0 1055 6671 3009 6676 1037 1018 3340
4 0 3853 3157 3020 0 2055 6653 3364
5 0 3153 2055 6632 1037 3044 3111 3340
6 0 6632 2031 3111 1031 3066 1028 3340
7 0 1055 6673 3006 3123 1057 1042 3340
8 0 3864 3009 6672 3070 1042 0 3340
9 0 1056 2421 3020 1082 2031 6653 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 0 2 0 1
1 0 1 0 1
2 2 7 5 2
3 2 11 5 1
4 3 9 4 2
5 2 6 4 2
6 1 4 2 1
7 0 2 0 1
8 0 1 0 1
9 1 2 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 362 0 0
1 654 25448 1226
2 994 59814 8178
3 611 4923 1073
4 627 56220 17825
5 1059 2562 2242
6 407 8745 664
7 553 5771 1196
8 391 114 114
9 387 41139 6185
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 2159 0 0
1 1242 98 0
2 1567 12 0
3 3789 12 0
4 2363 8 0
5 3874 4 0
6 7625 99 0
7 7160 6 0
8 6400 4 0
9 4541 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 49938
1 0 2 58765
2 0 3 9045
3 0 4 111194
4 0 5 3112
5 0 6 87951
6 0 7 80783
7 0 8 92857
8 0 9 13922
9 0 10 9519
physicalDamageDealtToChampions physicalDamageTaken role \
0 8014 14302 SOLO
1 4509 15677 NONE
2 393 6375 SOLO
3 17884 7367 CARRY
4 841 5131 SUPPORT
5 14159 18452 DUO
6 7179 11509 NONE
7 6285 7866 DUO
8 5475 4940 SUPPORT
9 692 10749 CARRY
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 2 12 38
1 2 4 11 11 249
2 3 4 3 14 129
3 2 4 4 7 183
4 3 4 5 3 148
5 3 12 3 4 167
6 0 4 10 11 154
7 3 4 2 14 130
8 5 7 3 4 176
9 2 14 3 4 116
summonerName teamEarlySurrendered teamId teamPosition \
0 Sunlightfang False 100 TOP
1 OIIivander False 100 JUNGLE
2 Kifes False 100 MIDDLE
3 Coolgum15 False 100 BOTTOM
4 WestWing34 False 100 UTILITY
5 dmndbck False 200 TOP
6 Lazerbaby9000 False 200 JUNGLE
7 fighterman1000 False 200 MIDDLE
8 xiaoxiaosong123 False 200 UTILITY
9 fallinloverr False 200 BOTTOM
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 15 1402 51578 8014
1 6 1402 95592 5972
2 7 1402 71980 9088
3 22 1402 117543 18957
4 46 1402 59485 18689
5 20 1402 97554 16401
6 23 1402 97205 8327
7 10 1402 99089 7941
8 10 1402 14161 5714
9 19 1402 52564 7242
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 16771 4324 79 108
1 17067 5967 6 290
2 8152 1116 122 27
3 11711 3697 136 91
4 7706 954 28 225
5 22565 6417 139 58
6 19504 5475 28 464
7 15133 2395 144 112
8 11340 4256 7 22
9 15351 1376 112 177
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 159 1 1640
1 104 1 11378
2 35 1 3121
3 54 3 1425
4 49 1 152
5 121 1 7040
6 144 1 7677
7 171 1 460
8 100 3 123
9 97 1 1905
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 309 1 2
1 235 147 0 2
2 516 210 0 2
3 0 553 4 2
4 22 211 0 2
5 0 238 1 5
6 483 368 0 5
7 460 106 0 5
8 123 0 0 5
9 365 60 0 5
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 16 1 1 8 True
1 26 3 0 9 True
2 17 1 1 7 True
3 9 0 1 4 True
4 10 2 0 7 True
5 19 3 1 6 False
6 14 0 2 6 False
7 22 2 1 8 False
8 15 0 0 10 False
9 8 0 0 5 False ,
assists baronKills bountyLevel champLevel championName \
0 1 0 0 8 Darius
1 2 0 0 9 Evelynn
2 3 0 0 10 Pantheon
3 2 0 0 9 KogMaw
4 2 0 0 8 Lulu
5 5 0 4 11 Riven
6 6 0 3 10 Warwick
7 1 0 2 11 Viego
8 10 0 1 10 Jinx
9 11 0 2 10 Sona
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 0 214 0
1 0 1190 0
2 0 0 0
3 0 0 0
4 0 0 0
5 3167 3167 3167
6 1412 12215 1412
7 2988 9566 2988
8 4069 4069 4069
9 1288 1288 1288
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 0 0 False False
1 3 0 0 False False
2 4 1 0 False False
3 4 0 0 False False
4 5 0 0 False False
5 1 2 0 False True
6 3 1 1 True False
7 3 0 1 False False
8 2 0 0 False False
9 1 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False True False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 4212 TOP 0
1 True 4542 JUNGLE 0
2 True 6737 MIDDLE 0
3 True 4994 BOTTOM 0
4 True 4347 UTILITY 0
5 True 9107 TOP 0
6 True 7720 JUNGLE 0
7 True 6453 MIDDLE 0
8 True 6484 BOTTOM 0
9 True 5642 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1055 3051 3047 3067 0 0 3340
1 0 3152 2031 0 2422 0 0 3340
2 0 2033 6692 3047 3134 0 0 3340
3 0 1055 3046 3047 1036 0 0 3340
4 0 3853 2065 1004 0 1001 1029 3340
5 0 6630 0 3071 1036 0 3158 3340
6 0 6632 3077 1001 0 0 0 3364
7 0 1083 6632 0 0 3006 0 3364
8 0 1055 6672 0 1001 1042 0 3340
9 0 3853 2065 2055 3158 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 1 0 1
1 0 1 0 1
2 2 5 3 1
3 0 1 0 1
4 0 2 0 1
5 2 9 5 3
6 2 6 3 3
7 2 4 2 1
8 0 2 0 1
9 1 2 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 208 0 0
1 525 36634 1643
2 534 1007 74
3 465 13458 4897
4 484 6501 1937
5 722 0 0
6 402 22502 3672
7 359 1307 238
8 468 972 310
9 487 9670 4152
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 1504 0 0
1 1918 56 0
2 2107 0 0
3 1428 0 0
4 2471 0 0
5 834 4 0
6 2120 72 0
7 952 12 0
8 3841 0 0
9 1779 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 30050
1 0 2 8175
2 0 3 38125
3 0 4 25583
4 0 5 2662
5 0 6 64659
6 0 7 35475
7 0 8 48901
8 0 9 54912
9 0 10 3218
physicalDamageDealtToChampions physicalDamageTaken role \
0 4064 9003 SUPPORT
1 80 8251 SUPPORT
2 9435 7125 SUPPORT
3 2962 6675 DUO
4 781 5059 SUPPORT
5 10223 9060 DUO
6 3248 12321 SUPPORT
7 3828 7866 SUPPORT
8 6972 4805 SUPPORT
9 1188 2132 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 12 2 4 42
1 11 11 0 4 31
2 3 14 3 4 60
3 2 4 3 7 170
4 1 4 2 14 36
5 4 14 2 4 194
6 11 11 3 4 143
7 4 14 2 4 71
8 2 4 2 7 183
9 1 4 3 3 148
summonerName teamEarlySurrendered teamId teamPosition \
0 laotionism False 100 TOP
1 GreanEggzAndSpam False 100 JUNGLE
2 DarthDynamus False 100 MIDDLE
3 FlossyAF False 100 BOTTOM
4 RATATATATAHAHAHA False 100 UTILITY
5 BDMRWISTERIA False 200 TOP
6 LolLTHots False 200 JUNGLE
7 Yœn False 200 MIDDLE
8 Coolgum15 False 200 BOTTOM
9 WestWing34 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 7 1031 30268 4282
1 3 1031 51149 1923
2 17 1031 41333 10129
3 8 1031 48971 8879
4 21 1031 9501 3056
5 19 1031 65541 10865
6 18 1031 68132 7555
7 5 1031 52742 4755
8 9 1031 57695 7949
9 9 1031 12888 5341
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 11414 874 57 47
1 10465 3802 14 51
2 9990 1178 84 35
3 8465 2053 101 248
4 7840 198 8 224
5 10382 2060 107 72
6 15238 7814 23 246
7 9014 3072 89 20
8 9012 2752 109 41
9 4461 3395 10 28
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 91 1 218
1 67 1 6340
2 86 1 2200
3 71 2 9929
4 78 3 338
5 32 1 882
6 67 1 10154
7 69 1 2533
8 30 3 1810
9 16 5 0
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 218 906 0 5
1 200 295 0 5
2 620 756 0 5
3 1019 361 0 5
4 338 310 0 5
5 642 487 1 0
6 634 797 1 0
7 688 196 1 0
8 666 364 1 0
9 0 550 1 0
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 3 0 1 2 False
1 7 0 1 5 False
2 9 1 0 3 False
3 7 0 0 5 False
4 14 0 0 8 False
5 10 2 1 7 True
6 11 1 0 2 True
7 10 0 1 4 True
8 5 0 0 4 True
9 8 1 0 4 True ,
assists baronKills bountyLevel champLevel championName \
0 7 0 0 16 Quinn
1 4 1 0 14 Diana
2 4 0 4 18 Yasuo
3 7 0 3 15 Ezreal
4 12 0 2 14 Malphite
5 1 0 0 13 Kayle
6 13 0 0 16 Nunu
7 10 0 0 14 Irelia
8 14 0 0 14 Sivir
9 13 0 0 13 Nautilus
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 4005 6042 4005
1 3945 42759 3945
2 6492 24437 6492
3 2819 4783 2819
4 827 1628 827
5 2880 5620 2880
6 0 5987 0
7 3869 4833 3869
8 2532 3175 2532
9 509 3343 509
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 0 0 False False
1 5 8 2 False False
2 10 0 2 False True
3 6 0 0 False False
4 9 1 0 False False
5 8 0 0 False False
6 6 2 0 False False
7 11 0 0 False False
8 5 0 0 False False
9 5 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False True False
2 True False False
3 False False False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 8856 TOP 0
1 False 8674 JUNGLE 0
2 False 18711 MIDDLE 1
3 False 12327 BOTTOM 0
4 False 9234 UTILITY 0
5 False 8858 TOP 0
6 False 13306 JUNGLE 0
7 False 10813 MIDDLE 0
8 False 12180 BOTTOM 0
9 False 8196 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 6672 2031 3006 3095 1036 0 3340
1 0 3115 1028 3020 2055 3145 1026 3364
2 0 2420 6673 3072 3006 6333 3031 3340
3 0 3042 6632 2031 3047 3153 0 3363
4 0 3860 6662 3047 3075 3082 1029 3364
5 1 3115 3006 4633 0 0 0 3340
6 1 3143 3068 3075 3111 3211 3067 3364
7 1 3123 6673 3047 3153 1031 1036 3340
8 1 3042 3158 6691 6676 3123 3086 3340
9 1 3860 3190 3117 2055 3050 3076 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 1 0 1
1 0 0 0 0
2 6 21 5 3
3 3 9 3 1
4 2 4 2 1
5 0 1 0 1
6 3 12 5 2
7 2 5 2 2
8 3 11 6 2
9 2 5 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 832 1440 225
1 632 98910 6888
2 253 10634 3258
3 395 13442 6355
4 342 24015 8494
5 804 71749 8379
6 619 61612 15333
7 312 11242 3668
8 753 428 428
9 559 13394 5824
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 6816 0 0
1 5437 123 0
2 10513 44 1
3 6262 20 0
4 6574 4 0
5 1889 8 0
6 9343 71 0
7 6532 14 0
8 4432 0 0
9 4775 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 80358
1 0 2 27664
2 0 3 252130
3 0 4 110771
4 0 5 9828
5 0 6 36846
6 0 7 18218
7 0 8 104809
8 0 9 127882
9 0 10 9737
physicalDamageDealtToChampions physicalDamageTaken role \
0 6119 6185 NONE
1 689 16130 NONE
2 46651 22360 SOLO
3 19263 13391 CARRY
4 2024 8994 SUPPORT
5 2082 17546 DUO
6 2832 25492 NONE
7 13992 22632 DUO
8 19804 12625 CARRY
9 2575 15700 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 7 2 4 156
1 2 4 16 11 124
2 7 14 4 4 388
3 5 7 3 4 236
4 5 3 4 4 80
5 2 12 4 4 233
6 18 11 4 4 266
7 3 4 7 14 230
8 5 4 4 7 183
9 4 4 7 14 148
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 idoj False 100 TOP 15
1 IHazAStupid False 100 JUNGLE 6
2 SK0808 False 100 MIDDLE 51
3 Darkpegasus False 100 BOTTOM 3
4 ZenMurrell False 100 UTILITY 23
5 Frost Swallow False 200 TOP 4
6 Nearha False 200 JUNGLE 65
7 daniru False 200 MIDDLE 10
8 Coolgum15 False 200 BOTTOM 0
9 WestWing34 False 200 UTILITY 78
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1712 97933 6854
1 1712 154177 7959
2 1712 274304 52075
3 1712 125921 26234
4 1712 39631 11060
5 1712 114356 10733
6 1712 126905 19563
7 1712 118637 18806
8 1712 128587 20509
9 1712 32059 9017
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 13074 2188 160 62
1 21794 8665 23 144
2 35604 9956 207 196
3 20116 4143 157 80
4 16627 1903 44 551
5 19850 3219 186 111
6 36818 16818 75 397
7 29905 5671 151 54
8 17842 4879 174 0
9 20767 1612 42 357
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 182 1 16134
1 183 1 27603
2 309 1 11539
3 151 3 1708
4 179 1 5787
5 307 4 5761
6 163 1 47074
7 280 1 2585
8 168 2 276
9 168 5 8927
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 510 72 1 3
1 381 227 2 3
2 2164 2730 3 3
3 616 462 1 3
4 541 1059 0 3
5 271 415 1 7
6 1397 1982 0 7
7 1145 739 1 7
8 276 784 1 7
9 618 292 0 7
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 12 0 0 7 True
1 25 10 1 10 True
2 12 0 0 9 True
3 7 0 0 4 True
4 60 1 1 25 True
5 16 0 2 8 False
6 23 2 3 3 False
7 5 0 2 1 False
8 7 0 0 5 False
9 10 2 0 5 False ,
assists baronKills bountyLevel champLevel championName \
0 5 0 3 13 Malphite
1 3 0 1 11 Aatrox
2 1 0 0 13 Vladimir
3 1 0 1 11 Kalista
4 1 0 1 10 Senna
5 1 0 0 12 Tryndamere
6 2 0 0 10 Kayn
7 2 0 1 12 Yone
8 1 0 0 10 Jinx
9 4 0 0 10 Yuumi
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3265 3265 3265
1 2495 14129 2495
2 4760 5506 4760
3 2473 2473 2473
4 1619 1619 1619
5 1250 5034 1250
6 0 10386 0
7 0 0 0
8 1479 1479 1479
9 292 292 292
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 1 0 0 False True
1 2 2 2 False False
2 1 2 0 False False
3 2 0 0 False False
4 1 2 0 False False
5 5 0 0 False False
6 4 0 0 False False
7 4 0 0 False False
8 1 0 0 False False
9 0 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 True False False
1 False True False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 7396 TOP 0
1 True 7584 JUNGLE 0
2 True 7938 MIDDLE 0
3 True 6950 BOTTOM 0
4 True 5433 UTILITY 0
5 True 6561 TOP 0
6 True 5580 JUNGLE 0
7 True 6303 MIDDLE 0
8 True 6335 BOTTOM 0
9 True 4267 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 2033 3047 3068 0 3076 1028 3340
1 0 6630 3047 3044 2055 0 0 3364
2 0 2031 3152 3191 0 3020 1082 3363
3 0 1055 3006 6673 1018 0 0 3340
4 0 3864 6692 3009 0 0 0 3340
5 0 3057 6631 3158 3133 0 0 3340
6 0 6630 2031 1036 3047 0 0 3340
7 0 1054 3006 6673 3123 0 0 3340
8 0 1055 6672 3006 1042 0 0 3340
9 0 3853 6617 1052 2055 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 4 3 1
1 1 5 3 2
2 1 3 3 1
3 0 1 0 1
4 0 1 0 1
5 0 2 0 1
6 0 0 0 0
7 0 2 0 1
8 1 3 3 1
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 299 46787 13835
1 513 6763 0
2 989 78897 10731
3 576 1675 1160
4 1131 407 407
5 305 0 0
6 629 6144 0
7 401 10493 3021
8 1214 521 311
9 0 5344 2862
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 392 4 0
1 2211 100 0
2 1459 2 0
3 1986 4 0
4 1980 0 0
5 11055 4 0
6 7602 92 0
7 7134 4 0
8 1659 0 0
9 251 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 24636
1 0 2 96632
2 0 3 14147
3 0 4 65534
4 0 5 19442
5 0 6 56822
6 0 7 73176
7 0 8 60231
8 0 9 70521
9 0 10 1195
physicalDamageDealtToChampions physicalDamageTaken role \
0 2551 6479 NONE
1 11468 20328 NONE
2 1209 9940 SOLO
3 4790 6955 CARRY
4 9595 5599 SUPPORT
5 5739 7172 SOLO
6 7459 13461 NONE
7 7467 6779 SOLO
8 9325 12703 CARRY
9 491 3003 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 12 3 4 160
1 10 11 2 4 328
2 2 4 4 14 188
3 1 7 1 4 118
4 1 4 2 14 210
5 1 4 4 14 154
6 3 4 12 11 119
7 2 4 3 14 265
8 2 4 3 7 183
9 3 7 3 3 148
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 MIKI BAO BAO False 100 TOP 33
1 VirajGames False 100 JUNGLE 16
2 Thiccoli False 100 MIDDLE 1
3 Dr destroyer27 False 100 BOTTOM 1
4 SpedRacer69 False 100 UTILITY 31
5 Cyrox77 False 200 TOP 6
6 YourCasualDude False 200 JUNGLE 18
7 Nerf Brand False 200 MIDDLE 21
8 Coolgum15 False 200 BOTTOM 13
9 WestWing34 False 200 UTILITY 5
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1238 83619 16387
1 1238 110376 12390
2 1238 93587 12483
3 1238 81536 5951
4 1238 22017 10285
5 1238 66720 6259
6 1238 88128 7961
7 1238 75721 12766
8 1238 77043 9835
9 1238 6539 3354
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 7562 1168 106 494
1 23338 15164 10 426
2 12510 14772 143 62
3 9617 1878 149 54
4 7801 4757 8 110
5 18581 5821 107 64
6 21628 9990 10 212
7 14551 2105 120 93
8 14552 2921 127 46
9 3254 7156 2 22
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 12 1 12195
1 49 1 6980
2 37 1 542
3 43 2 14326
4 30 3 2167
5 110 1 9897
6 103 1 8807
7 114 1 4996
8 0 2 6000
9 0 3 0
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 691 0 1
1 922 798 1 1
2 542 1110 2 1
3 0 675 1 1
4 282 221 0 1
5 520 354 1 4
6 502 564 0 4
7 2276 638 0 4
8 198 190 0 4
9 0 0 0 4
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 7 0 0 5 True
1 15 4 0 2 True
2 19 2 1 7 True
3 12 0 2 6 True
4 20 2 1 12 True
5 7 0 0 4 False
6 14 0 1 6 False
7 11 1 1 6 False
8 9 0 0 6 False
9 16 3 2 10 False ,
assists baronKills bountyLevel champLevel championName \
0 5 0 7 13 Urgot
1 9 0 0 12 Shaco
2 5 0 8 13 Akali
3 7 0 2 11 Jhin
4 13 0 0 11 Yuumi
5 0 0 0 13 Camille
6 0 0 0 11 Rengar
7 1 0 0 11 Katarina
8 2 0 0 9 Samira
9 1 0 0 10 Leona
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3696 16595 3696
1 3680 16136 3680
2 3829 10483 3829
3 2651 5220 2651
4 351 351 351
5 6909 6909 6909
6 0 4127 0
7 0 4476 0
8 946 1065 946
9 538 790 538
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 0 2 1 True False
1 2 0 1 False True
2 1 6 0 False False
3 0 0 0 False False
4 0 1 0 False False
5 1 2 0 False False
6 6 1 0 False False
7 8 0 0 False False
8 5 0 0 False False
9 2 5 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False True False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 10534 TOP 0
1 False 8914 JUNGLE 1
2 False 8970 MIDDLE 0
3 False 7135 BOTTOM 0
4 False 5438 UTILITY 0
5 False 7255 TOP 0
6 False 7066 JUNGLE 0
7 False 6022 MIDDLE 0
8 False 6514 BOTTOM 0
9 False 4689 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1055 3047 6631 3748 3076 1028 3363
1 0 6691 3006 3134 1037 0 0 3340
2 0 4633 3157 2055 3020 1054 0 3340
3 0 3006 6671 3134 0 0 0 3340
4 0 3853 6617 3114 1052 2055 0 3364
5 1 1055 6632 3047 3077 1011 0 3340
6 1 0 0 0 0 0 0 3364
7 1 3115 2031 4635 3020 0 1082 3340
8 1 6673 3047 3134 1042 0 0 3340
9 1 3860 0 1029 3117 6660 1033 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 7 7 2
1 1 5 5 2
2 1 8 8 2
3 1 2 2 1
4 0 0 0 0
5 0 0 0 0
6 0 3 0 1
7 0 0 0 0
8 0 0 0 0
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 0 162 9
1 1075 38197 5080
2 288 66609 10784
3 0 3267 660
4 0 6448 3655
5 197 218 218
6 709 31568 512
7 303 53004 6903
8 530 5625 447
9 534 14014 1541
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 1495 16 0
1 3542 107 0
2 4942 0 0
3 842 0 0
4 368 0 0
5 1375 8 0
6 5173 92 0
7 6966 0 0
8 4799 0 0
9 3004 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 106377
1 0 2 48211
2 0 3 14852
3 0 4 79887
4 0 5 1308
5 0 6 63028
6 0 7 52626
7 0 8 8861
8 0 9 43644
9 0 10 4265
physicalDamageDealtToChampions physicalDamageTaken role \
0 10766 6166 SOLO
1 2104 11048 NONE
2 1052 6057 SOLO
3 8120 3439 CARRY
4 292 866 SUPPORT
5 1867 6743 SOLO
6 6418 15112 NONE
7 673 7982 SOLO
8 2247 5359 CARRY
9 444 5092 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 12 2 4 270
1 3 4 13 11 111
2 1 12 2 14 198
3 3 4 3 7 183
4 4 3 3 14 148
5 2 12 1 4 113
6 12 11 2 4 135
7 1 12 4 14 271
8 1 4 3 7 117
9 4 4 3 14 201
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 timevans7 False 100 TOP 21
1 jiao baba233 False 100 JUNGLE 18
2 NotFocusing False 100 MIDDLE 1
3 Coolgum15 False 100 BOTTOM 18
4 WestWing34 False 100 UTILITY 8
5 AgentMemory False 200 TOP 7
6 Monsterofpoop False 200 JUNGLE 8
7 Carpie False 200 MIDDLE 0
8 The Groge False 200 BOTTOM 0
9 KanariHimawari False 200 UTILITY 14
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1349 118993 11359
1 1349 97440 7337
2 1349 86410 12592
3 1349 84634 8781
4 1349 8003 4194
5 1349 77165 2182
6 1349 91567 7371
7 1349 66724 8406
8 1349 53007 2694
9 1349 24581 2465
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 8052 2138 177 155
1 14872 4875 22 485
2 11713 2120 128 76
3 4492 1580 149 71
4 1485 5157 5 33
5 8147 1774 153 119
6 20694 8695 8 246
7 15429 1084 134 4
8 10526 1219 136 0
9 8549 200 43 49
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 0 1 12453
1 35 1 11032
2 14 1 4948
3 0 3 1480
4 0 6 246
5 10 1 13918
6 146 1 7373
7 189 1 4858
8 82 3 3738
9 35 3 6300
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 584 390 1 2
1 152 282 2 2
2 755 714 3 2
3 0 210 1 2
4 246 250 0 2
5 96 28 2 7
6 440 408 0 7
7 830 480 0 7
8 0 368 0 7
9 480 452 0 7
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 23 2 4 7 True
1 11 0 2 5 True
2 16 7 0 13 True
3 6 0 0 5 True
4 19 3 3 7 True
5 16 2 0 8 False
6 16 1 5 2 False
7 15 0 2 7 False
8 11 0 1 6 False
9 36 5 3 17 False ,
assists baronKills bountyLevel champLevel championName \
0 14 0 1 18 Sett
1 5 0 0 17 Jax
2 13 0 4 18 Yone
3 13 0 1 18 Jhin
4 24 0 4 18 Xerath
5 14 0 0 18 Ornn
6 10 0 0 18 LeeSin
7 6 0 0 18 Ekko
8 7 0 0 18 MissFortune
9 8 1 0 16 Pyke
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 7350 10197 7350
1 414 22857 414
2 4807 10086 4807
3 12344 41173 12344
4 1502 8214 1502
5 3278 5180 3278
6 0 22706 0
7 1295 1295 1295
8 2133 15893 2133
9 0 1310 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 10 3 0 False False
1 9 5 2 False False
2 7 2 1 False False
3 7 0 1 False True
4 4 1 0 True False
5 11 0 0 False False
6 9 2 2 False False
7 8 0 0 False False
8 12 6 1 False False
9 11 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False True False
7 True False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 15971 TOP 1
1 True 15546 JUNGLE 1
2 True 19658 MIDDLE 1
3 True 21795 BOTTOM 2
4 True 14736 UTILITY 0
5 True 13027 TOP 0
6 True 18914 JUNGLE 0
7 True 19282 MIDDLE 0
8 True 18950 BOTTOM 0
9 True 12791 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1011 6630 3077 3053 3158 3071 3340
1 0 3047 3153 3078 3143 4401 3076 3340
2 0 3072 3036 3006 6673 3031 1031 3340
3 0 3036 6671 3094 3009 6676 3031 3340
4 0 3165 3157 3158 6655 4628 3041 3364
5 6 3143 3105 7004 3047 3075 1033 3363
6 6 7015 3074 6333 3158 3071 3053 3340
7 6 3020 3157 7010 3100 3165 3089 3340
8 6 3031 7007 3036 3006 3071 6676 3363
9 6 3857 7002 3142 3117 3179 3134 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 7 2 1
1 2 7 3 2
2 2 9 4 3
3 4 22 10 3
4 2 6 4 2
5 0 1 0 1
6 2 9 4 1
7 2 13 6 2
8 2 8 2 1
9 2 5 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 426 2140 2140
1 535 49607 4769
2 772 34299 8278
3 855 20400 7031
4 1043 127057 48084
5 736 89522 18882
6 536 86064 5134
7 1067 234707 39040
8 540 7352 850
9 603 0 0
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 24177 24 0
1 14641 188 0
2 9554 56 0
3 15150 15 0
4 5986 5 0
5 14650 8 0
6 17736 169 0
7 16152 1 0
8 11935 10 0
9 12880 12 1
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 179336
1 0 2 164382
2 0 3 232204
3 0 4 284646
4 0 5 4795
5 0 6 78074
6 0 7 213684
7 0 8 22603
8 0 9 273975
9 0 10 37118
physicalDamageDealtToChampions physicalDamageTaken role \
0 26045 34519 SOLO
1 13485 25537 NONE
2 25968 27845 SOLO
3 44334 20380 CARRY
4 882 8482 SUPPORT
5 8363 29764 SOLO
6 29042 42656 NONE
7 3988 29242 SOLO
8 24558 21511 CARRY
9 10458 19577 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 12 4 4 228
1 17 11 6 4 76
2 5 14 2 4 90
3 7 4 7 7 181
4 4 4 8 14 144
5 4 4 1 12 174
6 15 11 3 4 202
7 3 4 7 14 177
8 7 7 6 4 190
9 7 4 8 14 182
summonerName teamEarlySurrendered teamId teamPosition \
0 Jemarcus False 100 TOP
1 pennywise97 False 100 JUNGLE
2 cuz i b sneakin False 100 MIDDLE
3 Coolgum15 False 100 BOTTOM
4 WestWing34 False 100 UTILITY
5 Tumowacre False 200 TOP
6 crippypenguan False 200 JUNGLE
7 mario88742 False 200 MIDDLE
8 DragN SlayHer False 200 BOTTOM
9 ThatsSoBs4 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 36 2744 200355 36933
1 23 2744 225727 19366
2 38 2744 274618 39807
3 47 2744 307493 52913
4 53 2744 133266 50380
5 44 2744 170092 27245
6 19 2744 321018 34859
7 20 2744 262309 44854
8 6 2744 343993 27639
9 25 2744 46749 13363
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 60436 13668 188 250
1 42109 14627 37 344
2 38785 10805 250 197
3 37745 20108 229 182
4 14843 2725 78 238
5 51677 7826 175 655
6 66074 23745 145 544
7 46523 11581 269 435
8 34560 9035 332 254
9 36313 8089 62 145
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 411 1 18878
1 378 1 11736
2 352 1 8114
3 240 2 2447
4 173 1 1413
5 425 1 2495
6 356 1 21269
7 326 1 4998
8 313 3 62665
9 450 1 9630
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 8747 1739 4 3
1 1112 1930 0 3
2 5560 1386 2 3
3 1547 2213 3 3
4 1413 374 2 3
5 0 7262 0 11
6 682 5681 1 11
7 1825 1128 0 11
8 2231 1112 1 11
9 2904 3855 0 11
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 38 3 2 19 True
1 54 5 6 20 True
2 37 2 5 13 True
3 19 0 4 11 True
4 51 2 3 27 True
5 17 0 1 11 False
6 26 4 1 13 False
7 26 0 0 15 False
8 40 7 12 9 False
9 102 3 13 42 False ,
assists baronKills bountyLevel champLevel championName \
0 0 0 0 8 Nocturne
1 3 0 0 9 Amumu
2 2 0 0 10 Swain
3 0 0 1 8 Jhin
4 3 0 0 8 Alistar
5 1 0 1 10 Mordekaiser
6 1 0 4 10 Viego
7 3 0 0 10 Yone
8 3 0 3 9 Ezreal
9 7 0 0 8 Nami
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 1544 2932 1544
1 0 4871 0
2 0 131 0
3 1060 1060 1060
4 1387 1387 1387
5 1472 2198 1472
6 0 13790 0
7 956 956 956
8 1756 1756 1756
9 1243 1243 1243
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 2 0 0 False False
1 3 1 0 False True
2 1 0 0 False False
3 1 0 0 False False
4 4 1 0 False False
5 0 2 0 False False
6 2 0 2 False False
7 3 0 0 False False
8 1 1 0 False False
9 1 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 True False False
8 False True False
9 True False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 4667 TOP 0
1 True 5109 JUNGLE 0
2 True 4706 MIDDLE 0
3 True 5065 BOTTOM 0
4 True 3297 UTILITY 0
5 True 4763 TOP 0
6 True 6093 JUNGLE 0
7 True 4767 MIDDLE 0
8 True 6522 BOTTOM 0
9 True 4715 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3051 2033 3158 3067 0 0 3340
1 0 3068 2031 2055 1001 1029 1029 3364
2 0 1056 3047 3802 3067 3070 0 3340
3 0 1055 6670 1001 1042 1018 1037 3340
4 0 3859 3067 3158 1033 1029 0 3340
5 0 1054 3047 4635 1026 2055 0 3340
6 0 3153 2031 0 0 3006 0 3340
7 0 3123 2031 3006 6670 0 1053 3340
8 0 6632 1055 3158 3070 1036 0 3340
9 0 3851 0 4642 3067 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 2 2 1
1 0 1 0 1
2 0 1 0 1
3 1 3 2 2
4 0 0 0 0
5 0 1 0 1
6 1 4 4 2
7 0 2 0 1
8 1 3 3 2
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 670 539 539
1 526 43444 3398
2 903 27598 3695
3 684 2138 0
4 330 6093 1969
5 0 23556 3567
6 390 9361 731
7 365 6505 1618
8 333 5331 2128
9 339 6112 1994
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 2951 4 0
1 3842 76 0
2 1436 0 0
3 889 0 0
4 2117 0 0
5 1052 0 0
6 3311 100 0
7 4072 0 0
8 819 0 0
9 1579 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 33954
1 0 2 10848
2 0 3 6667
3 0 4 36041
4 0 5 2796
5 0 6 9935
6 0 7 65921
7 0 8 31806
8 0 9 48305
9 0 10 2138
physicalDamageDealtToChampions physicalDamageTaken role \
0 3683 3817 SUPPORT
1 994 8296 SUPPORT
2 682 3528 SUPPORT
3 4292 4184 SUPPORT
4 204 6454 SUPPORT
5 1022 4464 SUPPORT
6 3325 10355 SUPPORT
7 3544 3578 SUPPORT
8 8978 4215 DUO
9 514 2409 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 1 4 2 14 292
1 2 4 9 11 141
2 2 4 0 14 190
3 1 4 0 7 181
4 5 4 3 14 144
5 2 12 1 4 283
6 6 11 1 4 686
7 3 14 3 4 212
8 2 7 2 4 329
9 3 14 2 4 338
summonerName teamEarlySurrendered teamId teamPosition \
0 akace100 False 100 TOP
1 TeeJay45 False 100 JUNGLE
2 LingLingZhao False 100 MIDDLE
3 Coolgum15 False 100 BOTTOM
4 WestWing34 False 100 UTILITY
5 A Random Chewy False 200 TOP
6 ChaosReaperXD False 200 JUNGLE
7 Slaying False 200 MIDDLE
8 hi im joeknyght False 200 BOTTOM
9 Roundtheglobe False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 22 957 40524 4472
1 11 957 60838 4921
2 15 957 35997 4629
3 9 957 38180 4292
4 18 957 11708 2495
5 1 957 33492 4590
6 10 957 81097 4428
7 8 957 44502 6492
8 0 957 56132 11107
9 19 957 8780 3038
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 7006 2548 66 92
1 12728 3357 8 167
2 6097 849 97 125
3 5073 775 89 55
4 8844 1460 19 54
5 5747 974 81 16
6 14002 7381 5 131
7 8112 911 68 60
8 5190 1317 122 0
9 4156 2228 3 114
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 55 1 6030
1 67 1 6545
2 32 1 1731
3 21 1 0
4 61 4 2818
5 0 1 0
6 31 1 5815
7 39 1 6190
8 12 2 2495
9 12 5 530
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 249 238 0 1
1 528 589 0 1
2 251 1132 0 1
3 0 0 0 1
4 322 272 0 1
5 0 230 0 0
6 372 335 0 0
7 1330 462 0 0
8 0 155 1 0
9 530 167 0 0
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 6 0 1 3 False
1 8 3 3 1 False
2 8 0 0 5 False
3 0 0 0 1 False
4 6 1 0 5 False
5 12 3 1 5 True
6 10 2 1 5 True
7 5 0 0 4 True
8 8 1 0 5 True
9 10 1 1 4 True ,
assists baronKills bountyLevel champLevel championName \
0 15 0 0 18 DrMundo
1 14 1 1 18 Kayn
2 11 1 4 18 Yone
3 17 0 0 17 Zilean
4 20 0 0 18 Singed
5 11 0 0 17 Darius
6 12 0 0 16 Gragas
7 6 0 0 17 Katarina
8 18 0 0 16 Jhin
9 22 0 0 16 Swain
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 13158 18433 13158
1 206 32459 206
2 1101 33240 1101
3 2214 5958 2214
4 0 10115 0
5 3385 4035 3385
6 401 12995 401
7 1243 2784 1243
8 5330 16713 5330
9 326 9002 326
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 0 0 False False
1 4 1 5 False False
2 5 1 0 False False
3 14 0 0 False False
4 13 2 0 False False
5 5 2 0 False False
6 10 2 1 False False
7 10 1 0 False False
8 11 0 0 True False
9 13 1 0 False True
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False True False
9 True False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 15939 TOP 1
1 False 19766 JUNGLE 0
2 False 17795 MIDDLE 1
3 False 13726 BOTTOM 0
4 False 14196 UTILITY 0
5 False 14218 TOP 1
6 False 11888 JUNGLE 0
7 False 11919 MIDDLE 0
8 False 18380 BOTTOM 0
9 False 14375 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 3083 3075 3068 3065 3047 3109 3340
1 1 3111 3042 3071 6609 3053 6630 3364
2 1 3031 2421 3033 3006 6673 6333 3340
3 1 6671 3124 3115 3006 3085 0 3340
4 1 3860 3116 4633 4637 3111 3742 3364
5 2 3053 6631 3111 3211 3742 3076 3340
6 2 3916 4636 3020 4629 3135 0 3364
7 2 1056 3135 4633 3115 3191 3047 3340
8 2 6676 6671 3009 3094 3031 3036 3340
9 2 3853 3157 3111 6653 3165 3116 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 5 2 1
1 3 16 6 2
2 3 14 5 2
3 0 4 0 1
4 3 10 3 2
5 2 7 4 1
6 0 5 0 1
7 1 4 3 3
8 3 15 5 2
9 3 12 3 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 600 116087 29688
1 1048 10632 0
2 938 30746 6146
3 305 82542 6937
4 384 105031 26104
5 1409 1482 479
6 535 110163 24422
7 358 112997 14928
8 558 9337 3698
9 528 111604 53490
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 27357 4 0
1 29690 214 0
2 15599 28 0
3 13906 14 0
4 15818 8 0
5 17203 4 0
6 17684 109 0
7 13737 28 0
8 10199 8 0
9 13197 2 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 103779
1 0 2 239736
2 0 3 151932
3 0 4 40519
4 0 5 7733
5 0 6 154894
6 0 7 20014
7 0 8 21316
8 0 9 217342
9 0 10 5240
physicalDamageDealtToChampions physicalDamageTaken role \
0 8811 38788 SOLO
1 48415 45187 NONE
2 21679 14270 SOLO
3 4198 12777 CARRY
4 1805 29110 SUPPORT
5 29788 21026 SOLO
6 2162 21771 NONE
7 1680 19956 SOLO
8 50510 19417 CARRY
9 1634 30732 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 12 5 4 180
1 20 11 4 4 170
2 7 14 6 4 33
3 5 4 6 14 235
4 21 4 7 3 230
5 7 6 5 4 178
6 22 11 4 4 244
7 3 12 2 14 284
8 6 4 5 7 181
9 7 4 11 3 144
summonerName teamEarlySurrendered teamId teamPosition \
0 MV Riven Blade False 100 TOP
1 Oddysseas False 100 JUNGLE
2 ThorcrynNA False 100 MIDDLE
3 Ćarmilla False 100 BOTTOM
4 faszom elsül False 100 UTILITY
5 Nico0909 False 200 TOP
6 MARTELLUSBENNETT False 200 JUNGLE
7 Galorithan False 200 MIDDLE
8 Coolgum15 False 200 BOTTOM
9 WestWing34 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 19 2349 224723 39636
1 45 2349 268762 50989
2 22 2349 197903 33688
3 11 2349 128685 13239
4 73 2349 123577 30142
5 26 2349 187021 33692
6 35 2349 145611 28772
7 0 2349 140392 17799
8 29 2349 229518 55213
9 74 2349 119980 55125
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 70504 26021 238 242
1 75035 49748 40 467
2 31823 12179 171 98
3 27198 6490 125 267
4 46314 13291 86 740
5 41410 12596 205 165
6 42099 15728 35 398
7 36170 8115 172 13
8 31543 11295 184 129
9 47612 12629 46 449
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 245 1 4856
1 186 1 18394
2 220 1 15224
3 410 2 5622
4 357 1 10811
5 204 1 30644
6 361 1 15433
7 337 1 6079
8 380 4 2838
9 430 1 3135
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1136 4358 8 6
1 2574 156 0 6
2 5863 1952 0 6
3 2102 513 1 6
4 2232 1385 0 6
5 3424 3179 1 10
6 2187 2642 0 10
7 1189 2477 1 10
8 1004 1926 4 10
9 0 3682 0 10
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 14 0 1 8 True
1 39 2 6 3 True
2 28 2 1 14 True
3 12 0 2 6 True
4 34 2 3 13 True
5 29 3 0 9 False
6 21 2 2 4 False
7 22 1 0 14 False
8 9 0 2 4 False
9 42 2 1 18 False ,
assists baronKills bountyLevel champLevel championName \
0 8 0 0 15 Teemo
1 6 0 0 14 Evelynn
2 7 0 0 15 Talon
3 7 0 0 15 Twitch
4 8 0 0 13 Khazix
5 6 0 0 17 Akali
6 11 1 2 15 Sejuani
7 5 0 0 17 Katarina
8 9 0 1 15 Jinx
9 23 0 0 14 Nami
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 963 963 963
1 0 12964 0
2 1209 6412 1209
3 391 6654 391
4 168 3783 168
5 2631 12564 2631
6 798 18237 798
7 5907 16251 5907
8 6575 13086 6575
9 660 1288 660
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 13 0 0 False False
1 7 5 2 False False
2 12 0 0 False False
3 8 1 0 False True
4 8 0 1 True False
5 7 0 0 False False
6 5 3 0 False False
7 8 1 1 False False
8 7 0 0 False False
9 7 5 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False True False
7 False False False
8 True False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 10256 TOP 0
1 True 11086 JUNGLE 0
2 True 13193 MIDDLE 0
3 True 13674 BOTTOM 0
4 True 7456 UTILITY 0
5 True 14056 TOP 0
6 True 12057 JUNGLE 0
7 True 15288 MIDDLE 0
8 True 12634 BOTTOM 0
9 True 8435 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3020 3115 6653 1011 1052 0 3340
1 0 3152 2031 3041 3100 4632 3020 3340
2 0 3142 6694 6691 3134 1036 3070 3340
3 0 3085 3036 0 6672 6676 3006 3363
4 0 3864 3070 3158 6691 3133 1036 3364
5 0 1052 3157 4633 3111 4637 3165 3340
6 0 6662 3083 3047 3143 1033 0 3364
7 0 3020 3157 3115 1058 4633 3135 3364
8 0 2420 6672 3006 3085 3031 0 3340
9 0 3853 2065 3117 3504 3114 1028 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 4 0 1
1 2 7 4 2
2 4 13 3 2
3 3 9 3 1
4 0 1 0 1
5 5 16 6 2
6 4 9 2 1
7 3 14 6 2
8 3 9 2 1
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 325 66245 25427
1 714 89587 14543
2 308 0 0
3 616 0 0
4 618 280 280
5 370 87231 25391
6 640 44388 8161
7 416 134925 21887
8 611 3972 1152
9 461 10101 6448
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 15738 0 0
1 13337 97 1
2 16113 8 0
3 9761 20 0
4 9991 8 0
5 14545 14 0
6 9306 92 0
7 7401 35 0
8 5919 1 0
9 5318 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 22622
1 0 2 12640
2 0 3 109155
3 0 4 108874
4 0 5 41100
5 0 6 14860
6 0 7 63358
7 0 8 21400
8 0 9 117038
9 0 10 2087
physicalDamageDealtToChampions physicalDamageTaken role \
0 3242 6070 SOLO
1 721 13134 NONE
2 33533 10206 SOLO
3 16741 8300 CARRY
4 8327 8761 SUPPORT
5 1912 19413 SOLO
6 8138 19310 NONE
7 1705 18649 SOLO
8 15883 15781 CARRY
9 494 10226 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 4 14 63
1 5 4 15 11 85
2 4 4 7 14 275
3 3 4 5 7 96
4 3 4 5 14 203
5 3 12 7 14 144
6 16 11 5 4 180
7 5 4 5 14 45
8 4 4 4 7 181
9 2 14 3 4 110
summonerName teamEarlySurrendered teamId teamPosition \
0 DonkleDaddy69 False 100 TOP
1 LitMekl False 100 JUNGLE
2 Nerf Sämira False 100 MIDDLE
3 ThanosCar2077 False 100 BOTTOM
4 Varonov False 100 UTILITY
5 WestWing34 False 200 TOP
6 I Mute All 1234 False 200 JUNGLE
7 fkhazpmmu False 200 MIDDLE
8 Coolgum15 False 200 BOTTOM
9 anitabeejaypls False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 37 1919 96521 29273
1 10 1919 112356 15824
2 6 1919 118281 34759
3 10 1919 134608 21736
4 10 1919 41972 9199
5 1 1919 107604 29476
6 35 1919 122369 18121
7 0 1919 158868 25083
8 18 1919 139721 18938
9 20 1919 12348 7102
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 23780 2946 140 285
1 27484 8242 25 226
2 28449 4135 140 177
3 19110 3175 174 195
4 20136 3376 23 184
5 35295 8794 146 64
6 32244 5114 37 641
7 27402 6555 163 13
8 22525 5367 170 103
9 16382 8864 11 161
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 431 1 7654
1 253 1 10127
2 427 1 9126
3 315 2 25734
4 272 1 592
5 272 1 5513
6 179 1 14622
7 297 1 2542
8 251 2 18710
9 212 5 160
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 604 1971 0 7
1 560 1013 1 7
2 1226 2129 0 7
3 4994 1048 0 7
4 592 1383 0 7
5 2172 1336 0 2
6 1820 3626 2 2
7 1489 1351 3 2
8 1902 824 1 2
9 160 838 0 2
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 6 0 1 4 False
1 27 5 1 15 False
2 23 0 6 10 False
3 27 1 5 11 False
4 38 0 5 16 False
5 13 1 0 7 True
6 18 3 2 4 True
7 10 3 1 5 True
8 10 0 0 7 True
9 58 5 6 30 True ,
assists baronKills bountyLevel champLevel championName \
0 13 0 0 17 Akali
1 3 0 0 18 Kayn
2 8 0 1 16 Talon
3 14 0 0 15 Poppy
4 13 0 0 15 Anivia
5 13 0 2 17 DrMundo
6 5 1 0 16 Elise
7 10 0 5 18 Zed
8 19 0 0 17 Sivir
9 26 0 1 16 Senna
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 1802 5243 1802
1 0 17781 0
2 1510 6179 1510
3 334 334 334
4 3599 4958 3599
5 9108 16978 9108
6 421 27526 421
7 2102 8895 2102
8 5824 13162 5824
9 1095 10313 1095
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 6 1 0 False False
1 7 0 2 False False
2 11 0 0 False False
3 10 0 0 True False
4 10 0 0 False True
5 6 0 0 False False
6 8 3 3 False False
7 8 0 0 False False
8 6 3 0 False False
9 10 3 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 12909 TOP 0
1 False 16330 JUNGLE 0
2 False 11916 MIDDLE 0
3 False 11093 UTILITY 0
4 False 12810 BOTTOM 0
5 False 14718 TOP 1
6 False 10899 JUNGLE 0
7 False 19176 MIDDLE 1
8 False 13520 BOTTOM 1
9 False 11245 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 3 4637 3157 3020 3165 4633 0 3340
1 3 6695 3026 6693 3814 3004 3158 3364
2 3 3142 6693 3158 3814 3134 0 3363
3 3 3857 6632 3047 3075 3742 0 3340
4 3 3040 2421 4628 6655 3020 1082 3340
5 0 3068 3143 3111 3065 3075 0 3340
6 0 4636 3916 1026 3158 3100 1028 3364
7 0 3158 3179 6693 6676 3036 3508 3364
8 0 3042 6691 3158 2055 3134 6694 3363
9 0 3864 2420 3006 6676 3191 6692 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 6 3 2
1 3 14 7 2
2 0 6 0 1
3 2 7 2 2
4 2 5 3 1
5 3 10 4 1
6 1 4 2 1
7 6 23 5 3
8 1 4 2 1
9 0 3 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 419 121241 19731
1 805 11310 2666
2 382 0 0
3 522 4952 2918
4 538 150715 14263
5 394 68296 20114
6 622 90274 7870
7 826 7650 1437
8 875 0 0
9 418 0 0
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 6883 4 0
1 8886 234 0
2 3735 0 0
3 10112 4 0
4 3600 3 0
5 14485 0 0
6 6612 146 0
7 9888 14 0
8 5224 8 0
9 5454 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 16178
1 0 2 239466
2 0 3 125298
3 0 4 37141
4 0 5 10961
5 0 6 68117
6 0 7 33667
7 0 8 148821
8 0 9 229818
9 0 10 54231
physicalDamageDealtToChampions physicalDamageTaken role \
0 1544 26915 SOLO
1 20146 30628 NONE
2 19587 25249 SOLO
3 20432 25624 SUPPORT
4 668 28085 CARRY
5 12053 24555 SOLO
6 548 22088 NONE
7 49138 18109 SOLO
8 30173 12219 CARRY
9 15163 11534 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 5 4 9 14 144
1 19 11 5 4 235
2 3 4 7 14 181
3 4 4 7 14 206
4 7 7 3 4 275
5 5 4 4 12 120
6 2 4 11 11 26
7 4 4 5 14 206
8 7 7 6 4 416
9 7 3 5 4 249
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 WestWing34 False 100 TOP 1
1 HungerXD False 100 JUNGLE 6
2 Coolgum15 False 100 MIDDLE 3
3 SusMan12 False 100 UTILITY 32
4 QIYANA GAMlNG False 100 BOTTOM 33
5 Kzareth False 200 TOP 18
6 LeFiggay False 200 JUNGLE 8
7 hypnostoad False 200 MIDDLE 7
8 Victeenies False 200 BOTTOM 5
9 Peptobaptismol False 200 UTILITY 41
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 2112 141351 24187
1 2112 267153 23729
2 2112 127290 21328
3 2112 48636 24382
4 2112 164007 15784
5 2112 147688 32167
6 2112 136777 8813
7 2112 157771 51869
8 2112 236436 30615
9 2112 57456 15253
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 33954 11781 179 48
1 39707 16342 34 381
2 29559 3670 166 142
3 36919 4658 43 161
4 31801 4715 216 1057
5 42052 10869 162 223
6 29210 9529 10 174
7 30824 3800 159 96
8 18091 6958 239 77
9 17444 8882 37 139
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 185 1 3931
1 276 1 16376
2 379 1 1991
3 324 1 6542
4 362 2 2331
5 204 1 11274
6 248 1 12836
7 359 1 1299
8 131 3 6618
9 292 5 3224
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 2911 156 1 9
1 916 192 0 9
2 1741 574 1 9
3 1032 1182 0 9
4 851 115 1 9
5 0 3011 5 3
6 394 509 1 3
7 1293 2827 0 3
8 442 647 2 3
9 89 455 0 3
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 18 1 2 9 False
1 15 0 2 1 False
2 15 0 0 8 False
3 9 0 1 4 False
4 9 0 4 4 False
5 18 0 0 11 True
6 20 3 3 3 True
7 25 0 5 8 True
8 36 5 1 15 True
9 66 3 2 23 True ,
assists baronKills bountyLevel champLevel championName \
0 3 0 9 16 Mordekaiser
1 7 0 5 14 Nasus
2 2 0 3 12 Draven
3 3 0 1 10 Ezreal
4 6 0 0 9 Morgana
5 0 0 0 6 Gwen
6 1 0 0 11 MasterYi
7 1 0 0 13 Azir
8 0 0 0 11 Vayne
9 7 0 0 10 Lux
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 11322 24593 11322
1 4421 12837 4421
2 6568 6568 6568
3 2148 4380 2148
4 3480 3480 3480
5 0 0 0
6 204 19512 204
7 2376 2376 2376
8 3886 4056 3886
9 677 1821 677
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 1 0 0 False False
1 1 2 1 False False
2 2 2 0 False False
3 4 0 0 False False
4 3 0 0 False False
5 2 0 0 False True
6 9 2 2 False False
7 4 1 0 False False
8 5 2 0 False False
9 3 5 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 13565 TOP 1
1 False 10129 JUNGLE 0
2 False 8407 MIDDLE 0
3 False 6280 BOTTOM 0
4 False 6495 UTILITY 0
5 False 4241 TOP 0
6 False 6745 JUNGLE 0
7 False 7120 MIDDLE 0
8 False 8994 BOTTOM 0
9 False 5869 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1056 4633 3047 3116 4629 1026 3340
1 0 6632 2031 3158 3110 1028 0 3340
2 0 1055 3508 3006 6676 0 0 3363
3 0 3508 3158 3133 2003 1036 1055 3340
4 0 3853 6653 3020 2424 3108 1029 3340
5 1 1055 4635 2031 0 0 0 3340
6 1 6691 1042 3006 1053 1042 0 3364
7 1 2003 6655 1056 1043 3020 1052 3340
8 1 3124 1053 3006 6672 1042 0 3340
9 1 3853 6653 3020 0 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 9 9 2
1 2 7 5 2
2 1 3 3 1
3 0 2 0 1
4 1 2 2 1
5 0 1 0 1
6 0 1 0 1
7 1 3 3 1
8 1 6 4 1
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 1223 132203 11897
1 999 31751 2495
2 434 0 0
3 439 3115 1058
4 390 15274 5827
5 358 4063 654
6 276 4742 0
7 1009 61065 9556
8 547 0 0
9 1093 26433 11593
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 4530 10 0
1 7714 114 0
2 5700 4 0
3 3136 0 0
4 3458 0 0
5 2635 0 0
6 6350 95 0
7 4317 0 0
8 5457 0 0
9 3803 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 21467
1 0 2 92984
2 0 3 70139
3 0 4 30367
4 0 5 1919
5 0 6 5654
6 0 7 84748
7 0 8 13915
8 0 9 65124
9 0 10 1776
physicalDamageDealtToChampions physicalDamageTaken role \
0 2456 8623 SOLO
1 9075 18476 NONE
2 3580 3122 DUO
3 1271 4374 DUO
4 475 5121 SUPPORT
5 870 2274 NONE
6 4005 14668 NONE
7 494 5839 SOLO
8 10257 4799 CARRY
9 288 3775 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 4 12 21
1 2 4 12 11 28
2 2 4 1 14 27
3 2 7 1 4 85
4 3 4 1 14 181
5 1 12 2 14 25
6 13 11 3 4 23
7 2 14 3 4 83
8 2 4 2 7 13
9 2 4 3 14 168
summonerName teamEarlySurrendered teamId teamPosition \
0 RyeBreadPitt False 100 TOP
1 Bettycrocks69 False 100 JUNGLE
2 hehexdmonkaslul False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 Coolgum15 False 100 UTILITY
5 MAAKIMA False 200 TOP
6 SmokingWires False 200 JUNGLE
7 ClumsiBunni False 200 MIDDLE
8 Harryback98 False 200 BOTTOM
9 AcroPhobiias False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 7 1354 170042 14994
1 9 1354 135732 11834
2 2 1354 70709 3646
3 0 1354 35391 2330
4 32 1354 17404 6513
5 0 1354 14689 2376
6 3 1354 110282 5363
7 9 1354 75397 10466
8 4 1354 81368 13242
9 38 1354 29039 12711
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 15557 9604 206 196
1 28587 8859 35 471
2 9069 2179 147 53
3 7860 1095 74 0
4 9622 1478 9 52
5 5015 527 32 4
6 21414 5882 32 30
7 10373 224 126 160
8 10587 1481 151 4
9 7711 454 25 134
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 6 1 16369
1 32 1 10996
2 37 1 570
3 63 3 1907
4 54 1 210
5 30 1 4970
6 199 1 20790
7 116 1 416
8 144 1 16243
9 64 1 828
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 640 2403 5 2
1 264 2395 2 2
2 66 246 0 2
3 0 349 2 2
4 210 1043 2 2
5 851 106 0 10
6 1357 394 1 10
7 416 216 0 10
8 2985 330 1 10
9 828 132 0 10
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 10 0 1 7 True
1 17 2 1 8 True
2 11 2 1 10 True
3 12 0 2 6 True
4 20 0 3 10 True
5 3 0 0 2 False
6 14 2 3 3 False
7 18 1 4 7 False
8 15 2 1 7 False
9 28 5 4 12 False ,
assists baronKills bountyLevel champLevel championName \
0 5 0 0 14 Riven
1 2 0 2 16 Rengar
2 1 0 2 15 Ryze
3 4 0 0 12 Ezreal
4 6 0 0 13 Senna
5 9 0 6 17 DrMundo
6 9 0 0 16 Shaco
7 8 0 0 16 Zoe
8 4 0 2 14 Samira
9 15 0 0 14 Taric
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 1473 1473 1473
1 0 13386 0
2 0 5659 0
3 185 600 185
4 148 837 148
5 7028 21809 7028
6 413 6628 413
7 2801 2801 2801
8 4855 12380 4855
9 1203 3024 1203
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 2 0 False False
1 8 0 1 False False
2 8 4 0 False False
3 7 0 1 False False
4 5 2 0 False False
5 2 0 1 False False
6 7 2 0 False True
7 6 0 0 False False
8 1 0 0 False False
9 2 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 9306 TOP 0
1 True 12618 JUNGLE 0
2 True 10218 MIDDLE 0
3 True 8040 BOTTOM 0
4 True 7407 UTILITY 0
5 True 15433 TOP 0
6 True 13332 JUNGLE 0
7 True 10206 MIDDLE 1
8 True 11898 BOTTOM 0
9 True 7590 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 6333 2031 1001 3133 3057 6630 3340
1 1 6691 3158 6676 3508 3035 0 3340
2 1 3040 6656 3020 4632 3108 0 3364
3 1 1036 2003 6632 3070 3158 3133 3340
4 1 6632 3123 3864 3009 3133 1036 3364
5 0 3083 3076 3143 3047 6662 4401 3340
6 0 3508 6691 3158 6676 3035 1018 3364
7 0 3108 4628 6655 3020 3191 0 3340
8 0 6673 3047 6676 1038 1053 1055 3340
9 0 3860 3190 3047 3050 1028 1006 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 0 2 0 2
1 2 10 6 1
2 2 5 2 1
3 0 1 0 1
4 0 0 0 0
5 2 8 6 2
6 3 11 4 2
7 2 5 3 1
8 2 11 9 2
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 693 0 0
1 653 43117 2287
2 294 113796 9689
3 396 6053 2800
4 686 903 903
5 698 80422 19900
6 355 62570 8447
7 575 58082 10595
8 1546 9585 2262
9 430 15271 5214
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 14437 4 0
1 9832 119 0
2 10000 4 0
3 6606 4 1
4 6893 2 0
5 4633 9 0
6 4678 164 0
7 3141 1 0
8 1426 2 0
9 3265 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 75683
1 0 2 124560
2 0 3 15802
3 0 4 76690
4 1 5 57826
5 0 6 117734
6 0 7 101579
7 0 8 17222
8 0 9 101111
9 0 10 7351
physicalDamageDealtToChampions physicalDamageTaken role \
0 13212 12454 SOLO
1 19010 22774 NONE
2 849 8988 SOLO
3 6129 10256 CARRY
4 24441 12837 SUPPORT
5 11362 36851 SOLO
6 14087 22713 NONE
7 1237 13685 SOLO
8 13491 13414 CARRY
9 1738 10874 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 5 4 2 12 27
1 5 4 14 11 196
2 2 12 3 4 25
3 5 4 5 7 40
4 5 4 6 14 25
5 5 4 4 12 20
6 17 11 7 14 20
7 4 4 4 14 87
8 1 7 0 4 85
9 1 4 5 3 181
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 TreeeU False 100 TOP 15
1 avxrla False 100 JUNGLE 11
2 123spitfire False 100 MIDDLE 19
3 DrunkenHymie False 100 BOTTOM 0
4 Lil Veigar OP False 100 UTILITY 23
5 RyeBreadPitt False 200 TOP 28
6 RACECARWORM False 200 JUNGLE 32
7 Rintu21 False 200 MIDDLE 24
8 Dublaiar False 200 BOTTOM 0
9 Coolgum15 False 200 UTILITY 30
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1899 75683 13212
1 1899 176186 22132
2 1899 133631 10742
3 1899 85072 8930
4 1899 60205 26286
5 1899 209241 31610
6 1899 175018 26415
7 1899 80306 13993
8 1899 121351 15907
9 1899 28940 6963
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 27823 2419 126 93
1 35140 12398 51 288
2 21211 1716 168 114
3 17417 3363 136 0
4 20221 10610 30 55
5 42336 11878 235 1067
6 27827 8644 16 998
7 17204 2763 145 85
8 15067 3610 163 0
9 14227 9926 36 74
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 252 1 0
1 289 1 8508
2 243 1 4031
3 204 3 2329
4 179 5 1475
5 62 1 11084
6 192 1 10870
7 239 1 5001
8 43 2 10654
9 31 5 6317
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 931 0 7
1 834 2534 0 7
2 204 2222 0 7
3 0 554 0 7
4 942 490 0 7
5 347 852 4 0
6 3880 436 1 0
7 2161 378 1 0
8 154 226 1 0
9 9 88 0 0
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 28 2 0 8 False
1 20 0 2 9 False
2 17 4 3 5 False
3 9 0 0 6 False
4 60 2 5 21 False
5 16 0 0 10 True
6 19 2 2 3 True
7 10 0 3 5 True
8 16 0 0 9 True
9 23 0 2 12 True ,
assists baronKills bountyLevel champLevel championName \
0 2 0 3 14 FiddleSticks
1 12 0 1 12 Zac
2 4 0 0 12 Kayle
3 7 0 1 11 Samira
4 6 0 0 10 Pyke
5 1 0 0 11 Riven
6 2 0 0 11 MasterYi
7 3 0 0 12 Qiyana
8 2 0 0 10 Jhin
9 7 0 0 10 Nami
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3380 5573 3380
1 1250 9959 1250
2 2930 2930 2930
3 2091 5156 2091
4 1221 3896 1221
5 381 381 381
6 1441 8036 1441
7 391 1319 391
8 3926 3926 3926
9 1486 1486 1486
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 2 0 0 False True
1 2 0 2 False False
2 2 0 0 False False
3 3 0 0 False False
4 2 1 0 False False
5 8 1 0 False False
6 2 0 1 False False
7 5 0 0 False False
8 6 3 0 False False
9 5 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 True False False
7 False False False
8 False True False
9 True False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 10010 TOP 0
1 True 8586 JUNGLE 0
2 True 7212 MIDDLE 0
3 True 6688 BOTTOM 0
4 True 6432 UTILITY 0
5 True 4893 TOP 0
6 True 8852 JUNGLE 0
7 True 7327 MIDDLE 0
8 True 6735 BOTTOM 0
9 True 5738 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3047 3157 2033 6653 3082 0 3330
1 0 3111 2031 3068 3075 1029 1029 3340
2 0 1054 1082 3115 3047 0 0 3363
3 0 6673 3047 1036 1036 0 1055 3340
4 0 3855 3047 6691 1036 1036 0 3364
5 0 6692 0 0 0 0 1001 3340
6 0 3006 6691 2031 3153 1042 0 3364
7 0 3111 2031 6693 3134 1037 0 3340
8 0 6671 3134 3009 0 0 1055 3340
9 0 4005 3114 3853 3158 1052 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 11 7 2
1 1 6 4 2
2 1 4 3 1
3 1 3 2 1
4 1 2 2 1
5 0 1 0 1
6 2 5 3 2
7 1 2 2 1
8 0 2 0 1
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 890 68963 13753
1 876 69155 9292
2 883 27739 4063
3 558 4061 874
4 892 0 0
5 234 0 0
6 1057 5941 188
7 388 1811 427
8 307 6367 1392
9 319 10850 4633
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 750 1 0
1 2397 81 0
2 391 0 0
3 2500 0 0
4 1532 1 0
5 7003 0 0
6 5792 117 0
7 5377 0 0
8 5991 0 0
9 5115 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 9426
1 0 2 15857
2 0 3 20091
3 0 4 30803
4 0 5 14375
5 0 6 43858
6 0 7 95066
7 0 8 47901
8 0 9 59641
9 0 10 1769
physicalDamageDealtToChampions physicalDamageTaken role \
0 966 11524 SOLO
1 1749 13213 NONE
2 2407 8189 SOLO
3 3929 8334 CARRY
4 4054 6156 SUPPORT
5 5316 3986 SOLO
6 6595 11825 NONE
7 8395 4649 SOLO
8 9129 7046 CARRY
9 377 4073 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 12 6 14 132
1 2 4 15 11 181
2 2 4 3 12 349
3 4 7 1 4 84
4 3 14 4 4 179
5 3 4 2 14 225
6 2 4 8 11 171
7 3 4 3 14 332
8 3 4 4 7 243
9 4 14 4 4 192
summonerName teamEarlySurrendered teamId teamPosition \
0 ThePizzaMarine False 100 TOP
1 Coolgum15 False 100 JUNGLE
2 Rotome False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 Thick2BThighs False 100 UTILITY
5 Ebawnyy False 200 TOP
6 14siuqraM False 200 JUNGLE
7 mouth pee False 200 MIDDLE
8 ColossalYodas False 200 BOTTOM
9 CrotchBlaster500 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 51 1280 83469 15904
1 33 1280 92047 12142
2 4 1280 51351 6470
3 1 1280 37870 4803
4 11 1280 19505 4604
5 15 1280 44014 5472
6 1 1280 118347 8630
7 17 1280 50055 9165
8 3 1280 66008 10522
9 16 1280 13225 5616
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 12604 4391 131 386
1 16919 20524 26 426
2 9304 2537 117 130
3 11160 3233 85 1
4 7951 1994 24 73
5 11704 601 77 70
6 18532 8391 22 78
7 10584 776 119 67
8 13499 2314 131 105
9 9376 4900 11 139
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 51 1 5079
1 66 4 7035
2 68 5 3520
3 64 2 3005
4 52 1 5130
5 171 1 156
6 69 1 17339
7 110 1 342
8 143 3 0
9 115 4 605
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1184 329 1 1
1 1101 1308 1 1
2 0 723 1 1
3 0 325 1 1
4 550 262 0 1
5 156 714 0 4
6 1846 915 0 4
7 342 556 0 4
8 0 461 1 4
9 605 187 0 4
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 30 0 3 0 True
1 9 0 0 6 True
2 6 1 1 4 True
3 17 0 4 6 True
4 17 1 1 13 True
5 11 1 1 7 False
6 16 0 1 5 False
7 10 0 1 7 False
8 12 3 2 9 False
9 27 1 2 14 False ,
assists baronKills bountyLevel champLevel championName \
0 8 0 1 14 Nasus
1 8 1 4 14 JarvanIV
2 7 0 0 14 Fizz
3 8 0 0 13 Ashe
4 15 0 0 12 Seraphine
5 3 0 0 15 Kled
6 4 0 0 12 Zac
7 3 0 0 14 Veigar
8 8 0 0 13 Jhin
9 4 0 1 12 Xerath
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3594 7673 3594
1 3562 30819 3562
2 4020 7471 4020
3 3069 14179 3069
4 1840 3489 1840
5 3568 3568 3568
6 24 8416 24
7 1179 5242 1179
8 0 3255 0
9 0 2169 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 0 0 True False
1 4 2 1 False True
2 4 0 0 False False
3 7 0 1 False False
4 4 2 0 False False
5 5 0 0 False False
6 7 1 1 False False
7 6 0 1 False False
8 1 0 0 False False
9 5 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 True False False
2 False False False
3 False True False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 9206 TOP 0
1 False 11641 JUNGLE 2
2 False 9582 MIDDLE 0
3 False 9737 BOTTOM 0
4 False 7936 UTILITY 0
5 False 10185 TOP 0
6 False 7012 JUNGLE 0
7 False 10168 MIDDLE 0
8 False 6475 BOTTOM 0
9 False 8420 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 6632 1054 3158 3110 3067 1033 3340
1 0 6630 2421 3111 2031 1038 3053 3364
2 0 3057 3157 2033 4636 3158 3113 3340
3 0 3085 6672 3006 2031 1036 1036 3340
4 0 3853 6617 3158 3504 1026 0 3364
5 2 1055 3748 3068 3047 3044 1028 3340
6 2 3068 2031 3111 3076 1011 0 3340
7 2 1056 6656 3020 3102 1058 0 3340
8 2 6671 3009 1036 1036 0 1055 3340
9 2 3853 3020 6655 4628 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 2 0 1
1 3 8 4 2
2 1 5 2 2
3 2 7 3 2
4 0 2 0 1
5 3 8 4 1
6 0 0 0 0
7 2 9 3 1
8 0 0 0 0
9 2 7 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 622 14735 4535
1 715 7487 433
2 802 38116 7460
3 328 1794 1184
4 733 30493 12077
5 508 9047 4058
6 718 89766 7363
7 736 84439 22283
8 715 3175 530
9 725 40145 20609
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 9415 0 0
1 14024 92 0
2 10895 0 0
3 13757 8 0
4 8308 4 0
5 8406 8 0
6 5798 112 0
7 5648 8 0
8 4435 0 0
9 3507 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 82547
1 0 2 90770
2 0 3 19238
3 0 4 80009
4 0 5 4016
5 0 6 104670
6 0 7 17766
7 0 8 10272
8 0 9 71675
9 0 10 1907
physicalDamageDealtToChampions physicalDamageTaken role \
0 11990 20546 SOLO
1 13577 17859 NONE
2 1267 3175 SOLO
3 14911 4496 CARRY
4 1923 5802 SUPPORT
5 22446 28469 SOLO
6 617 19106 NONE
7 603 10220 SOLO
8 6455 6763 CARRY
9 288 6074 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 6 6 3 12 40
1 4 4 16 11 240
2 2 14 1 4 41
3 2 4 4 7 53
4 3 4 5 3 77
5 4 12 7 14 132
6 3 4 17 11 181
7 2 4 2 12 349
8 3 7 3 4 84
9 5 3 3 4 179
summonerName teamEarlySurrendered teamId teamPosition \
0 Xyta False 100 TOP
1 FourLeafedElfMan False 100 JUNGLE
2 Dr Spongy False 100 MIDDLE
3 Pastor Geronimo False 100 BOTTOM
4 sirjames2003 False 100 UTILITY
5 ThePizzaMarine False 200 TOP
6 Coolgum15 False 200 JUNGLE
7 Rotome False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 Thick2BThighs False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 16 1591 98254 17003
1 23 1591 120975 16110
2 7 1591 62021 9106
3 34 1591 92672 18907
4 30 1591 34558 14049
5 12 1591 122049 27620
6 33 1591 117694 8940
7 47 1591 94711 22887
8 26 1591 74851 6986
9 25 1591 44563 20897
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 31108 6941 150 368
1 32036 11913 40 331
2 16070 2726 131 88
3 18466 2090 137 506
4 14175 9672 21 160
5 37880 6788 164 93
6 29129 26046 16 379
7 16536 1632 152 127
8 11198 3990 112 95
9 10001 24 22 116
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 102 1 971
1 121 1 22718
2 109 1 4665
3 206 2 10869
4 114 5 48
5 110 1 8330
6 179 5 10160
7 181 1 0
8 21 2 0
9 106 1 2511
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 477 1145 2 1
1 2099 152 4 1
2 378 2000 1 1
3 2810 212 1 1
4 48 64 0 1
5 1115 1003 1 9
6 958 4224 0 9
7 0 666 0 9
8 0 0 0 9
9 0 419 0 9
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 8 0 0 5 True
1 24 2 5 3 True
2 11 0 0 6 True
3 8 0 0 4 True
4 27 2 3 7 True
5 12 0 0 8 False
6 9 1 0 5 False
7 8 0 0 5 False
8 9 0 0 6 False
9 24 2 2 12 False ,
assists baronKills bountyLevel champLevel championName \
0 2 0 7 13 Nasus
1 4 0 1 11 Zac
2 0 0 2 12 Kayle
3 1 0 1 10 Samira
4 1 0 1 9 Brand
5 0 0 0 10 Mordekaiser
6 1 0 0 10 Diana
7 0 0 0 10 Yone
8 2 0 0 9 Ashe
9 3 0 0 10 Morgana
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 4257 4257 4257
1 0 3555 0
2 4535 5561 4535
3 318 318 318
4 0 1143 0
5 0 0 0
6 0 7257 0
7 1165 2622 1165
8 2939 2939 2939
9 895 895 895
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 0 0 0 False False
1 2 2 0 False False
2 0 1 0 False False
3 3 0 0 False False
4 4 2 1 False False
5 5 0 0 False False
6 2 1 1 False False
7 2 1 0 False False
8 2 0 0 False True
9 3 0 0 True False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 8990 TOP 0
1 True 5260 JUNGLE 0
2 True 6430 MIDDLE 0
3 True 5036 BOTTOM 0
4 True 5107 UTILITY 0
5 True 3892 TOP 0
6 True 5174 JUNGLE 0
7 True 5851 MIDDLE 0
8 True 6055 BOTTOM 0
9 True 6080 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1054 3158 6632 3024 3082 0 3340
1 0 1029 2031 6660 1001 1033 2055 3364
2 0 1056 1082 3006 3115 0 0 3340
3 0 6673 1029 0 0 0 1055 3340
4 0 3853 3020 3108 3802 0 0 3364
5 0 1056 4635 3047 1026 0 0 3340
6 0 4636 2031 3020 0 0 0 3340
7 0 6673 3006 1018 0 0 0 3340
8 0 6672 3006 1055 1018 1042 0 3340
9 0 6653 3853 3020 0 0 0 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 1 7 7 2
1 0 1 0 1
2 1 2 2 1
3 0 1 0 1
4 1 3 2 2
5 0 0 0 0
6 0 0 0 0
7 1 3 2 1
8 1 2 2 1
9 2 4 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 0 12679 2782
1 563 48875 3007
2 0 30372 3308
3 299 2826 137
4 421 15306 6696
5 391 27821 6356
6 798 49139 2166
7 710 5413 942
8 749 609 409
9 753 22566 9584
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 9161 0 0
1 4652 77 0
2 2346 0 0
3 2360 0 0
4 2474 4 0
5 2397 0 0
6 2814 100 0
7 3241 0 0
8 4736 0 0
9 3724 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 72276
1 0 2 13803
2 0 3 19219
3 0 4 28047
4 0 5 1096
5 0 6 9994
6 0 7 17540
7 0 8 41133
8 0 9 51478
9 0 10 3645
physicalDamageDealtToChampions physicalDamageTaken role \
0 11388 6642 DUO
1 587 10684 SUPPORT
2 1962 3814 SUPPORT
3 1315 3187 SUPPORT
4 447 3936 SUPPORT
5 1068 8481 SUPPORT
6 591 7797 SUPPORT
7 3851 6290 DUO
8 6724 2219 SUPPORT
9 1011 3435 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 12 2 4 132
1 2 4 11 11 180
2 2 4 2 12 349
3 2 7 1 4 84
4 3 14 2 4 179
5 1 4 1 12 39
6 2 4 10 11 170
7 2 4 4 14 115
8 2 7 3 4 92
9 1 4 2 3 195
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 ThePizzaMarine False 100 TOP 14
1 Coolgum15 False 100 JUNGLE 13
2 Rotome False 100 MIDDLE 4
3 Dublaiar False 100 BOTTOM 0
4 Thick2BThighs False 100 UTILITY 9
5 MeerNoob False 200 TOP 2
6 Aecxd False 200 JUNGLE 2
7 uhhhhhhhhhhm False 200 MIDDLE 6
8 Fluffykittenn False 200 BOTTOM 23
9 ObenOW False 200 UTILITY 37
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1062 89455 14384
1 1062 70085 4100
2 1062 62382 5270
3 1062 32414 1452
4 1062 16815 7556
5 1062 37815 7425
6 1062 74340 3326
7 1062 53610 6247
8 1062 55782 7678
9 1062 26517 10773
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 16373 4245 148 117
1 16508 16545 3 309
2 6995 1895 126 109
3 5547 1248 86 0
4 6714 853 7 15
5 10982 1286 67 20
6 10680 4304 11 128
7 9839 997 106 44
8 7225 878 114 419
9 7406 1101 19 70
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 0 1 4499
1 43 3 7406
2 0 2 12790
3 53 3 1540
4 74 1 412
5 134 1 0
6 60 1 7660
7 30 1 7063
8 51 3 3693
9 57 1 305
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 214 569 1 1
1 506 1172 0 1
2 0 835 1 1
3 0 0 0 1
4 412 303 0 1
5 0 104 0 2
6 568 68 0 2
7 1453 308 0 2
8 544 270 1 2
9 177 246 0 2
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 7 0 0 5 True
1 12 4 2 4 True
2 6 1 0 3 True
3 6 0 0 5 True
4 26 2 1 15 True
5 8 0 0 5 False
6 18 1 3 3 False
7 12 1 0 6 False
8 6 0 0 4 False
9 6 0 1 3 False ,
assists baronKills bountyLevel champLevel championName \
0 4 0 0 16 Tryndamere
1 5 0 0 18 Diana
2 7 0 0 16 Ekko
3 5 0 0 16 Samira
4 14 0 0 14 Thresh
5 6 0 4 17 Sett
6 21 0 1 16 Zac
7 11 1 0 17 Yone
8 10 1 0 16 Ezreal
9 19 0 0 15 Morgana
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 6796 19578 6796
1 1427 35020 1427
2 2057 3361 2057
3 3641 8337 3641
4 1450 2777 1450
5 8141 10827 8141
6 1108 12699 1108
7 1338 9844 1338
8 2225 18979 2225
9 1146 6408 1146
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 11 0 0 False False
1 4 1 2 False False
2 6 1 0 False False
3 8 0 1 True False
4 6 2 1 False True
5 6 1 0 False False
6 3 0 0 False False
7 11 0 0 False False
8 3 3 1 False False
9 11 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 11079 TOP 0
1 False 17757 JUNGLE 0
2 False 10829 MIDDLE 0
3 False 14561 BOTTOM 0
4 False 9850 UTILITY 0
5 False 16435 TOP 1
6 False 12906 JUNGLE 0
7 False 11329 MIDDLE 0
8 False 13503 BOTTOM 1
9 False 9922 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 2 3006 1054 6672 6675 1037 1018 3340
1 2 3135 3157 4636 3115 3020 3089 3364
2 2 3100 3152 2033 3191 1082 3020 3340
3 2 3033 6673 3006 6676 3036 1031 3340
4 2 3857 3050 3190 3117 3075 1028 3364
5 0 6630 3053 3158 3071 3077 1011 3340
6 0 3068 3065 3047 3076 3001 0 3363
7 0 1055 6673 3072 3006 1038 0 3340
8 0 3508 3158 6691 3074 3133 0 3340
9 0 3853 4005 3117 3157 3165 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 4 3 1
1 3 12 7 2
2 2 5 2 2
3 2 9 4 2
4 2 4 2 1
5 3 14 5 4
6 1 5 3 2
7 0 3 0 1
8 2 10 6 2
9 1 3 2 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 257 0 0
1 811 279603 25647
2 1091 93591 20652
3 726 9960 3182
4 907 21991 10005
5 972 1280 1280
6 1210 115697 21771
7 384 19903 3929
8 915 17847 7753
9 454 31486 10028
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 8661 44 0
1 10546 247 0
2 10518 8 0
3 9472 4 0
4 9245 4 0
5 18673 8 0
6 15141 104 0
7 11248 8 0
8 6601 20 0
9 11806 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 163750
1 0 2 45386
2 0 3 17908
3 0 4 130648
4 0 5 11318
5 0 6 142300
6 0 7 18479
7 0 8 103479
8 0 9 115835
9 0 10 2668
physicalDamageDealtToChampions physicalDamageTaken role \
0 14809 22490 SOLO
1 3087 15729 NONE
2 2519 13291 SOLO
3 22798 12330 CARRY
4 2182 8828 SUPPORT
5 24899 28872 SOLO
6 1622 24371 NONE
7 8830 14088 SOLO
8 10014 7323 CARRY
9 439 9188 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 6 3 4 190
1 15 11 3 4 98
2 4 14 4 4 98
3 6 3 5 4 150
4 5 14 4 4 125
5 4 4 3 12 182
6 3 4 22 11 180
7 4 4 4 14 177
8 4 7 3 4 178
9 1 14 5 4 83
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 TheHyperSkillz False 100 TOP 5
1 MwistaFista False 100 JUNGLE 13
2 GARC1AS False 100 MIDDLE 31
3 Bong Bon Jovi False 100 BOTTOM 5
4 Ryanorfeed False 100 UTILITY 49
5 Mèliòdas False 200 TOP 40
6 Coolgum15 False 200 JUNGLE 58
7 Antpunisher False 200 MIDDLE 17
8 Thick2BThighs False 200 BOTTOM 0
9 Dublaiar False 200 UTILITY 45
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 2080 178192 15615
1 2080 337707 29777
2 2080 112845 24517
3 2080 156282 28308
4 2080 38496 13098
5 2080 165728 39122
6 2080 142791 25597
7 2080 142330 14342
8 2080 136775 17799
9 2080 34280 10593
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 34763 6469 138 108
1 28009 11858 68 310
2 28504 6652 139 335
3 22682 4349 221 49
4 23318 3041 40 121
5 48959 8687 203 173
6 44218 41573 31 496
7 25822 4368 162 109
8 14081 3835 155 17
9 21651 2559 30 69
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 313 1 14441
1 199 1 12718
2 217 1 1345
3 260 1 15673
4 193 5 5186
5 272 1 22147
6 138 5 8614
7 385 1 18947
8 118 3 3093
9 288 1 126
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 806 3610 2 6
1 1042 1733 1 6
2 1345 4694 1 6
3 2326 879 2 6
4 911 5244 1 6
5 12942 1413 3 7
6 2204 4705 1 7
7 1582 484 0 7
8 32 156 1 7
9 126 656 0 7
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 20 0 2 12 False
1 27 1 1 2 False
2 27 3 0 10 False
3 22 0 2 12 False
4 38 2 2 19 False
5 22 1 1 12 True
6 10 0 1 6 True
7 6 0 0 4 True
8 29 4 3 13 True
9 44 0 6 17 True ,
assists baronKills bountyLevel champLevel championName \
0 4 1 0 15 LeeSin
1 14 0 0 15 Zac
2 11 0 0 16 Malzahar
3 7 0 4 14 Samira
4 18 0 0 14 Thresh
5 4 0 0 16 Camille
6 2 0 0 12 Kayn
7 3 0 0 14 Talon
8 5 0 2 13 Jhin
9 8 0 1 13 Xerath
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3988 6166 3988
1 2069 12315 2069
2 2800 11403 2800
3 2711 9943 2711
4 1508 2491 1508
5 4203 4203 4203
6 0 8852 0
7 0 0 0
8 1797 5601 1797
9 1672 2901 1672
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 8 0 0 False False
1 1 2 2 False False
2 2 0 0 False False
3 7 1 0 False False
4 7 1 0 False False
5 5 1 0 True False
6 4 1 1 False True
7 8 1 0 False False
8 5 0 1 False False
9 7 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False True False
9 True False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 9635 TOP 0
1 True 9903 JUNGLE 0
2 True 13523 MIDDLE 1
3 True 12028 BOTTOM 0
4 True 7940 UTILITY 0
5 True 11774 TOP 0
6 True 7150 JUNGLE 0
7 True 8898 MIDDLE 0
8 True 11671 BOTTOM 0
9 True 9638 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 6630 1055 3053 3047 1036 0 3340
1 0 3047 3068 3075 0 0 0 3364
2 0 3116 6653 3040 3020 1026 1011 3340
3 0 6673 3006 6676 1038 1055 0 3340
4 0 3190 3117 3857 2055 3050 1029 3364
5 1 3111 3078 3074 1037 1031 3044 3340
6 1 6693 1036 3111 1018 1036 1028 3340
7 1 3158 6693 6695 3134 1036 1028 3340
8 1 1055 6671 3009 6676 3086 2015 3340
9 1 3853 6655 3020 4628 3916 0 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 2 5 2 2
1 0 1 0 1
2 1 11 11 3
3 3 11 4 3
4 0 1 0 1
5 1 9 6 2
6 0 1 0 1
7 1 4 2 1
8 2 5 2 2
9 2 6 3 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 430 25012 2206
1 944 99929 7354
2 1004 147404 27775
3 453 7474 3648
4 385 10475 3846
5 1135 1181 1181
6 1248 6699 0
7 859 0 0
8 939 2976 684
9 854 61449 23717
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 3681 4 0
1 5819 124 0
2 2781 0 0
3 6970 16 0
4 8951 0 0
5 9264 0 0
6 9174 96 0
7 12056 8 0
8 8353 19 0
9 7729 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 49075
1 0 2 19524
2 0 3 13462
3 0 4 66336
4 0 5 3991
5 0 6 100726
6 0 7 89411
7 0 8 93723
8 0 9 105992
9 0 10 3157
physicalDamageDealtToChampions physicalDamageTaken role \
0 7738 14869 SOLO
1 959 15738 NONE
2 1366 9434 SOLO
3 13630 11947 CARRY
4 296 7750 SUPPORT
5 11672 12850 SOLO
6 2429 13180 NONE
7 9892 8634 SOLO
8 9043 7605 CARRY
9 406 4283 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 12 5 14 85
1 3 4 18 11 180
2 4 4 3 12 95
3 3 7 3 4 178
4 2 14 2 4 83
5 2 12 2 4 202
6 9 11 3 4 67
7 4 4 4 14 180
8 3 4 3 7 140
9 4 4 5 21 124
summonerName teamEarlySurrendered teamId teamPosition \
0 StrugglingMuffin False 100 TOP
1 Coolgum15 False 100 JUNGLE
2 fetsnorlax False 100 MIDDLE
3 Thick2BThighs False 100 BOTTOM
4 Dublaiar False 100 UTILITY
5 ANTIVAX DADDY420 False 200 TOP
6 5cc False 200 JUNGLE
7 qwerto False 200 MIDDLE
8 Jaegerin False 200 BOTTOM
9 10tactreB False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 9 1800 77121 10593
1 28 1800 129379 9247
2 47 1800 160866 29141
3 2 1800 76212 17784
4 24 1800 18666 4345
5 17 1800 116729 14882
6 8 1800 100398 3147
7 2 1800 94239 10408
8 6 1800 118602 9769
9 31 1800 68654 24476
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 22223 3970 111 134
1 23594 33892 23 429
2 12610 1650 212 341
3 19378 4504 89 22
4 19224 1209 32 55
5 23585 3918 201 97
6 22440 9773 15 190
7 20951 1861 147 140
8 16079 3791 155 45
9 12231 240 36 160
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 187 1 3034
1 27 5 9925
2 30 1 0
3 196 2 2400
4 135 4 4198
5 181 1 14822
6 107 1 4287
7 259 1 516
8 182 2 9633
9 257 1 4047
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 649 3672 2 3
1 933 2035 1 3
2 0 395 1 3
3 504 460 3 3
4 202 2522 0 3
5 2028 1471 0 7
6 717 86 0 7
7 516 260 0 7
8 41 120 1 7
9 352 218 1 7
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 7 0 0 8 True
1 21 2 2 6 True
2 13 0 1 8 True
3 18 1 1 9 True
4 28 2 3 11 True
5 19 1 1 9 False
6 16 1 0 9 False
7 22 1 2 9 False
8 4 0 0 2 False
9 29 0 1 14 False ,
assists baronKills bountyLevel champLevel championName \
0 0 0 1 12 Heimerdinger
1 7 0 1 11 Shyvana
2 5 0 5 12 Irelia
3 6 0 6 10 Vayne
4 7 0 1 8 Soraka
5 1 0 0 10 Garen
6 3 0 0 8 Kayn
7 1 0 0 10 Viego
8 0 0 0 9 Jhin
9 5 0 0 9 Thresh
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2295 2295 2295
1 0 12141 0
2 2407 7309 2407
3 1392 4917 1392
4 0 119 0
5 178 5978 178
6 0 9775 0
7 1755 1755 1755
8 2726 3861 2726
9 109 109 109
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 2 0 0 False False
1 5 0 2 False False
2 1 0 0 False True
3 2 0 0 False False
4 3 1 0 False False
5 3 0 0 False False
6 5 0 0 False False
7 5 0 0 False False
8 3 0 0 False False
9 3 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False True False
3 True False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 6279 TOP 0
1 True 6925 JUNGLE 0
2 True 9024 MIDDLE 0
3 True 7228 BOTTOM 0
4 True 4007 UTILITY 0
5 True 4966 TOP 0
6 True 4756 JUNGLE 0
7 True 4715 MIDDLE 0
8 True 6905 BOTTOM 0
9 True 4175 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3070 6653 3020 1052 0 0 3340
1 0 3020 2031 4636 1042 0 0 3364
2 0 1055 3153 3047 6670 1036 0 3340
3 0 1055 6672 3006 0 0 0 3513
4 0 6617 1001 0 3851 0 0 3364
5 0 1054 2031 3051 3067 3006 1037 3340
6 0 6630 1001 1029 2031 0 0 3340
7 0 1037 3123 1001 1053 1043 1055 3340
8 0 3009 6671 1055 3134 3123 0 3340
9 0 3855 1033 2055 3117 1029 3067 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 2 0 1
1 0 3 0 1
2 2 7 5 1
3 1 6 6 3
4 0 1 0 1
5 1 3 3 1
6 0 1 0 1
7 0 1 0 1
8 1 7 7 2
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 405 57426 10927
1 247 62875 8189
2 255 8176 3331
3 209 0 0
4 334 4664 1956
5 793 0 0
6 660 4067 0
7 419 1101 699
8 787 3791 837
9 474 4980 2737
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 199 0 0
1 2182 99 1
2 1058 8 0
3 723 8 0
4 949 0 0
5 8922 0 0
6 3197 60 0
7 6520 0 0
8 2558 0 0
9 4062 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 12745
1 0 2 23574
2 0 3 68083
3 0 4 36638
4 0 5 356
5 0 6 41616
6 0 7 42627
7 0 8 41095
8 0 9 50045
9 0 10 2344
physicalDamageDealtToChampions physicalDamageTaken role \
0 1575 5565 SUPPORT
1 1166 15412 SUPPORT
2 10382 9122 DUO
3 6271 6098 SUPPORT
4 109 2604 SUPPORT
5 3730 5689 SUPPORT
6 3507 12457 SUPPORT
7 3508 5555 SUPPORT
8 6788 3876 DUO
9 709 3274 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 12 1 4 45
1 11 11 4 6 87
2 2 4 4 14 431
3 3 7 3 4 117
4 1 14 0 4 86
5 3 4 4 14 177
6 9 11 1 4 83
7 3 4 3 14 35
8 3 7 2 4 178
9 2 4 3 14 180
summonerName teamEarlySurrendered teamId teamPosition \
0 Face Your Fears False 100 TOP
1 IgnisLuna False 100 JUNGLE
2 Daisuke423 False 100 MIDDLE
3 Gank Please False 100 BOTTOM
4 CoralCoffeee False 100 UTILITY
5 PinkPocket False 200 TOP
6 Dublaiar False 200 JUNGLE
7 naxpsq False 200 MIDDLE
8 Thick2BThighs False 200 BOTTOM
9 Coolgum15 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 18 1069 75896 12503
1 3 1069 97523 9562
2 11 1069 78534 14125
3 8 1069 46039 8062
4 18 1069 5233 2278
5 7 1069 49858 5166
6 6 1069 54858 3781
7 5 1069 42592 4603
8 5 1069 53837 7626
9 19 1069 9311 3822
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 6160 276 108 210
1 18729 5118 29 162
2 10649 3485 123 40
3 7307 2746 78 12
4 3553 5931 5 85
5 15020 569 69 171
6 16251 5226 10 167
7 12342 1756 70 38
8 6796 1842 100 65
9 8325 113 19 57
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 48 1 5725
1 102 1 11074
2 14 1 2275
3 20 2 9401
4 42 5 212
5 62 1 8241
6 90 1 8164
7 71 1 396
8 55 2 0
9 35 2 1986
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 395 1 1
1 206 1133 0 1
2 412 468 1 1
3 1791 485 0 1
4 212 0 0 1
5 1436 408 0 2
6 274 596 0 2
7 396 266 0 2
8 0 361 1 2
9 376 989 0 2
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 7 0 0 5 True
1 7 0 1 1 True
2 8 0 0 5 True
3 7 0 0 3 True
4 13 1 1 6 True
5 4 0 0 4 False
6 5 0 0 3 False
7 5 0 0 3 False
8 7 0 0 5 False
9 10 1 0 7 False ,
assists baronKills bountyLevel champLevel championName \
0 4 0 5 13 Nocturne
1 5 0 5 13 XinZhao
2 12 0 4 13 Ekko
3 6 0 0 12 Samira
4 15 0 2 10 Thresh
5 1 0 0 11 TahmKench
6 0 0 0 10 MasterYi
7 1 0 0 11 Vladimir
8 1 0 1 11 Jhin
9 4 0 0 10 Brand
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 5706 18738 5706
1 828 20319 828
2 1783 2043 1783
3 4004 5639 4004
4 1707 1707 1707
5 0 0 0
6 0 6446 0
7 0 0 0
8 2541 3016 2541
9 698 1238 698
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 1 2 0 False True
1 2 7 3 True False
2 0 0 0 True False
3 3 1 0 False False
4 1 0 0 False False
5 6 1 0 False False
6 9 0 1 False False
7 5 0 0 False False
8 3 2 0 False False
9 8 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False True False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 9004 TOP 0
1 True 9517 JUNGLE 0
2 True 8101 MIDDLE 0
3 True 9186 BOTTOM 0
4 True 6246 UTILITY 0
5 True 5189 TOP 0
6 True 5906 JUNGLE 0
7 True 5801 MIDDLE 0
8 True 8835 BOTTOM 0
9 True 6233 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 2033 6693 3181 3006 0 0 3340
1 0 6672 2031 3153 0 3006 0 3364
2 0 3152 3020 1043 2033 1026 1052 3340
3 0 6673 3006 6676 1036 1036 1055 3340
4 0 3855 3190 2031 3117 3067 3024 3364
5 0 1054 3075 3047 1028 0 0 3340
6 0 2031 6691 1036 1036 3006 0 3340
7 0 3152 2031 1082 3020 0 0 3340
8 0 2055 6671 1018 1055 3134 3009 3363
9 0 2003 3853 6653 3020 1026 0 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 2 8 5 1
1 2 9 5 1
2 1 4 4 2
3 1 8 7 1
4 1 2 2 1
5 0 0 0 0
6 0 1 0 1
7 0 1 0 1
8 1 4 2 1
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 566 1000 896
1 437 8988 833
2 0 57768 9098
3 877 4242 1787
4 551 7387 5094
5 387 25387 6810
6 274 4902 0
7 448 24000 2734
8 394 2886 767
9 497 47116 14314
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 6987 12 0
1 7201 120 0
2 2910 0 0
3 4959 4 0
4 3733 0 0
5 4879 0 0
6 4538 98 0
7 4032 0 0
8 2567 0 0
9 2911 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 84427
1 0 2 96418
2 0 3 11910
3 0 4 56726
4 0 5 5471
5 0 6 14817
6 0 7 68941
7 0 8 13442
8 0 9 70251
9 0 10 3881
physicalDamageDealtToChampions physicalDamageTaken role \
0 12461 6846 SOLO
1 11663 15571 NONE
2 1456 6213 SOLO
3 10933 5541 CARRY
4 1123 3693 SUPPORT
5 2033 14719 SOLO
6 6376 13806 NONE
7 290 8335 SOLO
8 9649 6512 CARRY
9 325 8292 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 1 12 2 4 101
1 9 11 4 4 265
2 4 14 2 4 83
3 4 7 3 4 178
4 1 4 4 14 180
5 3 14 4 4 159
6 5 11 2 4 52
7 0 12 0 4 27
8 3 4 3 7 80
9 3 14 3 4 122
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 Erratan False 100 TOP 89
1 Lady Luk False 100 JUNGLE 19
2 Dublaiar False 100 MIDDLE 20
3 Thick2BThighs False 100 BOTTOM 2
4 Coolgum15 False 100 UTILITY 32
5 Goon Kench False 200 TOP 22
6 toddkman11 False 200 JUNGLE 4
7 BigShaft69 False 200 MIDDLE 1
8 Minter34 False 200 BOTTOM 19
9 Tinymexican False 200 UTILITY 10
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1418 90393 13851
1 1418 119258 13430
2 1418 72802 10838
3 1418 62160 12957
4 1418 16033 6850
5 1418 44245 9534
6 1418 83632 7688
7 1418 37443 3025
8 1418 75832 10506
9 1418 55688 15100
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 14936 8249 101 209
1 23559 12975 13 423
2 9469 2982 131 195
3 10591 2973 122 45
4 7653 1884 21 91
5 20513 3044 93 135
6 18684 4881 11 56
7 12690 5148 74 87
8 9819 3123 133 63
9 11465 1177 35 18
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 27 1 4965
1 39 1 13851
2 0 1 3124
3 30 2 1192
4 16 5 3174
5 167 1 4040
6 237 1 9788
7 148 1 0
8 62 3 2695
9 169 1 4690
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 493 1103 3 1
1 933 786 1 1
2 284 345 0 1
3 236 90 1 1
4 632 226 0 1
5 690 914 0 5
6 1311 340 0 5
7 0 323 0 5
8 90 740 1 5
9 460 261 0 5
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 19 2 1 9 True
1 29 8 4 11 True
2 11 0 0 7 True
3 13 1 1 7 True
4 18 2 2 9 True
5 7 1 0 5 False
6 13 0 0 5 False
7 12 0 1 6 False
8 12 3 0 5 False
9 28 0 1 19 False ,
assists baronKills bountyLevel champLevel championName \
0 0 0 0 10 Gwen
1 2 0 2 10 Zac
2 2 0 0 12 Ekko
3 4 0 0 9 Jinx
4 4 0 0 9 Lulu
5 4 0 6 12 MonkeyKing
6 5 0 3 12 Volibear
7 2 0 0 12 Sylas
8 3 0 2 10 Samira
9 6 0 1 10 Taric
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 0 174 0
1 0 2220 0
2 1639 2441 1639
3 1278 2124 1278
4 522 522 522
5 1335 8275 1335
6 663 29066 663
7 808 1901 808
8 2487 3868 2487
9 906 1654 906
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 6 0 0 False False
1 0 0 1 False False
2 1 0 0 False False
3 5 1 0 False False
4 4 1 0 False False
5 0 2 0 False True
6 0 0 2 False False
7 3 1 0 False False
8 3 0 0 False False
9 1 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 True False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 4255 TOP 0
1 True 5868 JUNGLE 0
2 True 6631 MIDDLE 0
3 True 5251 BOTTOM 0
4 True 4820 UTILITY 0
5 True 8158 TOP 0
6 True 8691 JUNGLE 0
7 True 5641 MIDDLE 0
8 True 7636 BOTTOM 0
9 True 5790 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 4635 3047 1026 0 0 1055 3340
1 0 3068 2031 3047 3076 0 0 3340
2 0 3152 1056 3916 1082 1028 3020 3340
3 0 1018 6670 3006 3123 1037 0 3340
4 0 3853 3158 6617 1052 2055 0 3364
5 0 1054 6632 3111 3067 3133 1036 3340
6 0 3047 1028 6662 3076 1057 1036 3364
7 0 4633 3158 3070 1036 1082 0 3340
8 0 1055 6673 1038 3006 1053 2003 3340
9 0 3859 2003 3190 3067 1027 3111 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 0 1 0 1
1 1 2 2 1
2 1 3 3 2
3 0 0 0 0
4 0 1 0 1
5 1 6 6 1
6 1 3 3 1
7 0 0 0 0
8 2 4 2 1
9 1 3 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 361 6824 1182
1 0 60009 5916
2 849 52567 7430
3 327 1079 449
4 505 5594 3023
5 0 6915 1464
6 0 61952 2496
7 502 34367 4505
8 329 6570 1271
9 631 8559 2580
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 2699 0 0
1 3608 85 1
2 3816 0 0
3 2011 0 0
4 1554 0 0
5 2613 15 0
6 2855 112 0
7 6200 8 0
8 3349 8 0
9 4188 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 7926
1 0 2 13425
2 0 3 11438
3 0 4 57708
4 0 5 712
5 0 6 43482
6 0 7 50797
7 0 8 9942
8 0 9 68693
9 0 10 4189
physicalDamageDealtToChampions physicalDamageTaken role \
0 622 7600 SOLO
1 637 9509 NONE
2 1156 5167 SOLO
3 7083 7188 CARRY
4 401 5468 SUPPORT
5 7694 4720 SOLO
6 4965 7926 NONE
7 105 5803 SOLO
8 10026 8687 CARRY
9 1184 3923 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 12 3 4 83
1 2 4 12 11 180
2 3 14 3 4 217
3 3 4 4 7 166
4 3 3 2 4 178
5 5 14 1 4 94
6 13 11 2 4 120
7 2 4 2 14 142
8 3 7 3 4 35
9 4 14 2 4 61
summonerName teamEarlySurrendered teamId teamPosition \
0 Dublaiar False 100 TOP
1 Coolgum15 False 100 JUNGLE
2 Mrjayarh False 100 MIDDLE
3 calzeld False 100 BOTTOM
4 Thick2BThighs False 100 UTILITY
5 MoroccanGemsbok False 200 TOP
6 BiggaLazyBear False 200 JUNGLE
7 KillaBoogie False 200 MIDDLE
8 Give me Luxanna False 200 BOTTOM
9 SofaTheFish False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1 1235 18744 2622
1 23 1235 80151 6821
2 12 1235 64715 9296
3 15 1235 61282 7532
4 21 1235 6306 3425
5 8 1235 52321 9840
6 15 1235 139684 8251
7 7 1235 56285 5070
8 0 1235 79138 11298
9 17 1235 17031 4453
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 10662 983 54 25
1 14086 17433 16 329
2 9763 3356 110 228
3 9367 2105 103 31
4 7363 711 11 130
5 8164 2118 94 34
6 11020 6941 60 787
7 12555 2727 93 153
8 12036 2761 136 1
9 8288 5137 18 46
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 142 1 3993
1 0 5 6716
2 32 1 710
3 117 3 2495
4 80 3 0
5 0 1 1923
6 0 1 26934
7 84 1 11975
8 60 3 3875
9 16 5 4282
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 817 362 0 3
1 268 969 0 3
2 710 780 0 3
3 0 168 0 3
4 0 340 0 3
5 682 829 1 0
6 789 238 1 0
7 460 552 0 0
8 0 0 1 0
9 687 176 0 0
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 10 0 0 6 False
1 9 0 0 5 False
2 9 0 0 5 False
3 14 1 0 7 False
4 18 2 2 9 False
5 19 2 0 8 True
6 12 0 2 1 True
7 19 1 0 7 True
8 9 0 0 6 True
9 13 0 1 7 True ,
assists baronKills bountyLevel champLevel championName \
0 6 0 0 18 Ryze
1 8 0 2 16 Viego
2 10 1 0 16 Neeko
3 15 0 2 15 Jhin
4 6 0 2 13 Ahri
5 5 0 0 16 Mordekaiser
6 5 0 0 14 Kayn
7 8 0 0 14 Quinn
8 5 0 0 13 Ezreal
9 11 0 0 12 Nautilus
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 9854 16195 9854
1 1543 40681 1543
2 1409 13807 1409
3 613 9732 613
4 606 4016 606
5 4438 6946 4438
6 0 3020 0
7 8234 10575 8234
8 1554 5200 1554
9 0 2664 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 2 1 0 False False
1 5 1 3 False False
2 3 0 0 False True
3 5 0 0 False False
4 5 1 1 False False
5 3 1 0 False False
6 10 2 0 False False
7 7 0 0 False False
8 5 0 0 False False
9 9 4 1 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 True False False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 14861 TOP 0
1 True 13374 JUNGLE 1
2 True 12646 MIDDLE 0
3 True 11711 BOTTOM 0
4 True 8243 UTILITY 0
5 True 12398 TOP 0
6 True 13028 JUNGLE 0
7 True 9258 MIDDLE 0
8 True 10370 BOTTOM 0
9 True 6914 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3040 6656 2420 3165 3020 3089 3340
1 0 6672 3153 3006 6333 1031 0 3364
2 0 3157 3020 0 6655 4628 4630 3340
3 0 6671 3009 3094 6676 1036 0 3340
4 0 6656 2031 3853 3020 4629 0 3364
5 1 2031 2421 4633 4637 1054 3111 3340
6 1 3042 6676 6693 3158 3134 1028 3364
7 1 3006 3181 6671 1042 0 0 3340
8 1 3042 3508 3158 3133 3134 1055 3340
9 1 3860 3047 3068 1033 1029 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 3 3 1
1 2 8 4 1
2 2 10 6 2
3 3 9 3 1
4 1 3 2 1
5 1 5 3 1
6 3 8 3 2
7 0 1 0 1
8 2 5 2 1
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 1039 245958 13815
1 1119 13635 1458
2 1116 97359 25270
3 488 8116 2159
4 746 13689 5153
5 1362 116428 13505
6 495 8782 1788
7 538 0 0
8 859 11254 3455
9 501 11477 5812
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 4812 19 0
1 7732 167 0
2 5288 10 0
3 4864 4 0
4 4380 4 0
5 11744 8 0
6 11130 128 0
7 10096 0 0
8 7358 4 0
9 9739 4 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 12603
1 0 2 150718
2 0 3 20340
3 0 4 97926
4 0 5 5859
5 0 6 18692
6 0 7 130730
7 0 8 105568
8 0 9 88932
9 0 10 6387
physicalDamageDealtToChampions physicalDamageTaken role \
0 836 7851 SOLO
1 7724 23430 NONE
2 1406 8975 SOLO
3 19120 10271 CARRY
4 550 6897 SUPPORT
5 1618 11897 SOLO
6 13072 19423 NONE
7 8225 6080 SOLO
8 8051 7421 CARRY
9 1488 8618 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 4 4 12 331
1 10 11 2 4 94
2 4 4 6 14 147
3 5 7 3 4 149
4 3 3 1 4 57
5 4 4 3 12 179
6 13 11 3 4 112
7 4 14 4 4 90
8 4 7 3 4 83
9 5 14 6 4 178
summonerName teamEarlySurrendered teamId teamPosition \
0 TheKushery False 100 TOP
1 BrooklynEscobar False 100 JUNGLE
2 AlterKai False 100 MIDDLE
3 gravesummoning False 100 BOTTOM
4 ac3lyn False 100 UTILITY
5 Coolgum15 False 200 TOP
6 catseatsushi False 200 JUNGLE
7 Tribbott False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 Thick2BThighs False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 9 1952 258562 14652
1 8 1952 186054 10148
2 50 1952 131011 27986
3 28 1952 106467 21480
4 31 1952 25925 6954
5 5 1952 136178 15748
6 5 1952 148529 15104
7 14 1952 106488 9145
8 0 1952 109930 11642
9 45 1952 25794 8095
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 12685 3390 281 68
1 32344 14521 25 308
2 15322 923 129 171
3 15513 5052 119 111
4 11383 621 21 98
5 24270 6039 191 59
6 31663 11163 35 189
7 16638 1707 161 116
8 15067 2396 164 28
9 19596 529 37 184
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 91 1 0
1 198 1 21700
2 77 1 13311
3 155 3 424
4 142 1 6375
5 92 1 1057
6 309 1 9016
7 253 1 920
8 110 3 9743
9 224 5 7929
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 22 4 4
1 965 1181 1 4
2 1309 1058 1 4
3 200 377 0 4
4 1250 106 0 4
5 624 628 2 6
6 244 1109 0 6
7 920 461 2 6
8 135 288 0 6
9 794 1238 0 6
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 20 1 2 8 True
1 15 6 1 1 True
2 13 0 2 6 True
3 17 0 0 10 True
4 48 1 4 24 True
5 18 1 2 10 False
6 18 2 4 4 False
7 19 0 0 10 False
8 13 0 0 9 False
9 40 4 2 19 False ,
assists baronKills bountyLevel champLevel championName \
0 3 0 0 15 Mordekaiser
1 2 0 0 13 Kayn
2 2 0 0 14 Pantheon
3 2 0 0 12 Ezreal
4 3 0 0 11 MissFortune
5 8 0 0 15 Ornn
6 8 1 4 15 Khazix
7 6 0 7 15 AurelionSol
8 7 0 9 14 Caitlyn
9 20 0 1 14 Yuumi
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 1806 9485 1806
1 264 17278 264
2 1553 7106 1553
3 580 1015 580
4 416 1959 416
5 3150 4810 3150
6 2807 20583 2807
7 3883 12159 3883
8 9121 22845 9121
9 532 952 532
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 3 1 0 False False
1 5 1 1 False False
2 5 4 0 False False
3 7 0 0 False False
4 8 0 1 False False
5 7 1 0 False False
6 4 5 0 False False
7 2 4 2 False True
8 1 1 0 False False
9 1 5 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 True False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 10740 TOP 0
1 False 9078 JUNGLE 0
2 False 9166 MIDDLE 0
3 False 7548 BOTTOM 0
4 False 6481 UTILITY 0
5 False 8475 TOP 0
6 False 10610 JUNGLE 1
7 False 11914 MIDDLE 0
8 False 13362 BOTTOM 0
9 False 8444 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 1054 2421 4633 3111 4637 3108 3340
1 1 3158 2031 6630 6333 3044 0 3364
2 1 6692 2033 3071 3111 0 0 3363
3 1 3508 3158 3004 0 0 1055 3340
4 1 6653 1052 3020 3853 3070 0 3340
5 0 1054 3111 7004 3075 1006 0 3340
6 0 3158 6693 6695 3134 1037 2055 3364
7 0 2421 3116 2033 7010 3020 1058 3340
8 0 1038 2420 7006 3006 3095 3094 3340
9 0 2065 3011 3853 0 3504 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 6 6 1
1 1 3 2 1
2 1 3 3 2
3 0 2 0 1
4 0 0 0 0
5 0 0 0 0
6 1 5 4 1
7 2 11 7 3
8 2 11 9 2
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 1331 110474 15003
1 960 7770 0
2 954 4906 475
3 789 3504 1482
4 438 32926 7435
5 404 27362 8030
6 463 8874 742
7 713 106837 15033
8 698 6480 2388
9 702 7417 4134
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 6625 8 0
1 10066 123 0
2 5507 15 0
3 4154 0 0
4 5292 4 1
5 10778 0 0
6 6804 130 0
7 5648 24 0
8 3924 12 0
9 1184 4 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 16177
1 0 2 116993
2 0 3 111261
3 0 4 49743
4 0 5 18719
5 0 6 63567
6 0 7 136681
7 0 8 11926
8 0 9 143195
9 0 10 1534
physicalDamageDealtToChampions physicalDamageTaken role \
0 2182 18714 SOLO
1 8610 19588 NONE
2 11120 12447 SOLO
3 3804 9052 CARRY
4 6411 8603 SUPPORT
5 5725 12173 SOLO
6 13964 21771 NONE
7 1579 16250 SOLO
8 21933 8037 CARRY
9 385 4809 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 2 12 179
1 16 11 4 4 63
2 4 4 4 14 348
3 3 7 1 4 81
4 4 4 3 3 155
5 4 4 3 12 176
6 3 4 16 11 298
7 5 4 5 14 339
8 4 7 2 4 317
9 5 3 5 14 210
summonerName teamEarlySurrendered teamId teamPosition \
0 Coolgum15 False 100 TOP
1 Liquid Toaster False 100 JUNGLE
2 Rotome False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 Blame This Guy False 100 UTILITY
5 PotatoGuy319 False 200 TOP
6 BundtCakes69 False 200 JUNGLE
7 Katnip Everdank False 200 MIDDLE
8 MadokaMagiCat False 200 BOTTOM
9 supafierce False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 5 1743 134505 18019
1 12 1743 138564 9199
2 16 1743 120972 12397
3 0 1743 53247 5286
4 16 1743 52539 14740
5 35 1743 100975 13792
6 7 1743 153381 15329
7 22 1743 121459 16924
8 28 1743 152694 25680
9 8 1743 9960 5528
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 26009 7209 172 46
1 31583 12568 26 355
2 18236 4013 159 40
3 13426 1080 114 0
4 14320 238 37 307
5 26632 3431 162 435
6 29429 14614 27 150
7 22972 7247 144 341
8 13378 7194 162 114
9 6088 12617 7 33
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 91 1 7854
1 191 1 13801
2 129 1 4804
3 220 3 0
4 234 1 893
5 175 1 10046
6 100 1 7826
7 67 1 2696
8 21 3 3018
9 21 5 1008
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 833 670 1 7
1 589 1928 1 7
2 802 282 0 7
3 0 220 0 7
4 893 424 0 7
5 36 3680 1 3
6 622 853 1 3
7 311 1074 2 3
8 1358 1416 3 3
9 1008 93 0 3
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 16 1 2 8 False
1 15 1 3 2 False
2 21 4 0 8 False
3 16 0 2 9 False
4 31 0 3 18 False
5 17 1 1 10 True
6 28 7 3 5 True
7 27 4 2 13 True
8 13 2 4 5 True
9 47 5 4 22 True ,
assists baronKills bountyLevel champLevel championName \
0 0 0 0 3 Mordekaiser
1 0 0 0 3 Karthus
2 0 0 0 3 Veigar
3 0 0 0 1 Ezreal
4 0 0 0 3 Pantheon
5 0 0 0 3 Aatrox
6 0 0 0 3 Sett
7 0 0 0 3 Viktor
8 0 0 0 2 Twitch
9 0 0 0 2 Soraka
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 0 0 0
1 0 0 0
2 0 0 0
3 0 0 0
4 0 0 0
5 0 0 0
6 0 0 0
7 0 0 0
8 272 272 272
9 82 82 82
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 0 0 0 False False
1 0 0 0 False False
2 0 0 0 False False
3 0 0 0 False False
4 0 0 0 False False
5 0 0 0 False False
6 0 0 0 False False
7 0 0 0 False False
8 0 0 0 False False
9 0 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False True
1 False False True
2 False False True
3 False False True
4 False False True
5 False False True
6 False False True
7 False False True
8 False False True
9 False False True
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 946 TOP 0
1 False 1068 JUNGLE 0
2 False 907 MIDDLE 0
3 False 683 AFK 0
4 False 715 UTILITY 0
5 False 904 TOP 0
6 False 1053 JUNGLE 0
7 False 1002 MIDDLE 0
8 False 1016 BOTTOM 0
9 False 761 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1054 2003 0 0 0 0 3340
1 0 1039 2031 0 0 0 0 3340
2 0 1056 2003 0 0 0 0 3340
3 0 2003 2010 0 0 0 1055 3340
4 0 3854 2003 0 0 0 0 3340
5 0 1054 0 0 0 0 0 3340
6 0 1035 2031 0 0 0 0 3364
7 0 1056 2003 2010 0 0 0 3340
8 0 1056 2003 0 0 0 0 3340
9 0 3850 2003 0 0 0 0 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 0 0 0 0
1 0 0 0 0
2 0 0 0 0
3 0 0 0 0
4 0 0 0 0
5 0 0 0 0
6 0 0 0 0
7 0 0 0 0
8 0 0 0 0
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 0 2011 326
1 0 7454 0
2 0 2433 33
3 0 0 0
4 0 0 0
5 0 0 0
6 0 1731 0
7 0 654 323
8 0 272 0
9 0 261 91
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 0 0 0
1 359 16 0
2 323 0 0
3 0 0 0
4 91 0 0
5 326 0 0
6 293 16 0
7 33 0 0
8 0 0 0
9 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 1253
1 0 2 1058
2 0 3 799
3 0 4 0
4 0 5 867
5 0 6 3345
6 0 7 6788
7 0 8 1269
8 0 9 2502
9 0 10 416
physicalDamageDealtToChampions physicalDamageTaken role summoner1Casts \
0 225 512 DUO 1
1 0 1362 DUO 0
2 0 0 DUO 0
3 0 0 DUO 0
4 270 93 DUO 0
5 302 342 DUO 1
6 0 1537 DUO 0
7 0 183 DUO 0
8 40 33 DUO 0
9 0 427 DUO 0
summoner1Id summoner2Casts summoner2Id summonerLevel summonerName \
0 4 0 12 179 Coolgum15
1 4 1 11 102 tekstudios
2 4 0 12 348 Rotome
3 7 0 4 81 Dublaiar
4 4 1 14 273 SkybeatzTech
5 4 0 12 222 QianNidalao
6 4 1 11 159 S0ULmann
7 12 0 4 83 Uzi RNG
8 4 0 7 259 gilgadu
9 4 0 7 106 Deez Nuts Vlogs
teamEarlySurrendered teamId teamPosition timeCCingOthers timePlayed \
0 True 100 TOP 0 199
1 True 100 JUNGLE 0 199
2 True 100 MIDDLE 0 199
3 True 100 AFK 0 199
4 True 100 UTILITY 0 199
5 False 200 TOP 0 199
6 False 200 JUNGLE 0 199
7 False 200 MIDDLE 0 199
8 False 200 BOTTOM 0 199
9 False 200 UTILITY 0 199
totalDamageDealt totalDamageDealtToChampions totalDamageTaken totalHeal \
0 5649 551 512 0
1 9200 0 1721 674
2 3232 33 323 20
3 0 0 0 0
4 889 292 196 0
5 3345 302 669 68
6 9977 0 1831 785
7 1924 323 216 0
8 3162 51 33 0
9 678 91 449 50
totalMinionsKilled totalTimeCCDealt totalTimeSpentDead totalUnitsHealed \
0 12 1 0 0
1 0 37 0 1
2 13 0 0 1
3 0 0 0 0
4 1 1 0 0
5 10 5 0 1
6 0 8 0 1
7 16 0 0 0
8 17 21 0 0
9 0 3 0 1
trueDamageDealt trueDamageDealtToChampions trueDamageTaken turretKills \
0 2385 0 0 0
1 688 0 0 0
2 0 0 0 0
3 0 0 0 0
4 22 22 11 0
5 0 0 0 0
6 1456 0 0 0
7 0 0 0 0
8 387 11 0 0
9 0 0 22 0
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 0 0 0 0
1 0 0 0 0
2 0 1 0 0
3 0 0 0 0
4 0 0 0 0
5 0 0 0 0
6 0 1 0 0
7 0 0 0 0
8 0 0 0 0
9 0 0 0 0
wardsPlaced win
0 1 False
1 0 False
2 1 False
3 0 False
4 1 False
5 0 True
6 1 True
7 0 True
8 0 True
9 1 True ,
assists baronKills bountyLevel champLevel championName \
0 7 0 0 16 Kindred
1 1 0 0 14 Mordekaiser
2 3 0 0 18 Tryndamere
3 5 0 0 16 Draven
4 15 0 0 15 Zilean
5 9 0 0 16 Ezreal
6 14 1 1 18 Pantheon
7 11 0 2 18 Evelynn
8 19 0 2 18 Senna
9 20 0 0 16 Zyra
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 986 6489 986
1 1411 9828 1411
2 949 5968 949
3 4196 4196 4196
4 1938 2752 1938
5 1073 7558 1073
6 4955 16787 4955
7 2772 27039 2772
8 6862 13150 6862
9 852 2364 852
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 15 0 1 False False
1 10 1 0 False False
2 9 0 0 False False
3 12 0 0 False False
4 12 6 0 False False
5 4 0 0 False False
6 5 1 1 False False
7 4 1 2 False False
8 8 1 0 False True
9 11 1 1 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 13497 JUNGLE 0
1 False 9606 TOP 0
2 False 16004 MIDDLE 0
3 False 16117 BOTTOM 0
4 False 9856 UTILITY 0
5 False 9541 BOTTOM 0
6 False 16035 TOP 1
7 False 17276 JUNGLE 0
8 False 18010 MIDDLE 0
9 False 10557 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 6676 3031 3006 6672 3086 1042 3340
1 1 1054 3076 3068 3047 4637 2420 3340
2 1 3158 3508 6631 3031 3046 3035 3340
3 1 3072 6691 3006 6676 3031 1031 3340
4 1 3020 3853 3040 6653 3108 0 3364
5 0 3508 3158 3004 3133 1036 1055 3340
6 0 6692 1033 3111 3071 3053 6333 3363
7 0 4636 3157 3100 3089 3020 3102 3340
8 0 3031 6691 3009 3042 6676 3094 3340
9 0 3853 6653 3020 3165 1011 1052 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 7 2 2
1 0 2 0 1
2 3 10 3 2
3 4 13 4 2
4 0 0 0 0
5 0 2 0 1
6 3 14 5 3
7 5 22 8 2
8 4 17 6 2
9 1 3 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 564 18279 3086
1 686 79430 8111
2 570 0 0
3 338 0 0
4 390 59326 14306
5 691 9882 1974
6 865 11343 2499
7 715 168410 34320
8 711 725 407
9 336 73881 27194
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 15518 113 0
1 7673 16 0
2 15457 15 0
3 17990 18 0
4 11730 2 0
5 3976 5 0
6 8027 25 0
7 5364 140 0
8 6007 8 0
9 4735 11 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 113338
1 0 2 12895
2 0 3 200260
3 0 4 158972
4 0 5 2504
5 0 6 73527
6 0 7 173371
7 0 8 15545
8 0 9 162649
9 0 10 2348
physicalDamageDealtToChampions physicalDamageTaken role \
0 14704 21875 NONE
1 1028 22494 SOLO
2 21002 20653 CARRY
3 30024 24953 SOLO
4 245 12317 SUPPORT
5 4655 9518 SOLO
6 26272 21568 NONE
7 752 27792 NONE
8 41372 18796 SOLO
9 319 16640 NONE
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 11 11 328
1 3 4 2 12 48
2 6 14 5 4 111
3 5 4 7 7 232
4 2 4 0 14 423
5 4 7 2 4 81
6 5 4 3 12 348
7 6 4 23 11 179
8 6 4 5 14 216
9 4 4 8 21 50
summonerName teamEarlySurrendered teamId teamPosition \
0 Poor Lost Soulz False 100 JUNGLE
1 crackerkelly1023 False 100 TOP
2 SirTuck11 False 100 MIDDLE
3 KHAhoot Me Daddy False 100 BOTTOM
4 Boast False 100 UTILITY
5 Dublaiar False 200 BOTTOM
6 Rotome False 200 TOP
7 Coolgum15 False 200 JUNGLE
8 PoweradePal False 200 MIDDLE
9 Tatertits524 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 4 2163 143959 20186
1 3 2163 95318 9140
2 11 2163 215593 22704
3 14 2163 168693 30489
4 12 2163 61830 14552
5 0 2163 83409 6630
6 32 2163 189038 28979
7 15 2163 193615 36678
8 29 2163 166085 44105
9 20 2163 81190 27514
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 38296 12849 33 172
1 31267 4415 126 44
2 37560 8576 210 238
3 43478 9867 167 143
4 24199 7968 49 133
5 13510 2797 112 0
6 31702 10007 188 92
7 34399 15984 16 269
8 25862 14047 188 85
9 21927 1106 56 62
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 534 10 12340
1 360 1 2992
2 303 1 15333
3 414 3 9720
4 380 3 0
5 140 3 0
6 221 1 4324
7 158 1 9658
8 344 4 2710
9 343 1 4960
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 2395 902 0 7
1 0 1098 1 7
2 1702 1449 1 7
3 465 535 3 7
4 0 151 0 7
5 0 15 0 5
6 208 2106 3 5
7 1604 1242 1 5
8 2324 1058 1 5
9 0 551 1 5
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 23 0 1 12 False
1 30 1 2 11 False
2 18 0 3 9 False
3 19 0 1 10 False
4 54 6 6 17 False
5 10 0 0 9 True
6 39 2 0 10 True
7 28 1 1 13 True
8 15 1 1 7 True
9 42 1 0 25 True ,
assists baronKills bountyLevel champLevel championName \
0 7 0 0 13 Taric
1 7 0 0 13 Sejuani
2 0 0 0 13 Kayle
3 6 0 0 14 Xayah
4 11 0 0 13 Yuumi
5 15 0 1 15 Aatrox
6 21 1 1 16 Skarner
7 9 0 2 16 Akali
8 20 0 6 15 Quinn
9 26 0 0 14 Morgana
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 0 0 0
1 402 4942 402
2 0 826 0
3 2208 2382 2208
4 824 903 824
5 4829 6288 4829
6 1789 35881 1789
7 6350 10062 6350
8 8278 24049 8278
9 2884 3601 2884
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 9 1 0 False False
1 7 1 0 False False
2 8 2 0 False False
3 9 0 0 False False
4 12 2 0 False False
5 4 5 0 False False
6 3 1 2 True False
7 4 2 1 False False
8 4 0 0 True False
9 6 0 1 False True
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False True False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 7319 TOP 0
1 False 8490 JUNGLE 0
2 False 9804 MIDDLE 0
3 False 15222 BOTTOM 0
4 False 7773 UTILITY 0
5 False 10603 TOP 0
6 False 13772 JUNGLE 0
7 False 13905 MIDDLE 0
8 False 14330 BOTTOM 1
9 False 11317 UTILITY 2
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 3 2033 6664 3143 0 3158 0 3340
1 3 3111 2031 3068 1057 3076 1011 3340
2 3 1056 1082 3115 4633 3006 1058 3363
3 3 6671 2420 3072 3508 3046 3006 3340
4 3 3853 2055 2031 6617 6616 3114 3364
5 0 6630 0 3071 0 3047 3076 3340
6 0 3111 3076 6664 3742 4401 1011 3364
7 0 4636 3157 3100 3020 3041 0 3363
8 0 6671 1055 3006 3095 6676 3123 3363
9 0 3853 6656 3157 3165 3020 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 2 0 1
1 1 2 2 2
2 2 5 3 2
3 3 10 3 3
4 1 2 2 1
5 0 2 0 1
6 2 13 7 3
7 3 12 6 2
8 2 13 6 3
9 1 5 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 422 40601 7042
1 603 52767 7233
2 798 69278 7815
3 327 1133 1133
4 493 9432 6676
5 797 785 60
6 962 68089 6883
7 580 110027 26481
8 583 4518 1547
9 322 53260 17936
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 13215 4 0
1 11900 95 0
2 14724 1 0
3 6999 5 0
4 7369 0 0
5 8575 12 0
6 5841 148 0
7 7775 4 0
8 4712 22 0
9 5374 32 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 20285
1 0 2 68095
2 0 3 22860
3 0 4 150063
4 0 5 3572
5 0 6 106504
6 0 7 82708
7 0 8 19150
8 0 9 136882
9 0 10 6884
physicalDamageDealtToChampions physicalDamageTaken role \
0 3702 15463 SOLO
1 6941 19444 NONE
2 3035 10944 SOLO
3 28892 14800 CARRY
4 2162 10642 SUPPORT
5 13824 17598 SOLO
6 8980 21518 NONE
7 1924 12764 SOLO
8 27227 11950 CARRY
9 1713 13246 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 7 6 3 12 15
1 4 4 16 11 179
2 4 4 3 12 347
3 4 7 3 4 25
4 7 3 8 14 26
5 3 4 3 12 143
6 4 4 19 11 304
7 5 14 4 4 507
8 4 4 4 7 328
9 8 14 4 4 10
summonerName teamEarlySurrendered teamId teamPosition \
0 RyeBreadPitt False 100 TOP
1 Coolgum15 False 100 JUNGLE
2 Rotome False 100 MIDDLE
3 salty piss False 100 BOTTOM
4 zonedoutoflane False 100 UTILITY
5 Petr1ch0r00 False 200 TOP
6 JackXJX False 200 JUNGLE
7 Blind Sonic False 200 MIDDLE
8 heh im in dangr False 200 BOTTOM
9 BIind Sonic False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 55 1873 65876 10744
1 26 1873 125559 15093
2 9 1873 101001 10851
3 18 1873 151765 30275
4 17 1873 17498 10492
5 20 1873 115224 13945
6 62 1873 169491 18323
7 2 1873 141080 29527
8 42 1873 143703 29053
9 84 1873 61214 20718
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 29167 9359 93 252
1 32829 6061 23 336
2 26727 5006 150 207
3 22816 3114 177 38
4 18951 15139 22 42
5 26913 12553 160 213
6 28033 11577 14 780
7 21282 4448 203 59
8 17017 6734 130 208
9 18931 5703 23 158
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 264 4 4990
1 195 5 4696
2 235 5 8862
3 192 4 568
4 278 5 4492
5 107 1 7935
6 128 1 18692
7 136 1 11903
8 86 3 2302
9 148 1 1068
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 488 0 10
1 918 1484 0 10
2 0 1058 0 10
3 250 1016 1 10
4 1652 939 0 10
5 60 738 3 1
6 2458 674 1 1
7 1122 743 1 1
8 278 355 4 1
9 1068 310 0 1
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 19 1 2 11 False
1 14 1 1 7 False
2 13 2 0 7 False
3 9 0 1 6 False
4 32 3 1 14 False
5 28 5 1 12 True
6 38 1 2 3 True
7 13 2 2 5 True
8 21 0 0 9 True
9 56 1 3 22 True ,
assists baronKills bountyLevel champLevel championName \
0 2 0 0 11 Annie
1 4 0 0 11 Viego
2 0 0 0 12 Aatrox
3 2 0 0 10 Caitlyn
4 3 0 0 8 Thresh
5 6 0 1 12 Taric
6 8 0 3 11 Sejuani
7 5 0 6 12 Kayle
8 3 0 0 9 Twitch
9 9 0 0 9 Soraka
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 49 49 49
1 0 118 0
2 2509 3587 2509
3 886 886 886
4 53 53 53
5 2173 2672 2173
6 420 19771 420
7 1095 3140 1095
8 63 63 63
9 254 431 254
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 3 1 0 False False
1 4 0 0 False False
2 7 1 0 False False
3 2 0 0 False False
4 4 0 0 False False
5 2 2 0 True False
6 2 1 2 False True
7 0 2 0 False False
8 3 1 0 False False
9 1 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 5873 MIDDLE 0
1 True 6427 JUNGLE 0
2 True 8234 TOP 0
3 True 6020 BOTTOM 0
4 True 3805 UTILITY 0
5 True 7354 TOP 0
6 True 8425 JUNGLE 0
7 True 8072 MIDDLE 0
8 True 5280 BOTTOM 0
9 True 4893 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3020 3070 6655 0 0 0 3340
1 0 6672 2031 3006 1053 0 0 3364
2 0 1054 3111 6630 3053 0 0 3340
3 0 6672 1055 3006 1042 0 0 3340
4 0 3117 3855 3105 3067 0 0 3364
5 0 2033 0 3143 3158 6664 0 3340
6 0 2055 2031 3047 3068 1011 3076 3340
7 0 1056 2031 3006 3115 4635 1026 3363
8 0 1056 1082 3115 3006 0 0 3340
9 0 3853 6617 1001 0 0 0 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 0 1 0 1
1 1 2 2 1
2 0 4 0 1
3 0 1 0 1
4 0 0 0 0
5 1 6 4 1
6 2 6 3 2
7 1 6 6 1
8 0 1 0 1
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 673 36696 5527
1 394 7862 834
2 243 0 0
3 784 90 90
4 340 4784 1716
5 614 36725 8072
6 572 37760 4010
7 0 35430 6875
8 518 4258 1587
9 469 7467 3121
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 2204 0 0
1 6964 89 0
2 10785 12 0
3 2760 0 0
4 2974 0 0
5 2294 4 0
6 3693 87 0
7 1609 4 0
8 1174 0 0
9 729 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 8421
1 0 2 55370
2 0 3 76798
3 0 4 47978
4 0 5 4389
5 0 6 19870
6 0 7 46481
7 0 8 20709
8 0 9 22067
9 0 10 3252
physicalDamageDealtToChampions physicalDamageTaken role \
0 690 2521 SUPPORT
1 7576 9585 SUPPORT
2 15267 11901 SUPPORT
3 3704 3456 SUPPORT
4 674 4030 SUPPORT
5 5196 14023 SUPPORT
6 6076 13062 SUPPORT
7 2531 3110 DUO
8 3313 6569 SUPPORT
9 1458 4354 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 14 2 4 21
1 12 11 3 4 43
2 2 12 3 4 18
3 2 7 1 4 52
4 2 4 3 14 28
5 5 6 3 12 15
6 3 4 12 11 179
7 1 4 1 12 347
8 2 4 2 7 86
9 2 4 3 21 22
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 Ruined D False 100 MIDDLE 16
1 666 SWAN 666 False 100 JUNGLE 9
2 ZayneWins False 100 TOP 19
3 KhaledKattan False 100 BOTTOM 10
4 Armarellion False 100 UTILITY 14
5 RyeBreadPitt False 200 TOP 38
6 Coolgum15 False 200 JUNGLE 17
7 Rotome False 200 MIDDLE 2
8 MrMcMoosers False 200 BOTTOM 7
9 douchiop False 200 UTILITY 23
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1155 47322 6782
1 1155 70057 9524
2 1155 77494 15627
3 1155 48831 3889
4 1155 12624 2731
5 1155 57170 13437
6 1155 94534 10627
7 1155 66285 9407
8 1155 41291 7095
9 1155 10720 4580
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 4965 0 127 121
1 17512 7368 9 198
2 23131 9664 108 277
3 7029 1654 135 17
4 7448 363 29 52
5 16796 8107 82 274
6 17391 6658 18 183
7 5018 2094 123 170
8 8743 931 97 144
9 5143 9842 1 134
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 57 0 2204
1 64 1 6824
2 115 1 696
3 27 1 762
4 55 4 3451
5 62 4 574
6 37 4 10292
7 0 5 10145
8 41 2 14965
9 12 5 0
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 564 239 0 2
1 1113 962 0 2
2 360 444 1 2
3 95 813 0 2
4 340 443 0 2
5 168 479 1 1
6 540 635 0 1
7 0 299 1 1
8 2195 999 0 1
9 0 60 0 1
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 12 1 1 7 False
1 8 0 2 0 False
2 7 1 1 4 False
3 8 0 3 2 False
4 21 0 5 8 False
5 14 2 1 8 True
6 8 3 0 5 True
7 14 2 1 6 True
8 6 1 0 5 True
9 18 0 0 14 True ,
assists baronKills bountyLevel champLevel championName \
0 6 0 3 11 Shen
1 2 0 3 10 Khazix
2 4 0 0 11 Galio
3 5 0 3 9 Samira
4 8 0 2 9 Morgana
5 2 0 0 10 Taric
6 1 0 0 9 Nunu
7 1 0 0 11 Leblanc
8 2 0 0 8 Jhin
9 0 0 0 8 Senna
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 1474 1474 1474
1 719 16406 719
2 1523 5609 1523
3 1558 3192 1558
4 898 1407 898
5 146 146 146
6 0 2048 0
7 0 2061 0
8 0 0 0
9 211 211 211
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 1 1 0 True False
1 0 2 2 True False
2 1 1 0 False True
3 2 2 0 True False
4 0 3 0 True False
5 4 0 0 False False
6 5 0 0 False False
7 1 1 0 False False
8 4 0 0 False False
9 2 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 True False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 5863 TOP 0
1 True 6108 JUNGLE 0
2 True 6393 MIDDLE 0
3 True 6646 BOTTOM 0
4 True 5174 UTILITY 0
5 True 4402 TOP 0
6 True 4454 JUNGLE 0
7 True 4394 MIDDLE 0
8 True 4366 BOTTOM 0
9 True 5245 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3047 3068 1029 1054 0 0 3340
1 0 6691 3158 2055 0 0 0 3340
2 0 2031 3152 3111 2420 1082 0 3363
3 0 1055 3134 6673 3006 0 0 3340
4 0 0 3853 3802 3117 2424 0 3364
5 0 2033 6664 0 0 2422 0 3340
6 0 3111 2031 6660 1029 1033 0 3340
7 0 2033 3802 3020 1026 0 0 3340
8 0 6671 1001 0 0 0 1055 3340
9 0 1018 3864 1037 6670 3123 3009 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 4 3 1
1 1 3 3 1
2 1 2 2 1
3 2 5 3 2
4 1 2 2 1
5 0 1 0 1
6 0 0 0 0
7 0 0 0 0
8 0 0 0 0
9 1 3 3 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 472 15323 4733
1 0 6678 161
2 847 58697 4685
3 462 5650 1186
4 0 11786 3082
5 423 17294 2944
6 466 24382 1990
7 851 17983 3433
8 449 543 0
9 850 0 0
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 3935 0 0
1 2156 92 0
2 1736 4 0
3 493 4 0
4 926 0 0
5 5095 0 0
6 2980 80 0
7 3109 0 0
8 2149 0 0
9 1525 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 24604
1 0 2 73989
2 0 3 5756
3 0 4 42851
4 0 5 1756
5 0 6 11160
6 0 7 16313
7 0 8 13488
8 0 9 35545
9 0 10 15137
physicalDamageDealtToChampions physicalDamageTaken role \
0 5617 5358 SUPPORT
1 5258 9901 SUPPORT
2 207 4617 DUO
3 6646 5530 SUPPORT
4 894 4218 SUPPORT
5 1954 8901 SUPPORT
6 615 14569 SUPPORT
7 927 3337 DUO
8 2002 3472 SUPPORT
9 7580 3867 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 4 1 12 327
1 1 4 10 11 240
2 1 4 1 12 244
3 2 7 2 4 478
4 4 14 3 4 366
5 3 6 2 12 261
6 2 4 10 11 179
7 1 14 2 4 108
8 2 7 1 4 76
9 2 4 3 14 186
summonerName teamEarlySurrendered teamId teamPosition \
0 S A F E M Ö Ö N False 100 TOP
1 Crystallino False 100 JUNGLE
2 Buy SafeMoonCoin False 100 MIDDLE
3 NëF False 100 BOTTOM
4 BuySafeMoonToday False 100 UTILITY
5 StalwartHide False 200 TOP
6 Coolgum15 False 200 JUNGLE
7 you51f False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 Ëye of the Void False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 28 1012 41915 10828
1 1 1012 88643 5480
2 11 1012 66733 4893
3 0 1012 48501 7832
4 22 1012 13906 4340
5 29 1012 31059 4899
6 13 1012 65903 3010
7 12 1012 38493 4485
8 8 1012 36088 2002
9 18 1012 15705 8068
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 9479 601 68 189
1 12268 7455 20 162
2 6585 122 118 32
3 6410 1505 88 1
4 5144 738 11 42
5 14408 4867 73 150
6 17664 7028 4 210
7 6489 937 101 12
8 5954 883 86 27
9 5392 2595 16 108
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 16 1 1987
1 0 1 7975
2 32 1 2280
3 24 2 0
4 0 1 364
5 93 2 2605
6 108 1 25207
7 32 1 7021
8 57 2 0
9 55 4 568
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 477 186 1 0
1 59 210 0 0
2 0 232 0 0
3 0 387 1 0
4 364 0 0 0
5 0 412 0 2
6 403 114 0 2
7 123 42 0 2
8 0 332 0 2
9 488 0 0 2
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 9 1 0 6 True
1 16 3 1 7 True
2 17 1 1 5 True
3 16 2 3 6 True
4 24 3 2 10 True
5 7 0 1 4 False
6 7 0 0 4 False
7 5 1 0 6 False
8 9 0 2 5 False
9 17 4 4 9 False ,
assists baronKills bountyLevel champLevel championName \
0 0 0 0 11 Tryndamere
1 4 0 3 9 Nunu
2 0 0 0 11 Qiyana
3 3 0 1 10 JarvanIV
4 8 0 0 9 Nami
5 1 0 0 11 Morgana
6 1 0 1 9 Rengar
7 1 0 0 11 Vladimir
8 3 0 0 9 Ashe
9 4 0 0 8 Yuumi
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2937 4586 2937
1 0 0 0
2 0 0 0
3 2461 2461 2461
4 1363 1363 1363
5 0 0 0
6 0 5839 0
7 1457 1457 1457
8 1468 1468 1468
9 571 746 571
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 2 1 0 False False
1 1 0 0 False False
2 1 1 0 False True
3 1 1 0 False False
4 1 3 0 False False
5 3 1 0 False False
6 1 2 1 False False
7 3 0 0 False False
8 6 0 0 False False
9 3 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 6203 TOP 0
1 True 5328 JUNGLE 0
2 True 5273 MIDDLE 0
3 True 7656 BOTTOM 0
4 True 4382 UTILITY 0
5 True 4577 TOP 0
6 True 6085 JUNGLE 0
7 True 4787 MIDDLE 0
8 True 5032 BOTTOM 0
9 True 3907 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1055 2031 1037 3006 6670 1018 3364
1 0 3047 3076 6664 2031 0 0 3340
2 0 1001 6693 3134 0 0 0 3340
3 0 1055 6691 3047 3070 3133 1036 3340
4 0 3851 3158 4005 2055 0 0 3364
5 0 3802 1056 1052 2423 3191 1001 3340
6 0 6631 2031 3158 0 0 0 3364
7 0 2031 3152 1082 0 0 2422 3340
8 0 1055 6672 1042 1001 0 0 3340
9 0 2055 6617 3851 1004 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 2 2 1
1 1 3 3 2
2 1 4 4 1
3 1 7 6 2
4 0 0 0 0
5 0 1 0 1
6 1 3 2 1
7 0 0 0 0
8 0 1 0 1
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 729 0 0
1 684 22615 3368
2 958 2495 509
3 771 1890 970
4 398 5460 2221
5 445 27414 4484
6 908 10781 425
7 235 39708 2809
8 297 260 260
9 419 2887 1993
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 4389 12 0
1 1005 68 0
2 3032 0 0
3 1015 4 0
4 928 0 0
5 293 0 0
6 3588 68 0
7 491 0 0
8 2445 0 0
9 1743 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 71291
1 0 2 12427
2 0 3 30870
3 0 4 56217
4 0 5 2261
5 0 6 9967
6 0 7 38269
7 0 8 7285
8 0 9 52394
9 0 10 354
physicalDamageDealtToChampions physicalDamageTaken role \
0 5289 6532 SUPPORT
1 488 9405 SUPPORT
2 6069 1726 SUPPORT
3 8796 6107 DUO
4 365 3452 SUPPORT
5 1382 6475 SUPPORT
6 4471 10262 SUPPORT
7 86 5775 SUPPORT
8 6663 7631 SUPPORT
9 305 2418 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 1 4 1 12 262
1 1 4 10 11 245
2 2 4 3 14 311
3 3 4 4 14 187
4 1 4 3 7 118
5 2 12 2 4 118
6 8 11 2 4 119
7 2 4 2 12 176
8 3 4 3 7 121
9 3 3 3 14 208
summonerName teamEarlySurrendered teamId teamPosition \
0 fobbi1 False 100 TOP
1 Fishingfish WoW False 100 JUNGLE
2 PluviophileG False 100 MIDDLE
3 Phantum False 100 BOTTOM
4 LadyReign606 False 100 UTILITY
5 Sephrinx False 200 TOP
6 Braver Pleinair False 200 JUNGLE
7 Coolgum15 False 200 MIDDLE
8 AHull False 200 BOTTOM
9 marcu False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 5 982 71805 5385
1 9 982 49343 4316
2 3 982 33535 6748
3 13 982 58693 10352
4 12 982 7721 2586
5 20 982 40902 5867
6 6 982 52709 5018
7 2 982 48714 2896
8 22 982 53632 7123
9 8 982 3605 2662
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 10921 3404 100 51
1 10677 6056 10 320
2 4759 234 75 6
3 7540 1064 121 83
4 4380 3917 5 75
5 6890 933 88 38
6 14364 6358 9 130
7 6374 4513 109 65
8 10597 1348 91 473
9 4210 3687 0 24
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 65 1 514
1 21 1 14300
2 0 1 169
3 27 1 586
4 12 3 0
5 69 1 3520
6 27 1 3659
7 43 1 1720
8 120 2 977
9 45 3 364
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 96 0 1 0
1 458 266 0 0
2 169 0 0 0
3 586 417 0 0
4 0 0 1 0
5 0 121 0 2
6 121 513 0 2
7 0 106 0 2
8 199 519 0 2
9 364 48 0 2
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 9 1 1 3 True
1 9 0 0 4 True
2 7 1 0 4 True
3 9 2 0 4 True
4 26 5 4 11 True
5 12 1 1 6 False
6 7 2 1 3 False
7 8 0 1 4 False
8 2 0 1 1 False
9 15 4 0 6 False ,
assists baronKills bountyLevel champLevel championName \
0 7 0 0 15 Sion
1 12 0 0 13 Amumu
2 6 0 0 14 Vladimir
3 8 0 0 15 Jinx
4 12 0 0 14 Swain
5 9 0 0 13 Blitzcrank
6 8 1 2 16 MasterYi
7 14 0 1 16 Galio
8 8 0 5 16 Ezreal
9 9 0 3 17 Viego
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 1091 2813 1091
1 350 3802 350
2 1446 5109 1446
3 1559 10081 1559
4 2386 5022 2386
5 1442 3874 1442
6 5134 44544 5134
7 1387 4008 1387
8 9080 32074 9080
9 4482 18824 4482
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 8 1 0 False False
1 8 1 0 False False
2 8 0 0 False False
3 4 0 0 False False
4 10 2 0 False False
5 9 1 0 False False
6 7 0 2 False False
7 2 2 1 False False
8 4 0 2 False False
9 5 1 0 False True
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 True False False
6 False False False
7 False False False
8 False True False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 10178 TOP 0
1 False 9214 JUNGLE 0
2 False 10420 MIDDLE 0
3 False 11636 BOTTOM 0
4 False 10113 UTILITY 0
5 False 8306 UTILITY 0
6 False 13156 JUNGLE 2
7 False 11002 MIDDLE 0
8 False 14517 BOTTOM 0
9 False 16428 TOP 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 2 3075 1054 2031 3047 3068 3082 3340
1 2 3068 2031 3047 3075 1011 1033 3340
2 2 2421 3152 3191 3020 3089 1082 3340
3 2 1055 6672 3006 3085 3072 0 3340
4 2 3853 3157 6656 3020 3916 1028 3364
5 0 3857 3190 3117 3050 0 0 3364
6 0 3006 6672 3091 3124 1031 0 3340
7 0 3165 4636 3111 2055 3070 1058 3340
8 0 1055 3042 3153 6632 3111 3035 3363
9 0 3111 2421 3153 6676 3053 6672 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 2 4 2 1
1 1 3 2 1
2 1 5 3 1
3 2 7 5 2
4 2 8 2 1
5 1 2 2 1
6 2 6 2 2
7 1 5 3 1
8 3 10 5 2
9 5 15 4 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 376 29487 3604
1 586 76634 10415
2 602 111117 17321
3 587 979 319
4 379 35351 14758
5 358 9952 5113
6 488 6652 514
7 1249 94168 17690
8 381 19844 9096
9 456 11615 4447
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 5879 8 0
1 9091 104 0
2 10007 0 0
3 4377 8 0
4 8947 0 0
5 9678 0 0
6 9893 155 0
7 6170 8 0
8 6650 29 0
9 16080 20 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 80427
1 0 2 16677
2 0 3 10863
3 0 4 118772
4 0 5 5853
5 0 6 11203
6 0 7 164892
7 0 8 4546
8 0 9 157370
9 0 10 156582
physicalDamageDealtToChampions physicalDamageTaken role \
0 11361 22225 SOLO
1 1529 19042 NONE
2 1173 16499 SOLO
3 13605 8379 CARRY
4 2344 16949 SUPPORT
5 1858 9967 SUPPORT
6 12073 20734 NONE
7 436 7913 SOLO
8 18178 9480 CARRY
9 25763 16830 NONE
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 2 12 139
1 5 4 17 11 74
2 5 4 2 12 176
3 3 4 4 7 99
4 4 4 8 14 224
5 5 14 4 4 124
6 3 4 18 11 116
7 2 4 6 14 287
8 4 4 5 7 288
9 3 12 5 4 149
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 StrokeMeDaddy False 100 TOP 27
1 MarxismOrGTF0 False 100 JUNGLE 41
2 Coolgum15 False 100 MIDDLE 6
3 Jak0ven False 100 BOTTOM 18
4 Ziegel False 100 UTILITY 55
5 Son Of Odin False 200 UTILITY 33
6 rammstien False 200 JUNGLE 4
7 sewerslvt False 200 MIDDLE 40
8 Vdub False 200 BOTTOM 0
9 Pimslice False 200 TOP 24
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1870 110589 15140
1 1870 106301 13849
2 1870 128795 19181
3 1870 133411 14852
4 1870 43713 19575
5 1870 26759 7741
6 1870 210342 18697
7 1870 102350 20032
8 1870 177654 27595
9 1870 185838 33612
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 31483 1952 156 636
1 31035 8267 28 228
2 28138 18797 171 134
3 13466 4220 159 110
4 29783 6736 36 146
5 21512 1986 39 110
6 31261 15150 42 171
7 15078 2574 136 90
8 16716 6195 179 6
9 34996 18281 178 124
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 168 1 674
1 206 1 12990
2 248 1 6814
3 81 3 13658
4 264 1 2507
5 220 1 5602
6 237 1 38797
7 86 1 3634
8 106 3 440
9 167 1 17639
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 174 3377 1 9
1 1904 2901 0 9
2 686 1631 1 9
3 927 708 0 9
4 2472 3886 0 9
5 770 1865 1 2
6 6109 634 2 2
7 1904 995 0 2
8 320 585 4 2
9 3401 2085 2 2
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 21 1 0 11 False
1 26 1 3 11 False
2 14 0 0 9 False
3 12 0 2 6 False
4 70 2 8 23 False
5 35 1 4 16 True
6 16 0 0 9 True
7 20 4 1 11 True
8 21 1 0 10 True
9 12 11 1 5 True ,
assists baronKills bountyLevel champLevel championName \
0 5 0 3 17 Volibear
1 7 0 1 13 Vi
2 2 0 0 16 Lucian
3 8 0 0 15 Aphelios
4 19 0 0 13 Maokai
5 5 0 0 14 Akali
6 6 0 0 14 Poppy
7 2 0 0 15 Vladimir
8 7 0 0 14 Jinx
9 6 0 0 12 Senna
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3077 4830 3077
1 0 11901 0
2 7293 9919 7293
3 5435 16596 5435
4 0 1737 0
5 186 186 186
6 0 1093 0
7 1060 1060 1060
8 0 0 0
9 0 0 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 1 0 False False
1 6 0 2 False False
2 3 3 0 False False
3 2 0 1 False False
4 3 2 0 False False
5 7 2 0 False False
6 8 3 0 False True
7 4 0 0 False False
8 6 0 0 False False
9 11 7 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 12501 TOP 0
1 True 10073 JUNGLE 0
2 True 11754 MIDDLE 0
3 True 13622 BOTTOM 1
4 True 9159 UTILITY 0
5 True 8994 TOP 0
6 True 11162 JUNGLE 0
7 True 8692 MIDDLE 0
8 True 9666 BOTTOM 0
9 True 8405 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3115 6664 2031 3111 3075 1052 3340
1 0 6632 2031 3047 3053 3133 0 3364
2 0 3153 3508 2055 6672 3006 0 3340
3 0 6672 3031 3006 3085 1053 1038 3340
4 0 3860 3009 3165 4005 1052 1011 3364
5 1 3191 4633 3020 4637 0 2055 3340
6 1 3047 3742 6632 3110 1029 1029 3364
7 1 3157 3152 1058 3020 0 1082 3340
8 1 6672 3085 3006 1018 1038 0 3340
9 1 3864 3009 3042 6672 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 11 6 2
1 1 6 2 1
2 1 4 3 1
3 2 12 7 2
4 1 3 2 1
5 0 3 0 1
6 2 8 2 1
7 0 1 0 1
8 0 3 0 1
9 0 4 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 663 97405 12988
1 895 7827 0
2 671 4900 880
3 1098 1021 1021
4 890 35374 17942
5 689 72584 14160
6 382 11654 2444
7 696 102788 13860
8 693 1446 466
9 240 0 0
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 11237 42 0
1 4540 131 0
2 10049 7 0
3 3972 12 0
4 2251 2 0
5 6825 0 0
6 8996 103 0
7 4745 5 0
8 5036 4 0
9 7805 4 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 45545
1 0 2 121013
2 0 3 150665
3 0 4 131267
4 0 5 5023
5 0 6 11666
6 0 7 98700
7 0 8 14781
8 0 9 96658
9 0 10 27304
physicalDamageDealtToChampions physicalDamageTaken role \
0 13451 19226 NONE
1 9218 20491 NONE
2 17733 6248 SOLO
3 25975 12243 CARRY
4 989 16188 SUPPORT
5 1553 20143 SOLO
6 20033 17707 NONE
7 502 20911 SOLO
8 18205 12401 CARRY
9 11212 12480 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 12 5 4 171
1 16 11 3 4 218
2 2 4 4 12 198
3 5 7 1 4 121
4 4 4 7 14 94
5 4 12 6 14 178
6 17 11 4 4 368
7 2 4 4 14 176
8 5 7 4 4 124
9 6 14 3 4 410
summonerName teamEarlySurrendered teamId teamPosition \
0 Gnlom False 100 TOP
1 ElmoZeMuppet False 100 JUNGLE
2 PoopisKai False 100 MIDDLE
3 Bingo7798 False 100 BOTTOM
4 ChaseOnCheese False 100 UTILITY
5 BILLY HERR1NGTON False 200 TOP
6 KidOfASon False 200 JUNGLE
7 Coolgum15 False 200 MIDDLE
8 Kíssland False 200 BOTTOM
9 Vulpes Inculta False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 38 1789 152065 26845
1 24 1789 138951 10364
2 0 1789 169376 19749
3 21 1789 142535 29997
4 58 1789 46807 19763
5 2 1789 85596 16826
6 49 1789 116435 23406
7 2 1789 118488 15281
8 24 1789 124677 20377
9 38 1789 30129 12869
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 33273 9424 149 298
1 25944 9500 15 337
2 17219 2713 221 18
3 17250 8236 181 112
4 19084 5854 35 287
5 28179 5102 145 77
6 28869 8421 42 714
7 27080 21215 171 107
8 18435 4930 157 142
9 21009 9374 20 142
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 148 1 9115
1 200 1 10110
2 119 1 13810
3 21 4 10246
4 73 1 6410
5 210 1 1345
6 228 1 6080
7 114 1 918
8 131 3 26572
9 249 4 2824
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 406 2809 1 0
1 1146 912 0 0
2 1136 921 3 0
3 3000 1034 2 0
4 832 644 0 0
5 1113 1210 0 7
6 928 2166 0 7
7 918 1423 0 7
8 1705 997 0 7
9 1656 722 0 7
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 14 1 2 8 True
1 11 0 2 1 True
2 23 5 1 10 True
3 14 0 3 7 True
4 50 3 7 20 True
5 21 4 1 10 False
6 29 3 5 4 False
7 11 0 0 7 False
8 11 0 1 8 False
9 45 7 6 22 False ,
assists baronKills bountyLevel champLevel championName \
0 1 0 6 13 DrMundo
1 1 0 1 10 Warwick
2 2 0 1 12 Vladimir
3 4 0 0 9 Caitlyn
4 2 0 0 8 Rakan
5 0 0 0 10 Darius
6 1 0 0 8 Nidalee
7 0 0 0 10 Cassiopeia
8 2 0 2 10 Samira
9 6 0 0 9 Thresh
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 5114 5114 5114
1 855 13560 855
2 2705 2705 2705
3 2523 2523 2523
4 771 771 771
5 0 0 0
6 0 1312 0
7 0 2603 0
8 0 2911 0
9 0 236 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 0 0 0 True False
1 2 0 0 False True
2 1 2 0 False False
3 2 0 0 False False
4 3 2 0 False False
5 5 2 0 False False
6 4 1 0 False False
7 3 0 0 False False
8 2 0 1 False False
9 4 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 8063 TOP 0
1 True 8342 JUNGLE 0
2 True 6060 MIDDLE 0
3 True 6133 BOTTOM 0
4 True 3922 UTILITY 0
5 True 4017 TOP 0
6 True 4590 JUNGLE 0
7 True 4918 MIDDLE 0
8 True 7199 BOTTOM 0
9 True 3911 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1054 3047 3068 0 0 0 3340
1 0 3748 3047 3057 3044 0 0 3340
2 0 2422 3152 2031 1082 0 0 3340
3 0 1055 6671 1001 2015 0 0 3340
4 0 3859 1029 3047 1033 0 0 3364
5 0 1055 1028 1037 3051 1029 1001 3340
6 0 3916 1001 3802 3108 0 0 3364
7 0 1056 6653 0 0 0 0 3340
8 0 1055 6673 3006 3134 1018 0 3340
9 0 3855 0 1029 3117 3067 1033 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 6 6 1
1 1 9 7 2
2 0 2 0 1
3 0 1 0 1
4 0 0 0 0
5 0 0 0 0
6 1 2 2 1
7 0 2 0 1
8 2 4 2 2
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 0 43488 9066
1 546 25560 3286
2 492 43621 3319
3 627 626 212
4 423 3471 1445
5 220 0 0
6 448 38684 2959
7 489 21768 5762
8 437 4019 831
9 431 3496 1500
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 1151 4 0
1 2910 88 0
2 5392 0 0
3 1126 0 0
4 1265 0 0
5 7693 0 0
6 2646 60 0
7 3622 0 0
8 1607 8 0
9 2509 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 31254
1 0 2 45389
2 0 3 6832
3 0 4 47650
4 0 5 3407
5 0 6 40348
6 0 7 6255
7 0 8 11191
8 0 9 46102
9 0 10 2591
physicalDamageDealtToChampions physicalDamageTaken role \
0 4636 11192 SUPPORT
1 2940 12677 SUPPORT
2 273 1509 SUPPORT
3 5078 4054 SUPPORT
4 111 2299 SUPPORT
5 5168 4959 SUPPORT
6 361 9053 SUPPORT
7 254 2029 SUPPORT
8 5207 5769 DUO
9 479 3331 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 4 1 12 234
1 2 4 8 11 111
2 2 4 2 14 176
3 2 7 2 4 75
4 1 14 2 4 238
5 4 6 3 4 213
6 7 11 2 4 172
7 1 14 1 4 295
8 2 7 2 4 198
9 2 4 3 14 443
summonerName teamEarlySurrendered teamId teamPosition \
0 penguinlord False 100 TOP
1 Mudkipman182 False 100 JUNGLE
2 Coolgum15 False 100 MIDDLE
3 Deadhealz False 100 BOTTOM
4 Rakań False 100 UTILITY
5 beforeandafterwa False 200 TOP
6 MexicanNight False 200 JUNGLE
7 YsoSeriious False 200 MIDDLE
8 MegaBuilder2001 False 200 BOTTOM
9 slimshady2real False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 12 976 78887 14321
1 9 976 83244 6520
2 0 976 53099 3853
3 5 976 48277 5291
4 4 976 11656 1747
5 11 976 40556 5376
6 1 976 48314 3503
7 1 976 35831 6169
8 1 976 51182 6110
9 14 976 9585 2418
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 12734 4981 128 140
1 15739 11269 15 164
2 7053 5596 103 48
3 5252 1679 133 22
4 3850 279 25 22
5 13209 1943 88 54
6 11851 6258 13 65
7 5940 593 98 7
8 7614 2102 132 39
9 5968 149 26 44
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 0 1 4145
1 40 1 12294
2 21 1 2645
3 48 2 0
4 51 2 4778
5 67 1 208
6 67 2 3374
7 83 1 2872
8 41 2 1060
9 65 3 3496
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 618 390 1 0
1 294 152 1 0
2 260 152 1 0
3 0 72 1 0
4 190 286 0 0
5 208 556 0 4
6 182 152 0 4
7 152 288 0 4
8 72 238 0 4
9 438 128 0 4
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 6 0 0 4 True
1 13 0 3 4 True
2 10 2 0 7 True
3 3 0 0 3 True
4 25 2 3 14 True
5 9 2 0 5 False
6 11 1 3 1 False
7 6 0 0 4 False
8 8 0 3 4 False
9 17 2 2 10 False ,
assists baronKills bountyLevel champLevel championName \
0 5 0 0 16 Yorick
1 9 0 0 14 Shaco
2 9 0 0 15 Vladimir
3 13 0 0 13 Samira
4 16 0 0 13 Leona
5 7 0 7 16 Nasus
6 8 0 0 14 Nunu
7 8 0 0 16 Viktor
8 7 0 0 12 Ashe
9 8 0 0 12 Senna
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 12409 12409 12409
1 992 7497 992
2 6630 7709 6630
3 4532 10761 4532
4 1769 3013 1769
5 0 0 0
6 25 27096 25
7 5697 9138 5697
8 0 4794 0
9 139 3358 139
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 4 0 False False
1 5 2 2 True False
2 5 1 0 False False
3 4 3 0 True False
4 3 2 0 False True
5 3 2 0 False False
6 8 7 2 False False
7 5 0 0 False False
8 9 0 0 False False
9 9 1 1 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False True False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 11836 TOP 1
1 False 10521 JUNGLE 1
2 False 10425 MIDDLE 0
3 False 13127 BOTTOM 0
4 False 8838 UTILITY 0
5 False 12690 TOP 0
6 False 9229 JUNGLE 0
7 False 12771 MIDDLE 0
8 False 7668 BOTTOM 0
9 False 7629 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3067 3078 3047 3742 3075 0 3340
1 0 6655 2031 4629 3158 3191 3108 3364
2 0 2421 3152 1058 1082 4629 3020 3340
3 0 3031 6673 3123 1055 6676 3047 3363
4 0 3860 3190 3047 3075 0 3024 3364
5 2 3211 6632 3075 3110 1054 3047 3340
6 2 3068 2031 0 3111 3742 0 3364
7 2 0 6655 3020 3100 3165 1058 3340
8 2 6673 3133 3006 3057 1018 0 3340
9 2 3864 3006 3086 6672 2015 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 6 3 1
1 2 9 4 2
2 0 3 0 1
3 3 11 4 2
4 1 5 4 1
5 1 9 7 3
6 1 4 2 1
7 3 9 4 2
8 0 1 0 1
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 436 27086 6854
1 740 85056 13206
2 550 95890 15809
3 828 13961 4299
4 1308 12644 5355
5 548 51679 7116
6 389 70363 10393
7 518 134222 22513
8 420 2274 1389
9 348 669 294
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 11137 8 0
1 5724 112 1
2 10594 4 0
3 8759 8 0
4 6170 0 0
5 11800 0 0
6 13882 106 0
7 7360 8 0
8 8699 18 0
9 7194 15 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 117240
1 0 2 20305
2 0 3 9392
3 0 4 110342
4 0 5 8592
5 0 6 100965
6 0 7 22934
7 0 8 12215
8 0 9 99971
9 0 10 38072
physicalDamageDealtToChampions physicalDamageTaken role \
0 14250 15333 SOLO
1 1626 12731 NONE
2 266 10588 SOLO
3 16326 12163 CARRY
4 3035 7054 SUPPORT
5 10924 19411 SOLO
6 808 25132 NONE
7 644 5542 SOLO
8 15727 10504 NONE
9 8542 8515 SOLO
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 4 12 270
1 11 11 7 14 154
2 3 4 2 14 176
3 5 7 4 4 181
4 4 3 3 4 259
5 4 12 4 4 126
6 13 11 4 4 242
7 4 4 3 12 319
8 4 4 5 7 139
9 4 4 5 3 85
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 Alan Di Bo False 100 TOP 8
1 rvcl18 False 100 JUNGLE 24
2 Coolgum15 False 100 MIDDLE 3
3 DuMsUmMaN False 100 BOTTOM 0
4 Phobreeze False 100 UTILITY 48
5 Śhÿ False 200 TOP 11
6 Gramss False 200 JUNGLE 34
7 Chief Grizzy False 200 MIDDLE 18
8 D0taTwo False 200 BOTTOM 53
9 TheRunningDead False 200 UTILITY 23
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1685 146860 21105
1 1685 112451 16437
2 1685 105409 16201
3 1685 125260 20816
4 1685 27395 8407
5 1685 154531 18040
6 1685 153935 11965
7 1685 147367 23298
8 1685 102532 17117
9 1685 40764 9200
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 27037 5404 188 193
1 18776 4668 24 722
2 21362 15881 162 84
3 21045 6162 176 25
4 13304 734 34 97
5 31710 5324 185 169
6 39484 19761 33 403
7 13464 671 174 283
8 19463 2550 129 714
9 15856 5569 22 51
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 242 1 2533
1 183 1 7088
2 196 1 126
3 110 3 956
4 80 6 6158
5 84 1 1885
6 266 1 60637
7 134 1 930
8 216 3 286
9 235 5 2021
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 566 6 2
1 1604 320 1 2
2 126 179 1 2
3 190 122 0 2
4 16 80 2 2
5 0 498 0 10
6 764 470 0 10
7 140 562 2 10
8 0 259 0 10
9 364 146 0 10
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 27 4 2 12 True
1 13 2 2 3 True
2 20 1 1 8 True
3 31 3 2 9 True
4 43 2 4 17 True
5 21 2 1 9 False
6 28 7 2 12 False
7 10 0 2 7 False
8 24 0 4 9 False
9 29 1 5 13 False ,
assists baronKills bountyLevel champLevel championName \
0 6 0 0 13 Yasuo
1 10 0 0 14 Karthus
2 4 0 1 13 Viego
3 6 0 0 13 Kaisa
4 8 0 0 12 Swain
5 7 0 1 15 Tryndamere
6 10 0 1 15 LeeSin
7 9 1 1 15 Jax
8 9 0 1 16 Caitlyn
9 9 0 0 14 Nautilus
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 752 752 752
1 4081 7332 4081
2 4560 6512 4560
3 947 2968 947
4 441 1684 441
5 6408 34045 6408
6 1291 20007 1291
7 3519 8674 3519
8 10470 13269 10470
9 2639 5527 2639
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 8 1 0 False False
1 9 0 0 False False
2 8 1 0 False False
3 5 1 1 False False
4 10 1 0 False False
5 3 0 0 False False
6 5 0 3 True False
7 3 1 0 True False
8 7 0 0 False True
9 1 3 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 7992 TOP 0
1 False 10299 JUNGLE 0
2 False 10060 MIDDLE 0
3 False 8594 BOTTOM 0
4 False 8598 UTILITY 0
5 False 13841 TOP 0
6 False 10727 JUNGLE 1
7 False 10461 MIDDLE 1
8 False 16349 BOTTOM 2
9 False 9099 UTILITY 1
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 5 1055 3006 6673 1053 1018 1029 3340
1 5 2031 3157 1026 3020 6653 3916 3340
2 5 1055 3153 3006 6673 2055 3133 3340
3 5 6671 3006 6676 1042 1042 1055 3340
4 5 3853 3157 6653 3047 3916 0 3364
5 0 1055 6694 6693 3006 6676 1038 3340
6 0 3142 1036 3158 6692 3123 1036 3340
7 0 0 1043 3078 1053 3047 1037 3340
8 0 3095 3006 6673 3031 3094 3123 3340
9 0 3860 0 6662 3075 3067 3047 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 2 0 1
1 1 3 2 2
2 0 6 0 1
3 1 4 2 1
4 1 4 2 2
5 1 9 7 3
6 2 7 2 1
7 1 4 2 1
8 5 16 4 2
9 1 4 4 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 894 8583 969
1 777 134603 16238
2 301 4513 1382
3 476 9912 3836
4 303 33425 10450
5 625 0 0
6 487 25548 2991
7 1156 14132 1851
8 649 7827 3078
9 1551 23340 4800
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 2423 8 0
1 2700 78 0
2 2621 0 0
3 1890 4 0
4 4430 0 0
5 5722 24 0
6 7901 124 0
7 6841 24 0
8 11388 24 0
9 3908 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 89948
1 0 2 6125
2 0 3 89091
3 0 4 56609
4 0 5 2020
5 0 6 171246
6 0 7 85037
7 0 8 61350
8 0 9 176206
9 0 10 8682
physicalDamageDealtToChampions physicalDamageTaken role \
0 9644 18170 SOLO
1 25 22216 NONE
2 13858 21779 SOLO
3 4580 13508 NONE
4 1038 13352 SOLO
5 17421 19066 SOLO
6 12119 18595 NONE
7 7722 10233 SOLO
8 30156 15162 CARRY
9 1488 7303 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 5 4 5 6 176
1 12 11 3 4 191
2 3 4 5 14 335
3 6 7 4 4 68
4 3 14 2 4 164
5 5 3 5 21 416
6 12 11 4 4 215
7 5 4 4 14 110
8 4 4 5 7 113
9 6 14 4 4 53
summonerName teamEarlySurrendered teamId teamPosition \
0 Coolgum15 False 100 TOP
1 MoistureCreature False 100 JUNGLE
2 Rotome False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 Thick2BThighs False 100 UTILITY
5 MrBumpTastik False 200 TOP
6 Fruitymon False 200 JUNGLE
7 TacticalTard False 200 MIDDLE
8 Rosinator1 False 200 BOTTOM
9 Byjinn False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 15 1734 102761 10614
1 18 1734 146308 17020
2 14 1734 98573 15979
3 0 1734 82521 8416
4 44 1734 36138 12181
5 17 1734 176123 17631
6 13 1734 116931 15534
7 16 1734 79450 10143
8 11 1734 185714 33234
9 31 1734 39112 7199
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 21100 3197 130 88
1 25550 6153 62 218
2 24829 5001 148 31
3 15644 3139 91 0
4 18083 1498 33 232
5 25171 13928 171 118
6 26914 9026 11 347
7 17565 2290 110 68
8 27391 8404 203 82
9 11270 1570 38 347
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 265 1 4230
1 240 1 5580
2 251 1 4968
3 67 4 16000
4 242 1 692
5 108 1 4877
6 147 1 6346
7 98 1 3967
8 255 3 1680
9 40 1 7089
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 506 0 11
1 756 633 2 11
2 738 428 0 11
3 0 245 0 11
4 692 300 0 11
5 210 381 2 2
6 424 416 1 2
7 569 490 0 2
8 0 839 4 2
9 910 58 3 2
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 28 1 0 8 False
1 14 0 2 7 False
2 10 6 1 4 False
3 15 1 0 8 False
4 16 1 0 8 False
5 14 0 0 9 True
6 13 0 1 6 True
7 18 1 0 9 True
8 17 1 1 8 True
9 56 3 4 22 True ,
assists baronKills bountyLevel champLevel championName \
0 1 0 0 13 Darius
1 6 0 0 13 FiddleSticks
2 6 0 0 14 Viego
3 8 0 0 12 Jhin
4 5 0 0 11 Pyke
5 16 0 0 15 Ornn
6 8 0 0 13 Evelynn
7 8 0 3 15 Diana
8 9 0 4 14 Samira
9 25 0 0 13 Nautilus
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 5321 5321 5321
1 244 5255 244
2 1898 3940 1898
3 637 1387 637
4 0 0 0
5 5714 5714 5714
6 2095 14312 2095
7 7468 9090 7468
8 11403 17426 11403
9 2853 4281 2853
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 9 1 0 False False
1 8 0 1 False False
2 4 3 0 False False
3 7 0 0 True False
4 9 3 0 False True
5 4 0 0 False False
6 5 2 1 False False
7 3 0 0 False False
8 5 1 2 False False
9 4 3 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False True False
9 True False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 9080 TOP 0
1 False 9039 JUNGLE 0
2 False 11132 MIDDLE 0
3 False 7672 BOTTOM 0
4 False 9462 UTILITY 0
5 False 9285 TOP 0
6 False 9362 JUNGLE 2
7 False 10165 MIDDLE 0
8 False 15320 BOTTOM 0
9 False 9037 UTILITY 1
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 3 3053 6631 3111 3066 1055 0 3340
1 3 3157 3020 2031 6653 4630 0 3330
2 3 1055 3153 3006 6673 3133 3057 3364
3 3 6671 3009 3035 1018 0 1055 3340
4 3 3857 6693 3111 3814 1031 1036 3364
5 0 7003 3047 3083 3076 0 0 3340
6 0 3152 3100 3020 0 1082 0 3340
7 0 1056 4636 3020 1029 3100 0 3340
8 0 6676 3031 7008 3006 1038 0 3340
9 0 3860 7019 3117 3075 3024 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 4 2 1
1 2 6 4 2
2 1 4 2 1
3 1 3 2 2
4 0 4 0 1
5 1 5 4 1
6 1 5 3 2
7 2 5 3 1
8 5 19 5 3
9 1 3 3 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 450 0 0
1 696 105915 13378
2 814 8095 1115
3 364 5851 857
4 304 0 0
5 613 34307 8125
6 456 98434 9837
7 594 109355 15503
8 424 13200 4015
9 827 16953 8096
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 11615 8 0
1 13011 120 0
2 9512 4 0
3 6831 0 0
4 6878 0 0
5 3069 1 0
6 4629 125 0
7 4904 20 0
8 2231 8 0
9 3296 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 91269
1 0 2 5856
2 0 3 107852
3 0 4 45114
4 0 5 16037
5 0 6 45411
6 0 7 12221
7 0 8 15633
8 0 9 118740
9 0 10 7539
physicalDamageDealtToChampions physicalDamageTaken role \
0 11893 16515 SOLO
1 88 15300 NONE
2 10896 12514 SOLO
3 6141 6271 CARRY
4 5523 7943 SUPPORT
5 4841 15055 SOLO
6 397 19491 NONE
7 1435 7132 SOLO
8 25844 13926 CARRY
9 3026 8224 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 5 6 176
1 9 11 4 4 135
2 3 4 3 14 335
3 4 7 3 4 68
4 3 14 3 4 164
5 3 12 3 4 161
6 13 11 2 4 107
7 1 4 2 12 161
8 4 4 3 7 208
9 3 4 5 3 111
summonerName teamEarlySurrendered teamId teamPosition \
0 Coolgum15 False 100 TOP
1 SlothoftheAbyss False 100 JUNGLE
2 Rotome False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 Thick2BThighs False 100 UTILITY
5 CMiester False 200 TOP
6 scrappy131 False 200 JUNGLE
7 CelerityV2 False 200 MIDDLE
8 swart2330 False 200 BOTTOM
9 MakunMayo False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 22 1555 102261 13057
1 22 1555 116652 13880
2 7 1555 116231 12296
3 19 1555 55016 6999
4 21 1555 24741 6790
5 25 1555 79719 12966
6 3 1555 117739 10465
7 5 1555 124988 16938
8 1 1555 132151 30070
9 70 1555 29373 11879
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 28319 5094 141 150
1 28437 13475 9 491
2 22310 8104 194 22
3 13456 2364 91 125
4 15067 1399 35 66
5 20241 622 120 357
6 24768 11268 17 136
7 12416 2799 161 30
8 17001 4632 167 3
9 11662 250 37 263
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 309 1 10991
1 234 1 4880
2 163 1 284
3 184 3 4050
4 226 1 8703
5 136 1 0
6 143 1 7084
7 96 1 0
8 134 4 210
9 91 1 4880
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1163 188 1 11
1 414 125 1 11
2 284 283 0 11
3 0 353 0 11
4 1266 245 0 11
5 0 2116 2 2
6 230 646 0 2
7 0 379 3 2
8 210 844 4 2
9 756 141 2 2
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 15 1 1 8 False
1 13 0 2 3 False
2 15 7 2 4 False
3 7 0 0 5 False
4 27 3 2 12 False
5 6 0 0 4 True
6 26 2 1 9 True
7 8 0 0 4 True
8 14 1 1 9 True
9 45 3 7 15 True ,
assists baronKills bountyLevel champLevel championName \
0 0 0 3 12 Darius
1 1 0 1 10 Garen
2 2 0 2 11 Talon
3 1 0 5 9 Vayne
4 9 0 0 10 Bard
5 0 0 0 10 LeeSin
6 0 0 0 9 Hecarim
7 2 0 0 10 Sylas
8 0 0 0 9 Sivir
9 1 0 0 8 Lux
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2133 2133 2133
1 703 19099 703
2 917 917 917
3 1196 1196 1196
4 0 456 0
5 944 944 944
6 282 282 282
7 507 507 507
8 380 380 380
9 0 0 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 1 0 0 False False
1 1 2 1 False False
2 2 0 0 False True
3 1 0 0 False False
4 0 1 0 False False
5 3 0 0 False False
6 4 0 0 False False
7 4 1 0 False False
8 4 0 0 False False
9 3 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 True False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 6897 TOP 0
1 True 5606 JUNGLE 0
2 True 7089 MIDDLE 0
3 True 6875 BOTTOM 0
4 True 4021 UTILITY 0
5 True 4133 TOP 0
6 True 5169 JUNGLE 0
7 True 4357 MIDDLE 0
8 True 4702 BOTTOM 0
9 True 3137 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3076 3044 6631 1055 0 3047 3340
1 0 0 6029 2031 1001 3051 0 3364
2 0 6693 2031 3158 3070 3133 1036 3364
3 0 1055 3006 6672 1036 0 0 3340
4 0 3851 3105 2055 3158 0 0 3364
5 0 2033 3047 2055 3044 0 6029 3340
6 0 6664 2031 3158 1031 0 0 3340
7 0 3191 2033 3158 1027 3067 0 3340
8 0 1055 3004 1001 0 0 0 3340
9 0 3851 3802 1001 0 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 4 3 2
1 0 1 0 1
2 2 7 4 1
3 1 6 5 2
4 0 0 0 0
5 0 1 0 1
6 0 2 0 1
7 0 1 0 1
8 0 1 0 1
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 234 0 0
1 590 6226 0
2 434 0 0
3 604 0 0
4 0 4250 1813
5 630 8189 739
6 394 15171 1066
7 242 23950 4820
8 370 0 0
9 659 7947 2043
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 1080 0 0
1 2233 108 0
2 4061 0 0
3 1654 0 0
4 1510 0 0
5 0 0 0
6 2186 72 0
7 462 0 0
8 733 0 0
9 505 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 49577
1 0 2 73278
2 0 3 54341
3 0 4 37048
4 0 5 1440
5 0 6 18905
6 0 7 33294
7 0 8 6011
8 0 9 40644
9 0 10 833
physicalDamageDealtToChampions physicalDamageTaken role \
0 6246 3646 SUPPORT
1 1794 12878 SUPPORT
2 11834 5207 SUPPORT
3 5468 3878 SUPPORT
4 701 970 SUPPORT
5 1587 6183 SUPPORT
6 1785 12415 SUPPORT
7 458 9561 SUPPORT
8 2289 4271 DUO
9 185 3088 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 4 2 6 192
1 1 6 9 11 176
2 2 4 3 14 38
3 2 7 1 4 148
4 0 4 2 14 119
5 1 4 1 14 163
6 9 11 2 6 32
7 2 4 2 12 74
8 3 7 1 4 88
9 2 4 1 14 67
summonerName teamEarlySurrendered teamId teamPosition \
0 Phant0m76304 False 100 TOP
1 Coolgum15 False 100 JUNGLE
2 brandi Iøve False 100 MIDDLE
3 Yakushi False 100 BOTTOM
4 Awes0me Guy False 100 UTILITY
5 Simp of the Year False 200 TOP
6 deathsdescend False 200 JUNGLE
7 NAlolZI False 200 MIDDLE
8 PowerOfTheBunni False 200 BOTTOM
9 Dommys False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 9 938 50293 6885
1 6 938 92471 2503
2 4 938 54991 12364
3 4 938 42939 7051
4 9 938 5886 2710
5 2 938 27443 2437
6 12 938 52674 3465
7 7 938 38251 5278
8 0 938 43484 2289
9 12 938 9056 2505
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 5032 1725 129 125
1 15342 7354 4 240
2 9403 1308 114 111
3 5698 2276 116 33
4 2646 1566 2 57
5 6922 223 71 111
6 14601 5780 8 70
7 11166 2464 76 159
8 6353 1068 106 0
9 4020 0 10 111
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 12 1 716
1 27 1 12966
2 44 1 650
3 21 3 5891
4 0 3 196
5 92 1 348
6 88 1 4208
7 84 1 8290
8 60 1 2840
9 42 0 276
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 638 306 1 0
1 708 230 0 0
2 530 134 0 0
3 1582 165 0 0
4 196 165 0 0
5 110 738 0 1
6 614 0 0 1
7 0 1142 0 1
8 0 1347 0 1
9 276 426 0 1
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 6 0 0 4 True
1 10 2 0 4 True
2 7 0 0 4 True
3 5 0 0 4 True
4 21 3 2 11 True
5 3 1 0 3 False
6 7 0 0 4 False
7 5 1 1 3 False
8 6 0 0 4 False
9 8 1 2 4 False ,
assists baronKills bountyLevel champLevel championName \
0 5 0 12 18 Camille
1 9 0 10 17 DrMundo
2 6 0 2 15 Qiyana
3 13 0 0 13 Jinx
4 2 1 0 13 Pyke
5 2 0 0 14 Gangplank
6 5 0 0 14 Poppy
7 1 0 0 14 Annie
8 5 0 0 14 Caitlyn
9 11 0 0 13 Seraphine
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 12975 21396 12975
1 905 43548 905
2 3105 6919 3105
3 7435 15851 7435
4 1071 4273 1071
5 0 1836 0
6 0 4423 0
7 62 62 62
8 2137 2137 2137
9 866 971 866
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 2 3 0 False True
1 1 1 2 False False
2 4 0 0 False False
3 6 0 2 False False
4 7 3 0 False False
5 13 0 0 False False
6 7 0 0 False False
7 9 2 0 False False
8 10 0 0 False False
9 9 4 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 17891 TOP 0
1 True 14484 JUNGLE 2
2 True 10051 MIDDLE 0
3 True 10434 BOTTOM 2
4 True 10401 UTILITY 0
5 True 10274 TOP 0
6 True 7740 JUNGLE 0
7 True 8268 MIDDLE 0
8 True 13239 BOTTOM 0
9 True 8974 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 2420 3074 3158 3078 3026 3053 3340
1 0 6664 3111 2031 3075 3065 4401 3340
2 0 2031 6693 3158 6695 3070 3133 3340
3 0 1055 3006 6672 3085 1037 1018 3340
4 0 6693 3857 3117 3179 3134 1036 3364
5 5 2033 6676 3078 3047 1018 1037 3340
6 5 6632 3076 3047 1011 0 0 3364
7 5 1056 3067 3020 6655 3108 1052 3340
8 5 1018 3006 6672 3095 3031 3035 3363
9 5 6617 6616 3853 3158 1011 1052 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 21 12 3
1 2 12 10 1
2 2 5 3 2
3 0 3 0 1
4 2 7 4 1
5 1 4 2 2
6 0 1 0 1
7 1 3 2 1
8 3 10 3 2
9 0 2 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 831 1902 1902
1 261 116688 11653
2 775 7193 1054
3 418 1591 841
4 460 0 0
5 232 7542 2511
6 467 10671 988
7 469 79925 14263
8 357 3481 1408
9 437 74090 14562
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 9702 46 0
1 8336 146 0
2 5187 4 0
3 6185 12 0
4 7007 4 0
5 2278 3 0
6 8353 80 0
7 2581 0 0
8 1472 0 0
9 1801 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 172993
1 0 2 75103
2 0 3 86513
3 0 4 74003
4 0 5 23057
5 0 6 122291
6 0 7 90268
7 0 8 8363
8 0 9 134550
9 0 10 5803
physicalDamageDealtToChampions physicalDamageTaken role \
0 26187 26421 NONE
1 9281 31179 NONE
2 12799 10086 SOLO
3 11994 10713 DUO
4 6438 11687 DUO
5 8154 20432 SOLO
6 9999 19443 NONE
7 882 14364 SOLO
8 24988 17678 CARRY
9 1659 15661 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 12 7 14 259
1 19 11 3 4 149
2 4 14 4 4 198
3 3 4 6 7 85
4 4 4 4 14 146
5 4 4 5 14 304
6 15 11 5 4 173
7 3 4 4 14 174
8 2 4 5 7 462
9 7 14 4 4 233
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 LoveKotori False 100 TOP 28
1 ONTHEFLANK False 100 JUNGLE 16
2 Aa Lit Star False 100 MIDDLE 9
3 xMajorPicklesx False 100 BOTTOM 18
4 Quality Hentai False 100 UTILITY 8
5 flute False 200 TOP 8
6 Likyen12 False 200 JUNGLE 29
7 Coolgum15 False 200 MIDDLE 21
8 ieuan False 200 BOTTOM 15
9 starzshi False 200 UTILITY 34
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1820 214925 39057
1 1820 211511 22186
2 1820 94431 14578
3 1820 83775 13326
4 1820 29881 7660
5 1820 138458 14731
6 1820 111820 12178
7 1820 89467 16324
8 1820 147926 29317
9 1820 81967 18295
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 40543 18271 186 303
1 42856 31193 54 388
2 16789 2397 119 76
3 17673 7225 98 46
4 20072 4937 49 71
5 28024 4221 166 253
6 29972 7046 59 572
7 18702 453 142 186
8 21954 4816 195 82
9 20069 8169 73 221
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 55 1 40030
1 14 1 19718
2 145 1 724
3 140 4 8180
4 208 1 6823
5 302 1 8624
6 136 1 10880
7 247 1 1178
8 257 3 9894
9 193 5 2073
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 10967 4419 5 1
1 1251 3340 2 1
2 724 1515 0 1
3 490 775 2 1
4 1221 1377 0 1
5 4065 5313 0 10
6 1190 2174 0 10
7 1178 1756 0 10
8 2920 2804 0 10
9 2073 2605 1 10
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 22 3 2 13 True
1 25 1 1 11 True
2 13 0 1 7 True
3 11 0 0 9 True
4 55 3 12 27 True
5 8 0 1 6 False
6 20 0 7 1 False
7 23 2 3 11 False
8 16 0 4 8 False
9 47 4 7 21 False ,
assists baronKills bountyLevel champLevel championName \
0 1 0 1 11 Gnar
1 2 0 7 11 Rengar
2 1 0 2 11 Katarina
3 5 0 5 9 Ezreal
4 8 0 0 8 Blitzcrank
5 0 0 0 10 Rumble
6 0 0 0 8 MasterYi
7 2 0 0 10 Annie
8 2 0 0 8 Ashe
9 2 0 0 7 Lulu
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 748 748 748
1 0 15743 0
2 46 46 46
3 2618 5196 2618
4 0 103 0
5 897 897 897
6 0 3724 0
7 0 296 0
8 181 181 181
9 116 116 116
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 2 1 0 False False
1 1 0 0 False False
2 3 0 0 False False
3 1 1 1 False False
4 1 2 0 False False
5 4 3 0 False True
6 6 1 0 False False
7 5 1 0 False False
8 5 1 0 False False
9 5 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 4053 TOP 0
1 True 7597 JUNGLE 0
2 True 6897 MIDDLE 0
3 True 7987 BOTTOM 0
4 True 4097 UTILITY 0
5 True 5231 TOP 0
6 True 5222 JUNGLE 0
7 True 4418 MIDDLE 0
8 True 4206 BOTTOM 0
9 True 3930 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1054 3051 1001 1028 6029 0 3340
1 0 6691 2031 3158 1036 0 0 3364
2 0 3115 3145 1026 0 0 3020 3340
3 0 3042 1083 0 3158 3802 3108 3340
4 0 3859 3067 2055 3047 0 1033 3364
5 0 1054 3145 3020 2055 1026 1028 3340
6 0 6691 2031 3006 0 0 0 3340
7 0 1056 1026 2055 3802 3020 0 3364
8 0 1001 6670 1018 0 0 3070 3340
9 0 3851 0 6617 0 0 1001 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 1 0 1
1 1 8 7 1
2 3 9 3 2
3 2 7 5 2
4 0 0 0 0
5 1 3 3 1
6 0 3 0 1
7 0 1 0 1
8 0 0 0 0
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 226 1013 325
1 233 16340 514
2 319 30759 5737
3 472 5854 4105
4 725 2710 1212
5 464 37371 7502
6 259 2968 58
7 249 23057 2244
8 451 1982 509
9 463 3907 2030
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 5549 0 0
1 3728 100 0
2 2077 0 0
3 852 4 0
4 1472 0 0
5 429 0 0
6 3837 64 0
7 3456 0 0
8 2246 4 0
9 2846 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 33024
1 0 2 62916
2 0 3 7585
3 0 4 37308
4 0 5 2955
5 0 6 8086
6 0 7 45130
7 0 8 8064
8 0 9 37424
9 0 10 1153
physicalDamageDealtToChampions physicalDamageTaken role \
0 5212 1798 SUPPORT
1 7860 10225 SUPPORT
2 901 4001 SUPPORT
3 4977 4338 DUO
4 706 4357 SUPPORT
5 754 8388 SUPPORT
6 3723 9378 SUPPORT
7 445 2531 SUPPORT
8 4072 5077 SUPPORT
9 586 3962 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 4 1 12 128
1 2 4 10 11 184
2 3 14 2 4 164
3 1 4 2 12 193
4 2 3 2 4 246
5 2 4 3 14 174
6 7 11 2 4 196
7 2 14 2 4 121
8 2 4 3 7 399
9 1 14 2 4 367
summonerName teamEarlySurrendered teamId teamPosition \
0 ThatHighK1d False 100 TOP
1 FOR FUN PLAYERRR False 100 JUNGLE
2 KkangTong False 100 MIDDLE
3 RacerDoc False 100 BOTTOM
4 Cigs After Sex False 100 UTILITY
5 Coolgum15 False 200 TOP
6 PenguinWarrior False 200 JUNGLE
7 fruglu False 200 MIDDLE
8 Shmoo The Cat False 200 BOTTOM
9 Crimsonn Chinn False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 20 960 34037 5537
1 6 960 90073 8734
2 0 960 38894 7189
3 0 960 43162 9083
4 11 960 10947 1963
5 7 960 46135 8799
6 2 960 53857 4655
7 8 960 31517 3085
8 19 960 41087 4581
9 7 960 5180 2736
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 7994 476 64 219
1 14324 8945 7 203
2 6451 503 79 1
3 5245 1231 104 8
4 6317 139 21 37
5 8902 467 93 90
6 13561 4324 5 45
7 6287 3 84 86
8 7449 1003 87 417
9 6907 275 3 90
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 26 1 0
1 12 1 10816
2 65 1 550
3 14 1 0
4 21 2 5281
5 113 1 678
6 118 1 5758
7 96 1 395
8 86 2 1680
9 74 1 120
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 646 0 0
1 359 370 0 0
2 550 373 0 0
3 0 54 1 0
4 44 488 0 0
5 542 84 0 1
6 874 346 0 1
7 395 300 0 1
8 0 125 0 1
9 120 98 0 1
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 9 1 2 5 True
1 11 0 2 3 True
2 10 0 3 4 True
3 3 1 1 3 True
4 15 3 1 7 True
5 13 4 2 6 False
6 8 1 0 5 False
7 6 3 2 2 False
8 10 1 0 6 False
9 15 2 0 9 False ,
assists baronKills bountyLevel champLevel championName \
0 0 0 0 11 Rumble
1 8 0 0 9 Gragas
2 0 0 11 11 Kassadin
3 4 0 4 9 Tristana
4 9 0 2 9 Thresh
5 0 0 1 11 Azir
6 2 0 0 8 Udyr
7 0 0 0 8 Anivia
8 0 0 0 8 Ezreal
9 2 0 0 7 Malphite
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 0 0 0
1 0 13199 0
2 3375 3375 3375
3 2896 5200 2896
4 36 493 36
5 1863 1863 1863
6 0 2285 0
7 0 0 0
8 0 0 0
9 0 0 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 3 1 0 False False
1 2 0 1 True False
2 0 0 0 False True
3 2 0 0 False False
4 0 2 0 False False
5 3 1 0 False False
6 2 0 0 False False
7 7 0 0 False False
8 4 1 0 False False
9 5 3 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False True False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 4606 TOP 0
1 True 4580 JUNGLE 0
2 True 8405 MIDDLE 0
3 True 6978 BOTTOM 0
4 True 4701 UTILITY 0
5 True 5754 TOP 0
6 True 4178 JUNGLE 0
7 True 3884 MIDDLE 0
8 True 4473 BOTTOM 0
9 True 3693 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1054 3020 3108 3145 2055 1028 3340
1 0 4636 2031 2420 0 0 0 3513
2 0 3041 2033 3070 3020 3802 1026 3340
3 0 1055 2031 6670 3086 3006 0 3340
4 0 3859 3117 2055 1029 1033 3067 3364
5 0 1056 6653 0 1001 0 0 3340
6 0 3111 2031 2055 1033 1029 6660 3340
7 0 3070 3802 1001 4632 1052 0 3340
8 0 3508 1001 2031 3070 0 1055 3340
9 0 3851 2031 0 1029 6660 3111 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 2 2 1
1 0 0 0 0
2 1 11 11 2
3 2 6 4 2
4 1 2 2 2
5 1 4 2 1
6 0 0 0 0
7 0 1 0 1
8 0 2 0 1
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 385 33487 5782
1 309 31675 2732
2 0 38251 12472
3 318 11881 901
4 0 6015 3047
5 495 42175 8154
6 530 23344 731
7 242 20288 2664
8 318 2570 1698
9 451 7320 5007
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 6570 0 0
1 2849 60 0
2 3383 0 0
3 2359 4 0
4 3492 0 0
5 6127 0 0
6 5575 56 0
7 8198 4 0
8 1997 0 0
9 4021 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 5065
1 0 2 11315
2 0 3 11573
3 0 4 38211
4 0 5 3909
5 0 6 4699
6 0 7 16985
7 0 8 6845
8 0 9 28844
9 0 10 2739
physicalDamageDealtToChampions physicalDamageTaken role \
0 181 1829 SUPPORT
1 887 9950 SUPPORT
2 2727 6349 SUPPORT
3 7768 2817 DUO
4 868 2633 SUPPORT
5 384 1910 SUPPORT
6 1297 7850 SUPPORT
7 1236 3780 SUPPORT
8 2506 4204 SUPPORT
9 891 4765 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 4 2 14 174
1 2 4 9 11 72
2 1 12 2 4 250
3 2 7 0 4 357
4 4 14 2 4 195
5 1 12 3 4 409
6 7 11 2 4 242
7 2 12 3 4 256
8 4 14 2 4 202
9 2 4 2 14 202
summonerName teamEarlySurrendered teamId teamPosition \
0 Coolgum15 False 100 TOP
1 Uuruuruur False 100 JUNGLE
2 DropZedGorgeous False 100 MIDDLE
3 AlexRoseSure False 100 BOTTOM
4 ViewMyMemes False 100 UTILITY
5 Shifty Sandy Man False 200 TOP
6 The Godƒather False 200 JUNGLE
7 skootins dog False 200 MIDDLE
8 Riwen False 200 BOTTOM
9 Vsaurus909 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 7 959 46126 6257
1 11 959 54540 3699
2 14 959 53175 15199
3 1 959 50354 8932
4 22 959 14113 4436
5 6 959 46874 8539
6 10 959 43870 2253
7 16 959 27423 4191
8 0 959 35044 4828
9 20 959 10120 5958
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 8422 681 83 144
1 13008 8102 5 217
2 10016 4173 99 51
3 5500 1843 115 10
4 6486 1152 23 69
5 8331 166 94 90
6 13426 5150 11 127
7 12010 49 62 307
8 6576 247 72 0
9 9243 135 12 145
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 67 1 7573
1 28 1 11550
2 0 1 3350
3 33 2 262
4 0 3 4188
5 72 1 0
6 35 1 3540
7 162 1 290
8 88 1 3628
9 81 1 60
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 293 22 0 0
1 80 208 0 0
2 0 283 1 0
3 262 323 0 0
4 520 360 0 0
5 0 293 0 1
6 224 0 0 1
7 290 32 0 1
8 623 373 0 1
9 60 456 0 1
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 2 2 0 2 True
1 6 0 0 3 True
2 5 0 0 3 True
3 10 0 3 3 True
4 24 3 3 6 True
5 14 1 1 4 False
6 6 1 0 5 False
7 4 1 0 3 False
8 7 1 0 6 False
9 11 3 2 6 False ,
assists baronKills bountyLevel champLevel championName \
0 5 0 0 11 Hecarim
1 2 0 0 12 Aatrox
2 0 0 0 12 Qiyana
3 0 0 0 11 Yasuo
4 2 0 0 9 Neeko
5 0 0 7 15 Viego
6 3 0 1 11 Shaco
7 2 0 7 15 Xerath
8 1 0 0 11 Tristana
9 8 0 1 11 Seraphine
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 177 20069 177
1 1639 2715 1639
2 747 747 747
3 0 3929 0
4 0 2344 0
5 6801 9993 6801
6 1796 15622 1796
7 2276 2276 2276
8 5445 9549 5445
9 435 1037 435
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 3 3 1 False False
1 5 0 0 False False
2 10 0 0 False False
3 4 1 1 False False
4 6 2 0 False False
5 4 0 0 False False
6 0 1 1 False False
7 1 0 0 False True
8 2 1 0 False False
9 2 3 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 6381 JUNGLE 0
1 True 7486 TOP 0
2 True 8121 MIDDLE 0
3 True 7502 BOTTOM 0
4 True 4375 UTILITY 0
5 True 12460 TOP 0
6 True 6966 JUNGLE 0
7 True 11410 MIDDLE 0
8 True 7540 BOTTOM 0
9 True 6494 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3158 6664 3066 1031 0 0 3340
1 0 1055 3044 3047 3075 3067 6029 3340
2 0 3158 6693 6695 3070 1036 1036 3340
3 0 1055 1018 3006 6673 1037 0 3340
4 0 1052 3067 3851 0 1026 3020 3364
5 0 3153 3006 6609 6670 1037 1055 3340
6 0 6692 3006 3057 1018 2031 0 3364
7 0 1056 6655 3041 3020 4628 1058 3340
8 0 1054 6672 3006 1018 0 0 3363
9 0 6617 3853 3114 3158 1052 1052 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 0 0 0
1 0 2 0 1
2 1 5 4 2
3 0 2 0 1
4 0 0 0 0
5 1 11 7 3
6 0 1 0 1
7 2 12 7 1
8 1 3 2 2
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 597 22571 829
1 573 2649 390
2 318 5238 602
3 755 2581 277
4 566 14047 3270
5 287 5598 2383
6 0 36813 822
7 697 127690 19515
8 585 12859 910
9 589 19283 3857
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 4976 100 0
1 3807 4 0
2 10609 0 0
3 3921 12 0
4 5539 0 0
5 2193 40 0
6 1284 103 0
7 711 10 0
8 2043 1 0
9 935 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 65401
1 0 2 66648
2 0 3 60680
3 0 4 86674
4 0 5 1607
5 0 6 138405
6 0 7 47332
7 0 8 6467
8 0 9 60327
9 0 10 2570
physicalDamageDealtToChampions physicalDamageTaken role \
0 2800 18325 NONE
1 8708 14236 SOLO
2 8491 7047 SOLO
3 4858 5860 CARRY
4 276 5165 SUPPORT
5 19643 17782 NONE
6 1187 11673 NONE
7 851 7241 SOLO
8 5475 5379 CARRY
9 993 3529 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 5 6 12 11 174
1 2 4 5 14 209
2 4 14 3 4 460
3 5 3 3 4 192
4 2 4 4 14 57
5 6 14 4 4 263
6 10 11 3 14 197
7 3 12 4 4 72
8 3 7 3 4 215
9 4 3 3 4 169
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 Coolgum15 False 100 JUNGLE 11
1 GoodUsername19 False 100 TOP 11
2 Snakevenom645 False 100 MIDDLE 6
3 MasterOnyx1 False 100 BOTTOM 15
4 Vebles False 100 UTILITY 19
5 SpicyCattoLicc False 200 TOP 21
6 TheBigHotel False 200 JUNGLE 4
7 Lets Make Out False 200 MIDDLE 18
8 TUS ButterNut False 200 BOTTOM 1
9 TUS Kumquat False 200 UTILITY 11
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1375 100445 4058
1 1375 78240 10001
2 1375 69773 9833
3 1375 89256 5136
4 1375 16229 4120
5 1375 154320 23571
6 1375 94622 2391
7 1375 134371 20409
8 1375 85256 6948
9 1375 21853 4850
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 23876 11694 9 187
1 19153 4811 115 202
2 17883 1296 122 36
3 10150 1684 156 99
4 10956 802 16 61
5 21903 9056 161 135
6 12958 7233 13 490
7 8069 678 176 171
8 7767 1821 124 7
9 4722 2174 21 96
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 68 1 12472
1 92 1 8941
2 269 1 3854
3 91 1 0
4 130 1 574
5 98 1 10317
6 0 1 10477
7 32 1 214
8 43 2 12069
9 37 5 0
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 428 573 1 5
1 902 1109 0 5
2 739 225 0 5
3 0 369 0 5
4 574 251 0 5
5 1544 1926 2 1
6 381 0 1 1
7 42 116 1 1
8 562 344 1 1
9 0 257 0 1
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 17 3 0 9 False
1 12 0 1 6 False
2 13 0 2 7 False
3 11 1 1 8 False
4 23 2 3 13 False
5 18 0 3 7 True
6 6 1 2 2 True
7 10 0 1 7 True
8 13 1 4 8 True
9 40 3 3 17 True ,
assists baronKills bountyLevel champLevel championName \
0 2 0 0 13 Nasus
1 2 0 0 11 Hecarim
2 3 0 0 13 Diana
3 4 0 0 12 Kaisa
4 8 0 0 10 Senna
5 8 0 1 13 Fiora
6 9 0 0 13 Khazix
7 7 0 0 13 Katarina
8 5 0 10 13 Caitlyn
9 19 0 0 12 Rell
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 4070 4070 4070
1 0 3465 0
2 0 0 0
3 0 0 0
4 325 325 325
5 3173 4599 3173
6 1194 16050 1194
7 4825 6007 4825
8 17317 31157 17317
9 1561 3665 1561
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 6 0 0 False False
1 11 0 0 False False
2 8 1 0 False False
3 5 0 0 False False
4 11 3 0 False False
5 3 3 0 False False
6 4 2 2 False False
7 5 1 0 False True
8 2 1 1 False False
9 1 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False True False
9 True False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 7719 TOP 0
1 False 7109 JUNGLE 0
2 False 8554 MIDDLE 0
3 False 8333 BOTTOM 0
4 False 5655 UTILITY 0
5 False 8655 TOP 0
6 False 9891 JUNGLE 1
7 False 9528 MIDDLE 0
8 False 16728 BOTTOM 2
9 False 8729 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 3 1054 6632 3075 3082 0 0 3340
1 3 3047 2031 6664 3044 1028 1037 3364
2 3 3157 2033 4636 3020 0 0 3340
3 3 1055 3006 6671 3046 1042 1042 3340
4 3 3009 6672 3864 6677 0 0 3364
5 0 6632 3077 3047 1083 1053 0 3340
6 0 6693 2031 2055 3158 6695 3134 3364
7 0 1055 3115 3020 4633 1026 0 3340
8 0 6671 3031 1055 3006 3094 6676 3340
9 0 3111 3109 3860 3742 3076 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 3 0 1
1 0 3 0 1
2 1 4 2 1
3 1 5 3 1
4 0 0 0 0
5 2 5 2 1
6 3 8 3 2
7 2 7 4 1
8 2 20 10 3
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 504 28009 2674
1 295 25711 1947
2 294 72310 12250
3 366 8992 3994
4 281 0 0
5 740 3241 949
6 857 6615 990
7 435 74041 14519
8 847 2817 1437
9 834 9896 5058
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 3848 2 0
1 4261 80 0
2 7242 0 0
3 5792 0 0
4 2823 0 0
5 3405 9 0
6 5917 117 0
7 5966 7 0
8 5047 34 0
9 1883 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 57319
1 0 2 56586
2 0 3 14531
3 0 4 67878
4 0 5 10689
5 0 6 75664
6 0 7 101362
7 0 8 14574
8 0 9 154054
9 0 10 4535
physicalDamageDealtToChampions physicalDamageTaken role \
0 6952 15574 SOLO
1 5739 27591 NONE
2 1880 11727 SOLO
3 10624 11062 CARRY
4 7171 10065 SUPPORT
5 11701 17909 SOLO
6 10745 17477 NONE
7 2155 11878 SOLO
8 28625 8940 CARRY
9 1080 8482 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 1 12 174
1 11 11 5 6 103
2 3 4 6 14 270
3 5 7 3 4 137
4 3 4 4 3 206
5 4 4 3 12 284
6 2 4 12 11 90
7 5 14 3 4 165
8 3 4 2 7 349
9 2 4 5 14 144
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 Coolgum15 False 100 TOP 10
1 NeoNicCrystal False 100 JUNGLE 10
2 HiltnPizza False 100 MIDDLE 10
3 Tuetal False 100 BOTTOM 0
4 StateStructure False 100 UTILITY 24
5 Meyneth Wilder False 200 TOP 5
6 Gaetan Tanguay False 200 JUNGLE 5
7 Jade2838 False 200 MIDDLE 0
8 Ceak False 200 BOTTOM 17
9 Zoum False 200 UTILITY 21
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1426 85469 9767
1 1426 86637 8451
2 1426 96662 15824
3 1426 76870 14618
4 1426 11306 7562
5 1426 82775 16520
6 1426 113665 12209
7 1426 89160 17218
8 1426 163958 32031
9 1426 19845 6665
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 21799 953 110 65
1 34117 10120 29 198
2 19933 1033 132 69
3 17907 4341 124 0
4 13614 729 3 90
5 21604 8691 113 94
6 23505 12388 19 127
7 18583 4120 116 0
8 15081 7362 154 152
9 12292 4076 27 41
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 182 1 140
1 274 1 4339
2 233 1 9820
3 76 3 0
4 227 3 616
5 101 2 3869
6 105 1 5688
7 170 1 544
8 63 2 7086
9 27 5 5413
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 140 2377 1 11
1 763 2264 0 11
2 1693 963 0 11
3 0 1052 0 11
4 390 725 0 11
5 3869 290 2 1
6 474 110 1 1
7 544 738 2 1
8 1968 1094 6 1
9 526 1926 0 1
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 3 0 0 2 False
1 12 0 0 5 False
2 16 1 3 8 False
3 7 0 0 4 False
4 24 3 2 13 False
5 18 5 1 9 True
6 22 4 1 3 True
7 15 1 2 8 True
8 16 1 2 8 True
9 29 0 0 16 True ,
assists baronKills bountyLevel champLevel championName \
0 10 0 2 16 Urgot
1 18 0 5 18 Hecarim
2 16 0 1 18 Garen
3 10 0 5 16 Twitch
4 23 0 0 16 Ziggs
5 10 0 0 17 Singed
6 8 1 0 15 Volibear
7 11 0 0 15 Diana
8 4 0 2 18 Sivir
9 18 0 0 14 Soraka
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2514 16853 2514
1 2464 26386 2464
2 7180 7609 7180
3 2692 5442 2692
4 28397 28706 28397
5 555 1104 555
6 118 24881 118
7 1253 5323 1253
8 1972 9045 1972
9 564 1514 564
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 1 2 False True
1 5 2 1 True False
2 5 0 0 False False
3 10 0 0 False False
4 8 0 0 False False
5 13 2 0 False False
6 10 0 2 False False
7 16 1 0 False False
8 7 0 0 False False
9 11 3 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 True False False
6 False True False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 13266 TOP 1
1 False 17787 JUNGLE 1
2 False 17147 MIDDLE 1
3 False 14578 BOTTOM 0
4 False 11127 UTILITY 0
5 False 13424 TOP 0
6 False 12063 JUNGLE 0
7 False 8416 MIDDLE 0
8 False 19977 BOTTOM 0
9 False 8408 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3071 6672 3111 3748 3076 1028 3340
1 0 3143 6664 3158 3053 3742 3075 3364
2 0 3006 6631 3742 3053 3075 1031 3340
3 0 3085 6672 3006 3031 1018 3035 3340
4 0 3853 3157 6617 3070 3020 3165 3364
5 3 2033 3116 6653 4637 3066 3047 3340
6 3 6664 3742 3047 3075 3105 1029 3340
7 3 1056 3152 3020 3157 0 0 3340
8 3 6694 3042 3158 6691 3814 3508 3340
9 3 3853 3083 6617 1001 0 3067 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 4 9 3 1
1 5 15 5 2
2 4 14 5 2
3 3 14 5 2
4 1 4 2 2
5 1 3 2 1
6 1 6 2 1
7 0 1 0 1
8 7 23 5 4
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 619 5 5
1 679 71267 8831
2 677 5614 1383
3 374 978 247
4 407 86798 25234
5 280 182781 36168
6 581 76935 4422
7 205 76590 14246
8 684 0 0
9 504 17545 5957
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 10912 51 0
1 17935 161 0
2 19078 12 0
3 9582 43 0
4 6022 0 0
5 4669 1 0
6 9029 114 1
7 6281 0 0
8 9019 0 0
9 8149 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 165272
1 0 2 162425
2 0 3 149408
3 0 4 142702
4 0 5 4878
5 0 6 4846
6 0 7 56203
7 1 8 15240
8 0 9 261440
9 0 10 2356
physicalDamageDealtToChampions physicalDamageTaken role \
0 19957 17387 SOLO
1 17402 31925 NONE
2 27889 25318 SOLO
3 24357 18265 CARRY
4 781 14470 SUPPORT
5 251 29896 SOLO
6 7050 24427 NONE
7 1800 24504 SOLO
8 54402 21995 CARRY
9 717 16365 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 6 12 6 4 172
1 8 6 25 11 174
2 5 4 10 14 105
3 5 4 6 7 124
4 7 14 5 4 204
5 6 4 6 14 220
6 4 4 16 11 169
7 7 14 5 4 171
8 8 7 6 4 187
9 9 3 5 4 277
summonerName teamEarlySurrendered teamId teamPosition \
0 anonymous child2 False 100 TOP
1 Coolgum15 False 100 JUNGLE
2 Nitrofade False 100 MIDDLE
3 Jhin Artist False 100 BOTTOM
4 Lêgend False 100 UTILITY
5 Hexar Grim False 200 TOP
6 Enemyathegates False 200 JUNGLE
7 Vanillanilla False 200 MIDDLE
8 TrainedApe False 200 BOTTOM
9 WrappedUp False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 32 2134 178094 23425
1 38 2134 259808 27938
2 55 2134 165028 37419
3 19 2134 165683 31864
4 26 2134 117688 26876
5 56 2134 189349 38141
6 27 2134 153709 13167
7 8 2134 97925 17417
8 10 2134 262194 54850
9 47 2134 19901 6675
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 28714 4424 148 276
1 51726 27198 67 386
2 45900 8517 182 208
3 28856 8809 128 504
4 20934 4731 54 238
5 38520 2380 223 654
6 39093 8007 46 396
7 36395 2222 119 44
8 34260 10779 240 128
9 27500 21804 19 202
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 193 1 12815
1 172 1 26115
2 209 1 10005
3 342 4 22002
4 220 5 26012
5 468 1 1722
6 275 1 20570
7 483 1 6095
8 271 4 754
9 340 5 0
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 3462 414 0 3
1 1704 1866 2 3
2 8147 1504 2 3
3 7258 1008 2 3
4 860 442 5 3
5 1722 3954 1 11
6 1694 5636 1 11
7 1370 5610 0 11
8 448 3245 0 11
9 0 2986 0 11
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 16 1 0 9 True
1 25 2 8 5 True
2 21 0 1 11 True
3 18 0 1 10 True
4 59 0 2 27 True
5 21 2 2 12 False
6 18 0 2 7 False
7 17 1 0 13 False
8 16 0 0 11 False
9 67 3 6 29 False ,
assists baronKills bountyLevel champLevel championName \
0 1 0 0 13 Nasus
1 2 0 0 12 MasterYi
2 0 0 0 14 Lissandra
3 2 0 0 10 Ezreal
4 5 0 0 11 Senna
5 5 0 4 14 Neeko
6 7 0 6 15 Rengar
7 4 1 5 15 Viego
8 14 0 0 13 MissFortune
9 20 0 2 13 Morgana
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 8118 8278 8118
1 4731 12941 4731
2 1385 2569 1385
3 2801 2801 2801
4 1085 1666 1085
5 6521 9501 6521
6 2431 24509 2431
7 8807 20721 8807
8 5076 11215 5076
9 1623 3813 1623
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 6 0 0 False False
1 9 3 0 False False
2 6 0 0 False False
3 11 0 0 False False
4 11 2 0 False False
5 2 0 0 False False
6 3 2 1 True False
7 2 2 2 False True
8 4 0 0 True False
9 4 2 0 True False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 8069 TOP 1
1 True 10979 JUNGLE 0
2 True 8013 MIDDLE 0
3 True 7579 BOTTOM 0
4 True 6729 UTILITY 0
5 True 9470 TOP 0
6 True 12802 JUNGLE 0
7 True 11282 MIDDLE 1
8 True 12094 BOTTOM 1
9 True 9660 UTILITY 1
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 3 1054 3158 6632 3110 3067 0 3364
1 3 0 0 3153 1001 6676 6691 3364
2 3 3070 3157 3020 0 6653 0 3340
3 3 3042 2031 3057 3006 3134 3133 3340
4 3 2003 3864 2055 3009 6672 6677 3364
5 1 4629 6656 3020 0 1082 0 3340
6 1 6691 1037 3508 3158 3134 2055 3364
7 1 1055 3153 3111 6672 1028 1036 3340
8 1 3031 3006 6671 6676 0 0 3340
9 1 3853 3157 3117 4005 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 3 2 1
1 2 8 3 2
2 0 1 0 1
3 0 2 0 1
4 0 1 0 1
5 1 5 4 1
6 3 15 6 2
7 2 7 5 2
8 2 9 5 1
9 3 7 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 596 9455 2067
1 360 3311 0
2 436 99544 7697
3 295 7320 3383
4 200 0 0
5 616 94217 15833
6 576 29649 1260
7 624 3262 929
8 600 6951 1353
9 540 17022 9943
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 13854 3 0
1 3777 88 0
2 2478 1 0
3 4946 2 0
4 5356 1 0
5 2290 4 0
6 5413 117 0
7 4328 12 0
8 1262 14 0
9 1614 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 90201
1 0 2 87879
2 0 3 9062
3 0 4 59599
4 0 5 29092
5 0 6 12374
6 0 7 95883
7 0 8 104331
8 0 9 113390
9 0 10 2430
physicalDamageDealtToChampions physicalDamageTaken role \
0 6683 14329 SOLO
1 11818 20073 NONE
2 713 9208 SOLO
3 9096 9849 CARRY
4 8488 9104 SUPPORT
5 2667 9432 SOLO
6 20337 19558 NONE
7 7743 10812 SOLO
8 13216 11592 CARRY
9 881 9707 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 6 3 4 252
1 3 4 10 11 127
2 3 4 1 12 174
3 2 4 5 7 113
4 0 14 4 4 249
5 3 4 3 12 290
6 12 11 4 4 260
7 5 14 3 4 233
8 4 7 3 4 266
9 5 14 4 4 122
summonerName teamEarlySurrendered teamId teamPosition \
0 thisisatriumph False 100 TOP
1 LY Show Time False 100 JUNGLE
2 Coolgum15 False 100 MIDDLE
3 zvoln False 100 BOTTOM
4 LaugStorm False 100 UTILITY
5 cowkings2010 False 200 TOP
6 Kendreek False 200 JUNGLE
7 Schedge False 200 MIDDLE
8 Peep My Tentacle False 200 BOTTOM
9 Chipz1290 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 10 1460 101380 8835
1 2 1460 105352 13516
2 17 1460 112731 8675
3 0 1460 66920 12479
4 27 1460 30211 8616
5 27 1460 106592 18500
6 11 1460 138102 22658
7 7 1460 116340 9918
8 5 1460 120919 14644
9 54 1460 22634 11511
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 28466 1497 134 258
1 24479 7871 24 107
2 12240 1100 175 179
3 15689 908 129 0
4 15168 2955 15 97
5 11896 2726 148 176
6 25726 15571 14 219
7 15456 5955 165 14
8 13524 4169 142 208
9 11581 3018 8 68
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 161 1 1724
1 237 1 14161
2 182 1 4124
3 218 2 0
4 196 5 1118
5 57 1 0
6 76 1 12569
7 62 3 8746
8 95 3 578
9 85 5 3181
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 84 282 2 11
1 1697 629 1 11
2 264 553 0 11
3 0 893 1 11
4 128 707 0 11
5 0 174 4 4
6 1060 755 1 4
7 1245 315 4 4
8 74 670 2 4
9 686 259 0 4
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 2 0 0 2 False
1 17 3 5 3 False
2 8 0 0 5 False
3 11 0 1 6 False
4 45 3 6 17 False
5 1 0 0 1 True
6 25 3 4 4 True
7 15 3 1 8 True
8 10 0 1 5 True
9 34 2 2 17 True ,
assists baronKills bountyLevel champLevel championName \
0 2 0 0 10 Camille
1 2 0 0 9 Shaco
2 1 0 1 10 Blitzcrank
3 3 0 0 12 Senna
4 7 0 1 9 Braum
5 1 0 0 13 Mordekaiser
6 14 0 0 11 Skarner
7 6 0 12 12 Qiyana
8 3 0 0 12 Samira
9 14 0 2 10 Nautilus
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 0 240 0
1 0 1171 0
2 0 0 0
3 812 945 812
4 59 59 59
5 6558 17276 6558
6 0 8018 0
7 1739 2554 1739
8 3864 5721 3864
9 554 1041 554
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 0 0 False False
1 10 2 0 False True
2 5 0 0 False False
3 4 0 0 False False
4 10 1 0 True False
5 2 2 0 False False
6 4 0 2 False False
7 1 0 0 False False
8 3 2 0 False False
9 4 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 4417 TOP 0
1 True 6658 JUNGLE 0
2 True 5630 MIDDLE 0
3 True 8348 BOTTOM 0
4 True 6047 UTILITY 0
5 True 10351 TOP 0
6 True 7571 JUNGLE 0
7 True 10305 MIDDLE 0
8 True 8466 BOTTOM 0
9 True 6775 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1054 2031 2010 3047 3057 3051 3340
1 0 2031 6671 3006 1036 1036 0 3364
2 0 3047 6656 0 0 0 0 3340
3 0 6672 3006 1018 3124 0 0 3363
4 0 3047 2055 3855 3024 1028 3190 3364
5 0 1056 3157 3111 4633 1026 1052 3340
6 0 3111 6664 2031 3742 0 0 3340
7 0 2031 6693 3070 6695 3133 3158 3340
8 0 1055 3047 3134 1037 1018 6673 3340
9 0 3859 3190 3047 3109 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 0 0 0
1 1 5 2 1
2 0 3 0 1
3 1 3 2 1
4 0 3 0 1
5 1 7 7 2
6 1 2 2 1
7 1 13 12 2
8 2 8 5 2
9 1 4 2 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 556 140 140
1 249 14922 1350
2 185 11733 3459
3 608 155 155
4 283 6400 3658
5 703 87319 9749
6 638 30760 1978
7 191 4322 1032
8 407 6878 1276
9 593 10183 3798
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 5517 0 0
1 3594 40 0
2 1667 0 0
3 2677 0 0
4 4378 0 0
5 1277 16 0
6 1968 96 0
7 2141 0 0
8 1439 6 0
9 2926 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 25327
1 0 2 28467
2 0 3 15274
3 0 4 54328
4 0 5 4947
5 0 6 15680
6 0 7 41579
7 0 8 70047
8 0 9 70754
9 0 10 6048
physicalDamageDealtToChampions physicalDamageTaken role \
0 2421 5370 SOLO
1 4581 11422 NONE
2 1318 7890 SOLO
3 10703 7981 CARRY
4 1625 10320 SUPPORT
5 2023 8160 DUO
6 3217 11745 NONE
7 15617 6194 NONE
8 7337 9702 DUO
9 1829 7371 SOLO
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 1 14 1 4 30
1 7 11 4 14 81
2 3 4 3 14 379
3 4 4 4 7 418
4 3 4 5 14 58
5 1 4 3 6 173
6 2 4 8 11 192
7 2 4 2 14 384
8 1 4 2 7 182
9 2 14 3 4 370
summonerName teamEarlySurrendered teamId teamPosition \
0 3lpsyc0gr00 False 100 TOP
1 FirePhoenixLin False 100 JUNGLE
2 DurzoMandragoran False 100 MIDDLE
3 ID Change Master False 100 BOTTOM
4 Contractuelle False 100 UTILITY
5 Coolgum15 False 200 TOP
6 Ache47 False 200 JUNGLE
7 CheeseCakeNarwal False 200 MIDDLE
8 JesusGK False 200 BOTTOM
9 dracus1234567 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 8 1239 30178 2841
1 19 1239 46920 6482
2 22 1239 35995 5305
3 36 1239 56949 11753
4 26 1239 15418 5828
5 3 1239 108577 12121
6 30 1239 77403 5801
7 18 1239 75062 16871
8 1 1239 77841 8613
9 52 1239 20239 6130
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 10980 100 67 83
1 15466 3118 11 394
2 9706 70 81 54
3 10875 5602 133 132
4 15470 298 28 126
5 10047 4113 144 24
6 14179 4410 11 496
7 8777 1638 133 138
8 11846 2416 128 8
9 10873 347 25 223
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 136 1 4711
1 128 1 3530
2 62 1 8987
3 117 4 2465
4 166 3 4070
5 54 1 5577
6 66 1 5063
7 8 1 692
8 80 2 208
9 56 1 4007
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 280 92 0 6
1 550 448 0 6
2 527 148 0 6
3 895 216 0 6
4 544 771 0 6
5 347 609 3 0
6 605 465 0 0
7 222 440 1 0
8 0 704 1 0
9 502 575 1 0
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 6 0 0 4 False
1 8 2 0 2 False
2 8 0 0 5 False
3 8 0 0 6 False
4 21 2 4 8 False
5 12 2 0 6 True
6 16 0 2 6 True
7 6 0 0 4 True
8 12 2 1 7 True
9 13 0 1 7 True ,
assists baronKills bountyLevel champLevel championName \
0 9 0 1 18 Mordekaiser
1 20 0 5 18 Kayn
2 14 0 0 18 Malzahar
3 6 0 0 18 Tristana
4 17 0 0 15 Pyke
5 12 0 0 18 Volibear
6 5 1 0 17 Viego
7 9 0 0 18 Akali
8 17 0 0 17 Sivir
9 18 0 0 15 Swain
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 6000 32268 6000
1 1892 18001 1892
2 6510 6510 6510
3 1732 21452 1732
4 0 611 0
5 1180 7992 1180
6 1123 24604 1123
7 3714 3714 3714
8 3616 14822 3616
9 1201 3392 1201
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 8 2 2 False False
1 9 2 1 False False
2 10 0 0 False False
3 11 1 1 False False
4 14 14 0 False False
5 11 3 0 True False
6 11 2 2 True False
7 9 2 0 False False
8 13 3 0 False True
9 13 4 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 17904 TOP 1
1 False 18280 JUNGLE 0
2 False 14699 MIDDLE 1
3 False 19762 BOTTOM 0
4 False 12330 UTILITY 0
5 False 14884 TOP 0
6 False 14212 JUNGLE 0
7 False 19580 MIDDLE 0
8 False 13841 BOTTOM 0
9 False 12822 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 4633 3157 4637 3111 3065 3108 3363
1 0 6692 1036 3071 3047 3065 6609 3364
2 0 3165 6653 4637 3020 3116 0 3364
3 0 6672 3031 3046 3036 3156 3006 3363
4 0 3857 3117 2055 6691 6609 3179 3364
5 2 3044 4401 6662 3111 3742 3065 3363
6 2 6672 2031 3153 6333 3006 1031 3340
7 2 3157 3140 4637 4633 3135 3089 3340
8 2 3134 3140 6691 3158 3042 6694 3340
9 2 3853 3157 3916 4637 3020 6653 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 12 5 3
1 4 15 5 3
2 1 5 2 2
3 5 21 7 2
4 0 4 0 1
5 2 9 4 1
6 3 11 2 2
7 3 19 6 2
8 0 5 0 1
9 2 8 3 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 923 203514 32268
1 536 7649 0
2 378 180737 33305
3 678 34970 3871
4 426 0 0
5 433 132226 12436
6 535 13380 1848
7 471 155993 46324
8 542 0 0
9 396 64351 37504
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 18062 50 0
1 33513 170 0
2 12952 14 0
3 14479 36 0
4 20836 4 0
5 19623 46 0
6 11554 109 0
7 16830 24 0
8 12975 2 0
9 11881 4 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 25397
1 0 2 205702
2 0 3 20467
3 0 4 168190
4 0 5 21224
5 0 6 69768
6 0 7 114019
7 0 8 19160
8 0 9 168382
9 0 10 5034
physicalDamageDealtToChampions physicalDamageTaken role \
0 4201 25565 SOLO
1 44082 30065 NONE
2 1216 12673 CARRY
3 38469 18333 SOLO
4 11626 10739 SUPPORT
5 12866 32452 SOLO
6 18037 28685 NONE
7 2889 28985 SOLO
8 31140 18026 CARRY
9 2019 25093 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 5 4 7 6 173
1 23 11 6 4 326
2 4 12 5 4 281
3 4 4 6 7 257
4 7 4 10 14 334
5 5 4 5 12 202
6 3 4 19 11 132
7 5 4 6 14 30
8 5 4 8 7 220
9 9 14 5 4 227
summonerName teamEarlySurrendered teamId teamPosition \
0 Coolgum15 False 100 TOP
1 MarcMerrillsdad False 100 JUNGLE
2 ProfJack False 100 MIDDLE
3 3rdTimeNameBan False 100 BOTTOM
4 BrokenTrident False 100 UTILITY
5 Ajaspace False 200 TOP
6 Huxtable Prime False 200 JUNGLE
7 Sashimi Fizz False 200 MIDDLE
8 tonna796 False 200 BOTTOM
9 SirCriffer False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 9 2382 241981 37834
1 49 2382 226119 46219
2 53 2382 216470 34537
3 12 2382 220327 46580
4 27 2382 28422 14106
5 42 2382 215846 26898
6 8 2382 144907 22749
7 3 2382 181470 53744
8 1 2382 170926 31140
9 45 2382 71391 41530
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 45856 14882 205 69
1 67896 35300 39 451
2 26961 1972 221 294
3 34926 11479 166 140
4 32577 6185 49 122
5 54516 10582 176 1783
6 42093 15062 31 168
7 48522 16714 201 96
8 31857 7679 209 14
9 39579 8101 41 152
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 381 1 13068
1 401 1 12768
2 407 1 15266
3 318 3 17167
4 415 1 7197
5 367 1 13852
6 424 1 17506
7 352 1 6316
8 463 3 2543
9 418 1 2006
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1364 2229 4 4
1 2136 4316 1 4
2 16 1335 3 4
3 4239 2113 0 4
4 2480 1001 0 4
5 1596 2440 0 9
6 2862 1853 2 9
7 4531 2706 0 9
8 0 855 1 9
9 2006 2604 0 9
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 29 2 6 13 True
1 22 2 2 9 True
2 10 2 4 2 True
3 41 1 4 14 True
4 140 16 18 70 True
5 58 3 1 15 False
6 24 3 4 13 False
7 41 3 6 15 False
8 27 3 5 14 False
9 66 4 14 27 False ,
assists baronKills bountyLevel champLevel championName \
0 3 0 0 15 Yone
1 9 0 0 13 Sejuani
2 6 0 0 14 Viego
3 3 0 0 12 Ezreal
4 9 0 0 12 Karma
5 4 0 0 14 Volibear
6 16 1 1 16 Ekko
7 14 0 3 15 Sylas
8 13 0 3 14 Jhin
9 20 0 0 14 Thresh
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3553 3553 3553
1 0 11593 0
2 0 3628 0
3 414 4090 414
4 0 0 0
5 3762 10145 3762
6 5663 35171 5663
7 3467 6927 3467
8 4114 11415 4114
9 1022 3407 1022
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 6 1 0 False True
1 8 0 1 False False
2 8 0 0 False False
3 5 0 1 False False
4 5 3 0 False False
5 5 5 0 False False
6 4 2 2 False False
7 3 2 0 False False
8 5 0 0 False False
9 5 5 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 True False False
9 False True False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 12036 TOP 0
1 False 9931 JUNGLE 0
2 False 9324 MIDDLE 0
3 False 8053 BOTTOM 0
4 False 8573 UTILITY 0
5 False 9513 TOP 0
6 False 13181 JUNGLE 1
7 False 13325 MIDDLE 1
8 False 11740 BOTTOM 0
9 False 8293 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 2 6672 3031 3006 6609 0 0 3340
1 2 3068 2031 3076 3111 3001 1011 3364
2 2 1055 3153 3006 6673 0 0 3340
3 2 3508 3158 6691 1036 0 1055 3340
4 2 3853 6617 6616 3916 4642 3158 3364
5 0 6664 2033 3157 1054 2055 3047 3340
6 0 4636 2031 3020 3115 3100 1058 3364
7 0 4630 3157 6656 4629 3020 0 3340
8 0 1055 6671 3009 6676 3094 0 3340
9 0 3857 3190 3047 3075 1006 1006 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 9 3 2
1 1 4 3 2
2 1 3 2 1
3 1 3 2 2
4 0 3 0 1
5 1 2 2 2
6 2 9 6 2
7 3 14 5 3
8 2 6 3 1
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 453 18161 3319
1 435 58170 9257
2 367 2533 1383
3 872 9147 4330
4 848 32377 15144
5 532 55989 3525
6 668 153470 16972
7 993 89645 30780
8 560 2611 1110
9 667 12707 5157
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 10242 16 0
1 15328 121 0
2 16542 16 0
3 7589 5 1
4 9476 0 0
5 4962 11 0
6 7417 156 0
7 9793 4 0
8 5064 4 0
9 8943 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 116173
1 1 2 71012
2 0 3 100372
3 0 4 71415
4 0 5 3215
5 0 6 40813
6 0 7 27680
7 0 8 12228
8 0 9 102113
9 0 10 8645
physicalDamageDealtToChampions physicalDamageTaken role \
0 12491 6735 SOLO
1 7358 19232 NONE
2 14958 10233 SOLO
3 6661 6295 CARRY
4 732 5606 SUPPORT
5 3578 15081 SOLO
6 2834 24053 NONE
7 511 16316 SOLO
8 17755 8638 CARRY
9 1010 7834 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 2 12 182
1 3 4 15 11 173
2 5 4 1 12 332
3 3 7 3 4 66
4 8 14 3 4 305
5 2 4 3 12 62
6 5 4 16 11 222
7 4 4 6 14 160
8 4 7 3 4 130
9 5 4 5 14 153
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 ttube False 100 TOP 25
1 Coolgum15 False 100 JUNGLE 30
2 Rotome False 100 MIDDLE 13
3 Dublaiar False 100 BOTTOM 0
4 BreadStick63 False 100 UTILITY 29
5 Greenboy4999 False 200 TOP 13
6 Pteranodon False 200 JUNGLE 17
7 ShortManWarner False 200 MIDDLE 38
8 ham1ck False 200 BOTTOM 16
9 Sbomb100 False 200 UTILITY 29
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1773 140105 17377
1 1773 136560 17235
2 1773 113623 16653
3 1773 83057 10992
4 1773 37217 17441
5 1773 96803 7104
6 1773 194517 20809
7 1773 106050 32754
8 1773 105377 18958
9 1773 27461 7025
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 17608 3983 183 100
1 36254 10329 16 339
2 27490 5396 150 107
3 13934 1501 130 0
4 15411 5202 27 204
5 21388 2694 122 224
6 31754 15934 30 429
7 27411 12153 137 330
8 14122 4011 171 60
9 17490 3087 40 66
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 184 1 5770
1 207 5 7377
2 215 1 10718
3 131 2 2495
4 171 5 1625
5 141 1 0
6 143 1 13366
7 124 1 4176
8 154 5 652
9 136 5 6107
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1566 630 1 8
1 619 1693 0 8
2 312 714 0 8
3 0 50 0 8
4 1565 327 0 8
5 0 1344 2 1
6 1002 282 1 1
7 1462 1302 1 1
8 92 420 2 1
9 858 713 2 1
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 11 1 2 7 False
1 7 0 2 2 False
2 7 0 2 3 False
3 11 0 0 8 False
4 49 3 7 22 False
5 33 6 5 14 True
6 27 2 5 3 True
7 22 2 1 11 True
8 10 0 1 5 True
9 61 6 4 26 True ,
assists baronKills bountyLevel champLevel championName \
0 3 0 6 14 Sett
1 11 0 2 12 Ekko
2 9 0 2 13 Diana
3 12 0 1 11 Morgana
4 5 0 0 12 Lux
5 2 0 0 12 Volibear
6 3 0 0 12 Warwick
7 6 0 0 12 Viego
8 1 0 0 10 MissFortune
9 3 0 0 10 Seraphine
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 7402 20041 7402
1 0 7290 0
2 3466 8533 3466
3 1713 1799 1713
4 924 2641 924
5 456 1217 456
6 0 5165 0
7 2927 2927 2927
8 0 361 0
9 0 121 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 1 0 0 False False
1 4 0 2 False False
2 5 0 0 False False
3 1 1 0 False False
4 1 2 0 False False
5 6 1 0 False False
6 7 1 0 False True
7 5 0 0 True False
8 6 0 1 False False
9 4 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 10346 TOP 0
1 False 8401 JUNGLE 0
2 False 10592 MIDDLE 0
3 False 6811 BOTTOM 1
4 False 7920 BOTTOM 0
5 False 5925 TOP 0
6 False 8879 JUNGLE 0
7 False 7879 MIDDLE 0
8 False 5800 BOTTOM 0
9 False 6046 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1054 6631 3076 3153 3047 1036 3340
1 0 3020 2031 4636 3100 0 0 3364
2 0 3041 3157 4636 3020 3916 0 3364
3 0 3020 3157 3853 3802 1052 0 3364
4 0 6655 3020 2420 1082 1056 3108 3364
5 1 6664 1056 3047 3191 0 0 3340
6 1 6632 3748 3047 0 0 0 3364
7 1 1054 1083 3153 2055 3111 6670 3340
8 1 3004 1036 1036 3006 1036 1036 3340
9 1 6617 3114 3853 3111 1052 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 9 6 3
1 2 5 2 2
2 2 7 2 2
3 0 1 0 1
4 1 6 6 2
5 0 0 0 0
6 1 8 4 1
7 0 1 0 1
8 0 1 0 1
9 0 2 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 493 2959 437
1 482 81443 10347
2 506 100885 18416
3 888 16452 7984
4 1112 52531 10444
5 349 49911 5453
6 484 33696 6408
7 406 3430 978
8 590 1975 594
9 584 11584 3501
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 6035 12 0
1 3613 92 0
2 3919 12 0
3 3350 0 0
4 1227 0 0
5 6372 8 0
6 16828 92 0
7 8966 4 0
8 8341 4 0
9 9019 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 87672
1 0 2 20121
2 0 3 18156
3 0 4 5234
4 0 5 9966
5 0 6 23653
6 0 7 51709
7 0 8 64984
8 0 9 48277
9 0 10 2487
physicalDamageDealtToChampions physicalDamageTaken role \
0 13290 9722 SOLO
1 1739 16562 NONE
2 2506 9388 SOLO
3 455 3756 SUPPORT
4 1128 3959 CARRY
5 4999 14077 SOLO
6 5173 11608 NONE
7 5029 5906 SOLO
8 2482 2147 CARRY
9 1106 2536 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 1 12 109
1 3 4 11 11 77
2 5 14 4 4 236
3 3 4 3 7 88
4 4 14 3 4 111
5 2 4 3 12 229
6 2 4 14 11 173
7 3 4 1 12 332
8 3 7 2 4 66
9 3 3 2 4 214
summonerName teamEarlySurrendered teamId teamPosition \
0 ThreatEntity False 100 TOP
1 Cbyrd14 False 100 JUNGLE
2 arcainemage False 100 MIDDLE
3 Unjolly Rancher False 100 BOTTOM
4 Shoebin False 100 UTILITY
5 Psí False 200 TOP
6 Coolgum15 False 200 JUNGLE
7 Rotome False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 K1LL3R2311 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 25 1354 107916 16046
1 10 1354 107856 12718
2 11 1354 130114 21860
3 44 1354 26566 8440
4 34 1354 63856 12420
5 21 1354 82525 10453
6 26 1354 92843 12447
7 4 1354 68415 6007
8 3 1354 50714 3358
9 15 1354 14199 4735
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 15815 2277 130 212
1 21623 10525 22 495
2 14726 1668 165 67
3 7334 2048 35 49
4 5311 50 103 282
5 22776 3389 111 218
6 28982 14254 18 223
7 16023 2660 130 15
8 10668 1507 114 64
9 12089 1298 13 125
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 27 1 17284
1 88 1 6292
2 111 1 11073
3 27 2 4880
4 36 1 1357
5 144 1 8960
6 167 1 7438
7 111 1 0
8 126 3 461
9 101 4 128
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 2318 57 4 1
1 632 1448 0 1
2 938 1418 1 1
3 0 226 2 1
4 847 124 0 1
5 0 2325 0 7
6 866 546 0 7
7 0 1150 1 7
8 281 180 0 7
9 128 533 0 7
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 10 0 1 5 True
1 5 0 1 1 True
2 12 0 3 4 True
3 26 1 2 10 True
4 15 2 1 3 True
5 9 1 0 6 False
6 9 2 0 4 False
7 3 3 0 2 False
8 10 0 1 6 False
9 15 1 1 10 False ,
assists baronKills bountyLevel champLevel championName \
0 0 0 1 14 Viego
1 3 0 7 12 Elise
2 1 0 0 13 Talon
3 4 0 0 11 Gangplank
4 7 0 0 10 Senna
5 3 0 0 12 Yorick
6 0 0 1 10 Lillia
7 0 0 0 12 Qiyana
8 2 0 0 11 Caitlyn
9 1 0 0 10 Thresh
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 4821 6309 4821
1 148 30323 148
2 3999 4881 3999
3 2488 2488 2488
4 2070 3531 2070
5 4248 4674 4248
6 0 6010 0
7 0 0 0
8 2301 2301 2301
9 336 336 336
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 2 2 0 False True
1 0 1 2 False False
2 1 0 0 False False
3 1 2 0 False False
4 2 3 0 False False
5 7 0 0 False False
6 6 0 0 False False
7 5 0 0 False False
8 4 1 0 False False
9 4 4 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False True False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 9438 TOP 0
1 True 7953 JUNGLE 0
2 True 8181 MIDDLE 0
3 True 7732 BOTTOM 0
4 True 6267 UTILITY 0
5 True 6434 TOP 0
6 True 6284 JUNGLE 0
7 True 6433 MIDDLE 0
8 True 7138 BOTTOM 0
9 True 4520 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1055 3153 3047 6672 0 0 3340
1 0 3020 4636 0 0 0 0 3364
2 0 2031 6693 1036 3158 3004 1036 3340
3 0 1054 3508 3158 1037 3134 1018 3363
4 0 3864 1018 6692 3009 0 0 3340
5 0 1054 3047 6632 1028 3076 0 3340
6 0 6653 2031 3158 2420 1052 0 3364
7 0 3070 3158 6693 3133 1036 0 3364
8 0 6671 1055 2055 3006 1038 1018 3340
9 0 3857 3190 0 0 0 3158 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 8 4 1
1 1 7 7 2
2 1 7 7 2
3 1 2 2 1
4 0 1 0 1
5 0 0 0 0
6 0 1 0 1
7 0 2 0 1
8 0 2 0 1
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 729 2362 1231
1 0 54782 8130
2 1180 0 0
3 1092 6371 1331
4 767 0 0
5 308 10076 2216
6 336 49162 2488
7 490 4564 629
8 584 773 732
9 466 6277 2777
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 2635 5 0
1 2123 96 0
2 1450 0 0
3 2076 0 0
4 1143 0 0
5 2205 0 0
6 4938 100 0
7 1692 0 0
8 2500 4 0
9 1839 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 115072
1 0 2 16284
2 0 3 69536
3 0 4 67716
4 0 5 23144
5 0 6 54819
6 0 7 14332
7 0 8 54497
8 0 9 69899
9 0 10 3612
physicalDamageDealtToChampions physicalDamageTaken role \
0 10631 10611 SOLO
1 909 8618 NONE
2 11681 9270 SOLO
3 5339 8257 CARRY
4 3669 4802 SUPPORT
5 4776 13029 SOLO
6 237 16407 NONE
7 7414 8422 SOLO
8 12378 7764 CARRY
9 398 6894 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 3 12 289
1 10 11 3 4 332
2 2 4 4 14 141
3 2 4 3 7 118
4 1 3 2 4 142
5 2 12 3 4 24
6 2 4 10 11 173
7 3 4 3 14 239
8 2 7 2 4 187
9 2 14 2 4 156
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 Grógu False 100 TOP 9
1 Valparaíso False 100 JUNGLE 21
2 DragonKingu False 100 MIDDLE 1
3 BarrelCT False 100 BOTTOM 3
4 Drox Oracle False 100 UTILITY 14
5 AvianMind False 200 TOP 4
6 Coolgum15 False 200 JUNGLE 11
7 velocrapture False 200 MIDDLE 8
8 DoctorSnake False 200 BOTTOM 7
9 CaptainAndlat False 200 UTILITY 15
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1219 119117 12240
1 1219 86151 9569
2 1219 70152 12296
3 1219 76857 7548
4 1219 27019 3669
5 1219 73320 6993
6 1219 91564 3625
7 1219 61048 8430
8 1219 73393 13110
9 1219 14005 3438
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 13428 5427 152 43
1 10957 7791 7 185
2 11282 2447 119 105
3 10552 2529 134 128
4 6315 3629 25 57
5 15688 1427 127 78
6 21547 6891 12 152
7 10670 677 123 68
8 10824 2988 137 27
9 9362 333 36 65
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 67 1 1681
1 0 1 15084
2 0 1 615
3 33 2 2769
4 48 5 3875
5 129 1 8423
6 133 1 28069
7 155 1 1986
8 113 2 2720
9 88 2 4115
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 376 181 1 1
1 529 215 2 1
2 615 562 1 1
3 877 218 1 1
4 0 369 0 1
5 0 454 1 5
6 898 200 0 5
7 386 554 0 5
8 0 559 0 5
9 262 628 0 5
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 18 3 1 7 True
1 23 1 2 1 True
2 9 0 1 6 True
3 14 2 0 5 True
4 26 3 3 15 True
5 6 0 1 4 False
6 4 0 0 2 False
7 8 0 0 5 False
8 18 2 2 7 False
9 28 4 6 11 False ,
assists baronKills bountyLevel champLevel championName \
0 1 0 0 12 Sett
1 2 0 0 10 Viego
2 1 0 0 11 Zed
3 4 0 0 10 Vayne
4 3 0 0 10 Leona
5 1 0 1 13 Rumble
6 7 0 5 13 Nocturne
7 3 0 0 12 Katarina
8 4 0 0 11 Kaisa
9 5 0 0 9 Lux
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 868 868 868
1 0 6326 0
2 0 2438 0
3 2464 6624 2464
4 134 589 134
5 3227 3227 3227
6 3385 18874 3385
7 4954 6780 4954
8 3210 3280 3210
9 1285 1720 1285
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 2 2 0 False False
1 7 0 1 False False
2 7 0 0 False False
3 4 0 1 False False
4 2 1 0 False False
5 2 2 0 False False
6 1 0 1 True False
7 3 0 0 False True
8 3 0 0 False False
9 3 7 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False True False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 7355 TOP 0
1 True 5836 JUNGLE 0
2 True 6644 MIDDLE 0
3 True 7794 BOTTOM 0
4 True 5198 UTILITY 0
5 True 7386 TOP 0
6 True 10941 JUNGLE 0
7 True 9359 MIDDLE 0
8 True 6459 BOTTOM 0
9 True 5580 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 6632 2033 0 1028 3047 1037 3340
1 0 6672 3047 2055 0 0 0 3340
2 0 6693 3158 1018 1036 1037 1036 3340
3 0 1055 2031 6672 1043 3006 1053 3340
4 0 3190 3860 0 0 3111 0 3364
5 0 1056 2420 0 4633 3020 3191 3340
6 0 6691 2031 6676 3006 0 0 3364
7 0 1082 4633 3115 3020 3191 0 3364
8 0 6671 2031 1055 3006 1036 0 3340
9 0 1026 3853 3191 3020 3802 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 3 3 1
1 0 0 0 0
2 1 3 2 1
3 2 4 2 1
4 1 2 2 1
5 0 2 0 1
6 2 10 5 4
7 1 8 6 1
8 0 1 0 1
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 1070 98 98
1 297 8904 301
2 263 2739 361
3 648 463 347
4 912 4926 1791
5 402 68046 4993
6 1065 6757 544
7 568 60277 7680
8 532 4488 2079
9 571 16559 6839
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 6013 4 0
1 4423 116 0
2 5476 0 0
3 4446 4 0
4 2673 0 0
5 118 0 0
6 3402 116 0
7 541 1 0
8 735 0 0
9 337 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 54488
1 0 2 71347
2 0 3 52240
3 0 4 54787
4 0 5 6030
5 0 6 12516
6 0 7 121257
7 0 8 8950
8 0 9 50245
9 0 10 2447
physicalDamageDealtToChampions physicalDamageTaken role \
0 6740 4655 SOLO
1 3644 16803 NONE
2 8383 5035 SOLO
3 7236 6257 CARRY
4 924 5412 SUPPORT
5 478 7342 SOLO
6 11492 15423 NONE
7 1162 10262 SOLO
8 5201 4741 CARRY
9 355 5364 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 12 2 4 162
1 11 11 4 4 256
2 4 14 3 4 415
3 3 4 3 7 388
4 3 14 2 4 43
5 3 4 2 14 172
6 13 11 4 4 143
7 3 4 4 14 251
8 4 7 2 4 186
9 3 4 3 14 169
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 Gøtham False 100 TOP 8
1 Itzallgucci False 100 JUNGLE 10
2 Rossrossman False 100 MIDDLE 4
3 Jawsome False 100 BOTTOM 6
4 Mars4 False 100 UTILITY 18
5 Coolgum15 False 200 TOP 5
6 SuckMyDax False 200 JUNGLE 104
7 Hoolígan False 200 MIDDLE 4
8 crîs False 200 BOTTOM 0
9 Kitsunice False 200 UTILITY 29
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1260 60211 7127
1 1260 89703 4799
2 1260 58576 9604
3 1260 63428 8385
4 1260 16411 3161
5 1260 89058 5781
6 1260 138005 13097
7 1260 78491 9865
8 1260 57814 7280
9 1260 19398 7586
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 11438 700 127 112
1 21751 9782 6 237
2 11345 660 105 97
3 10965 3128 140 29
4 8482 208 40 32
5 7773 834 149 122
6 19221 12028 28 359
7 12201 2332 103 61
8 6276 1527 113 3
9 6044 0 23 121
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 38 1 5623
1 136 1 9451
2 184 1 3596
3 76 3 8178
4 27 2 5455
5 46 1 8495
6 35 1 9989
7 90 1 9264
8 70 2 3080
9 26 0 391
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 288 768 0 5
1 852 523 0 5
2 859 834 0 5
3 801 261 0 5
4 446 396 0 5
5 310 312 0 0
6 1060 396 1 0
7 1022 1398 2 0
8 0 799 1 0
9 391 342 0 0
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 15 2 0 8 False
1 14 1 1 6 False
2 9 0 0 6 False
3 8 0 0 5 False
4 24 1 7 10 False
5 18 2 1 9 True
6 6 1 0 1 True
7 8 0 0 3 True
8 1 1 0 2 True
9 42 7 7 20 True ,
assists baronKills bountyLevel champLevel championName \
0 0 0 6 12 Urgot
1 6 0 1 10 Volibear
2 4 0 3 12 Zed
3 4 0 1 9 Yasuo
4 9 0 1 9 Ashe
5 0 0 0 10 Fiora
6 0 0 0 8 Trundle
7 1 0 0 10 TwistedFate
8 0 0 0 9 Sivir
9 3 0 0 8 Senna
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3365 3365 3365
1 186 7738 186
2 4931 5613 4931
3 1012 3104 1012
4 853 3605 853
5 0 0 0
6 0 10371 0
7 595 595 595
8 434 434 434
9 1306 1306 1306
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 1 1 0 False False
1 1 1 2 False True
2 2 1 0 True False
3 3 0 0 False False
4 0 1 0 False False
5 5 1 0 False False
6 4 1 0 False False
7 6 0 0 False False
8 4 0 0 False False
9 5 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False True False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 7186 TOP 0
1 True 6602 JUNGLE 0
2 True 8567 MIDDLE 0
3 True 5881 BOTTOM 0
4 True 5212 UTILITY 0
5 True 4912 TOP 0
6 True 4969 JUNGLE 0
7 True 4967 MIDDLE 0
8 True 5846 BOTTOM 0
9 True 4624 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1055 3076 6631 2031 3047 0 3340
1 0 2031 6664 3047 3066 1031 0 3340
2 0 6692 6676 0 0 0 1001 3340
3 0 6673 2003 3006 1018 0 1055 3340
4 0 3070 3864 1028 3158 3133 4642 3364
5 0 6029 3057 1055 3051 3047 0 3340
6 0 3047 2031 3077 6660 1029 0 3364
7 0 2403 6656 2033 1001 0 0 3340
8 0 1055 3508 3006 1053 2055 1042 3340
9 0 3864 6672 1001 0 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 7 6 2
1 1 3 2 1
2 3 8 3 2
3 2 5 2 2
4 0 1 0 1
5 0 1 0 1
6 0 2 0 1
7 0 1 0 1
8 1 3 2 2
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 284 1794 333
1 576 39909 1917
2 420 4116 697
3 303 3252 538
4 0 2522 1447
5 292 449 449
6 520 3745 675
7 230 29919 1884
8 538 0 0
9 465 99 99
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 449 0 0
1 2143 92 0
2 1540 4 0
3 120 8 0
4 45 0 0
5 533 0 0
6 2679 72 0
7 717 0 0
8 902 0 0
9 1190 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 57234
1 0 2 32301
2 0 3 65476
3 0 4 36659
4 0 5 13576
5 0 6 33594
6 0 7 41565
7 0 8 4841
8 0 9 35351
9 0 10 8997
physicalDamageDealtToChampions physicalDamageTaken role \
0 7252 6437 SUPPORT
1 4163 10325 SUPPORT
2 10879 6083 DUO
3 3230 7023 SUPPORT
4 5538 3987 SUPPORT
5 4778 9773 DUO
6 3286 12626 SUPPORT
7 233 7886 SUPPORT
8 5646 5446 DUO
9 3807 6630 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 1 12 3 4 123
1 9 11 3 4 287
2 3 14 2 4 145
3 2 7 2 4 54
4 2 3 2 4 159
5 2 12 2 4 221
6 10 11 2 4 303
7 3 4 2 14 172
8 2 7 2 4 31
9 2 4 2 3 333
summonerName teamEarlySurrendered teamId teamPosition \
0 AzurDragBlade False 100 TOP
1 OnLy DIEGO False 100 JUNGLE
2 AbeelyakY False 100 MIDDLE
3 HairyBallSack69 False 100 BOTTOM
4 hahaahh False 100 UTILITY
5 Nymphoe False 200 TOP
6 Hyacinthius False 200 JUNGLE
7 Coolgum15 False 200 MIDDLE
8 Overload ADC False 200 BOTTOM
9 Aphroditties False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 7 987 61377 7706
1 16 987 76750 6824
2 3 987 70026 12009
3 6 987 39912 3769
4 27 987 18302 7281
5 8 987 47504 6628
6 11 987 54939 4164
7 4 987 35471 2266
8 0 987 42941 5646
9 10 987 9097 3907
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 8181 1179 113 112
1 12791 6112 5 306
2 7733 1676 118 71
3 7168 2205 65 35
4 4033 0 15 231
5 10468 2455 110 48
6 15835 7963 2 172
7 8765 1012 71 40
8 6933 785 99 0
9 7977 2895 5 22
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 14 1 2348
1 21 1 4540
2 48 1 432
3 47 2 0
4 0 0 2203
5 102 2 13461
6 92 1 9627
7 91 1 710
8 92 2 7590
9 101 3 0
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 121 1294 1 1
1 744 322 0 1
2 432 110 2 1
3 0 23 0 1
4 295 0 0 1
5 1401 161 0 3
6 201 529 0 3
7 148 162 0 3
8 0 585 0 3
9 0 156 1 3
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 8 1 2 6 True
1 10 1 0 5 True
2 9 1 0 5 True
3 4 1 1 3 True
4 27 1 2 10 True
5 11 1 2 6 False
6 12 1 1 2 False
7 3 0 1 1 False
8 6 2 1 5 False
9 20 1 1 11 False ,
assists baronKills bountyLevel champLevel championName \
0 5 0 1 15 Nasus
1 18 1 0 14 Sejuani
2 12 0 0 14 Lissandra
3 12 0 4 13 Caitlyn
4 14 0 3 13 Blitzcrank
5 4 0 7 16 Gnar
6 8 0 0 13 Volibear
7 8 0 0 14 LeeSin
8 5 0 0 12 Ashe
9 10 0 0 11 Lulu
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 7279 22299 7279
1 1356 12797 1356
2 2964 9420 2964
3 3904 15809 3904
4 889 1938 889
5 6294 8884 6294
6 73 11600 73
7 1336 7959 1336
8 2242 3398 2242
9 427 427 427
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 0 1 False False
1 3 5 0 True False
2 6 0 0 False False
3 4 0 0 True False
4 4 8 0 False True
5 3 0 0 False False
6 9 0 2 False False
7 7 2 1 False False
8 8 0 0 False False
9 6 3 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 11928 TOP 0
1 True 10507 JUNGLE 0
2 True 11113 MIDDLE 0
3 True 11444 BOTTOM 1
4 True 8805 UTILITY 0
5 True 13018 TOP 0
6 True 7948 JUNGLE 0
7 True 11041 MIDDLE 0
8 True 8507 BOTTOM 0
9 True 6395 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3053 3508 3047 3068 3076 0 3340
1 0 3068 3047 3083 3076 1011 0 3364
2 0 3040 3157 3020 6653 0 0 3340
3 0 1055 6672 3006 3094 1037 1038 3363
4 0 2055 3190 3857 3050 3076 3111 3364
5 1 3082 3047 6631 3067 3742 3075 3340
6 1 6664 1031 3009 3076 3066 1028 3364
7 1 3067 6630 3133 1055 3111 3053 3340
8 1 1055 3006 6672 3085 1036 0 3340
9 1 3860 6617 2055 3158 3114 1052 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 6 2 2
1 1 3 2 1
2 3 9 4 2
3 2 9 4 2
4 2 6 3 2
5 2 10 7 2
6 1 2 2 1
7 2 7 3 2
8 1 2 2 2
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 414 26640 6679
1 824 47186 9653
2 407 107309 28938
3 647 2208 1527
4 579 7565 6261
5 431 12538 5156
6 555 82373 6146
7 465 30412 3414
8 442 2157 1425
9 827 14091 5353
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 4579 8 0
1 5641 116 0
2 4522 0 0
3 4373 8 0
4 3985 0 0
5 11797 0 0
6 13876 116 0
7 15405 20 0
8 5818 0 0
9 7602 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 128957
1 0 2 60779
2 0 3 4794
3 0 4 99223
4 0 5 9777
5 0 6 119332
6 0 7 44274
7 0 8 85341
8 0 9 73288
9 0 10 3939
physicalDamageDealtToChampions physicalDamageTaken role \
0 15125 27452 SOLO
1 7632 19365 NONE
2 1191 12086 SOLO
3 22672 9930 CARRY
4 3152 12109 SUPPORT
5 23571 13767 DUO
6 5802 23803 NONE
7 14887 20762 DUO
8 11779 11430 CARRY
9 1130 10189 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 12 3 6 268
1 5 4 18 11 325
2 5 4 5 14 172
3 5 7 4 4 381
4 4 4 6 3 471
5 4 4 2 12 23
6 15 11 3 4 107
7 4 14 2 4 176
8 4 4 5 7 29
9 2 14 4 4 224
summonerName teamEarlySurrendered teamId teamPosition \
0 Starcall Sniper False 100 TOP
1 notaboutthatlife False 100 JUNGLE
2 Coolgum15 False 100 MIDDLE
3 iChronixNate False 100 BOTTOM
4 dahsü False 100 UTILITY
5 Catlordofbananas False 200 TOP
6 A Smidge Of Salt False 200 JUNGLE
7 pls not the bees False 200 MIDDLE
8 Sryzon False 200 BOTTOM
9 423 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 23 1666 157593 21805
1 36 1666 115399 18212
2 46 1666 115333 31605
3 26 1666 113302 27599
4 42 1666 31297 9414
5 56 1666 134962 29399
6 24 1666 132066 12693
7 22 1666 120533 19727
8 40 1666 102836 14699
9 38 1666 22239 6870
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 32864 1258 172 151
1 26224 9623 24 325
2 16961 2180 133 264
3 15211 5749 143 107
4 17506 781 33 103
5 26414 9620 158 544
6 39075 12684 28 388
7 38215 12475 154 293
8 17775 3580 162 582
9 18773 6427 31 362
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 165 1 1995
1 107 5 7433
2 182 1 3229
3 130 3 11870
4 99 1 13954
5 86 1 3092
6 253 1 5418
7 182 1 4779
8 202 2 27390
9 160 5 4207
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 832 2 3
1 926 1217 2 3
2 1475 352 0 3
3 3399 907 1 3
4 0 1412 1 3
5 672 849 2 6
6 744 1395 0 6
7 1426 2047 0 6
8 1494 526 1 6
9 386 982 0 6
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 7 0 2 3 True
1 26 5 2 6 True
2 5 0 0 3 True
3 15 0 3 7 True
4 58 9 1 32 True
5 9 0 0 6 False
6 12 0 3 1 False
7 13 4 0 7 False
8 15 0 2 6 False
9 22 5 2 11 False ,
assists baronKills bountyLevel champLevel championName \
0 4 0 0 16 Shaco
1 2 0 0 13 LeeSin
2 3 0 0 12 Katarina
3 3 0 0 13 Draven
4 10 0 0 12 Morgana
5 5 0 6 15 Camille
6 24 1 2 15 Rakan
7 7 0 18 16 Nautilus
8 11 0 2 16 Lulu
9 21 0 0 15 Sona
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 7676 8048 7676
1 0 2256 0
2 0 0 0
3 2515 8305 2515
4 0 1609 0
5 6975 9119 6975
6 2586 5924 2586
7 5946 8779 5946
8 6730 27989 6730
9 1489 4030 1489
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 9 1 0 False False
1 7 2 0 False False
2 12 0 0 False False
3 7 1 0 False False
4 12 7 1 False False
5 9 0 1 False False
6 4 1 1 True False
7 0 2 0 False True
8 5 1 1 False False
9 4 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 12453 TOP 0
1 False 10536 JUNGLE 0
2 False 6765 MIDDLE 0
3 False 10597 BOTTOM 0
4 False 7564 UTILITY 0
5 False 10599 TOP 1
6 False 10282 JUNGLE 0
7 False 14976 MIDDLE 1
8 False 16061 BOTTOM 1
9 False 9699 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 3 3158 3135 1052 6653 3157 1026 3364
1 3 3074 6692 3111 2003 3211 1028 3340
2 3 1082 1043 3020 4636 1052 0 3340
3 3 1055 6673 3006 6676 1018 0 3340
4 3 3853 4005 3157 0 3117 2031 3364
5 0 1055 3078 3047 3074 3133 0 3340
6 0 1028 6656 3020 4637 1057 0 3364
7 0 4636 4629 1056 3020 3100 1058 3340
8 0 3124 3140 3153 3006 6672 3086 3363
9 0 3853 2065 6616 3158 3504 3057 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 3 11 3 3
1 1 5 2 1
2 0 1 0 1
3 0 2 0 1
4 0 2 0 1
5 1 9 6 1
6 1 4 2 1
7 1 18 18 2
8 3 13 6 2
9 1 3 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 452 80910 21557
1 515 29916 1303
2 357 56686 7492
3 384 0 0
4 307 18357 11275
5 234 1153 1034
6 461 67565 11556
7 0 79415 20827
8 919 42614 7670
9 654 13142 5839
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 9575 2 0
1 8272 109 0
2 14535 0 0
3 7307 12 0
4 9101 4 0
5 10690 10 0
6 8342 68 0
7 5395 9 0
8 9458 28 0
9 9372 4 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 18782
1 0 2 86488
2 0 3 6034
3 0 4 137884
4 0 5 3258
5 0 6 76669
6 0 7 18641
7 0 8 29338
8 0 9 139234
9 0 10 5474
physicalDamageDealtToChampions physicalDamageTaken role \
0 1332 11389 SOLO
1 8375 16668 NONE
2 441 7757 DUO
3 10758 13335 DUO
4 881 12265 SUPPORT
5 10625 12181 SOLO
6 1522 13034 NONE
7 2325 4574 SOLO
8 19407 16459 CARRY
9 1903 4691 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 12 8 14 210
1 9 11 2 4 285
2 3 4 2 14 172
3 5 4 5 7 211
4 6 3 4 4 334
5 3 12 4 4 71
6 5 4 20 11 287
7 3 14 4 4 124
8 5 7 5 4 208
9 4 4 6 3 43
summonerName teamEarlySurrendered teamId teamPosition \
0 Fido Stop Fizzer False 100 TOP
1 SANCHEZO69 False 100 JUNGLE
2 Coolgum15 False 100 MIDDLE
3 KAANCEPTS False 100 BOTTOM
4 Obeo False 100 UTILITY
5 MilesDeepInside False 200 TOP
6 DirtyDennis False 200 JUNGLE
7 TataRoids False 200 MIDDLE
8 Purple Hammer False 200 BOTTOM
9 White treasure False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 45 1823 105852 23933
1 9 1823 122518 10343
2 0 1823 70053 8215
3 14 1823 142054 10878
4 84 1823 21615 12157
5 20 1823 103069 16023
6 41 1823 92971 13919
7 51 1823 113632 24399
8 17 1823 205484 30440
9 12 1823 18617 7743
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 23016 371 142 725
1 27319 8507 33 526
2 24186 562 103 0
3 22169 5773 195 82
4 23330 2318 22 126
5 23479 3851 111 176
6 23679 9532 28 235
7 10112 1744 151 481
8 26459 7901 230 324
9 14581 11636 9 35
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 313 1 6159
1 167 1 6113
2 321 1 7332
3 173 2 4170
4 331 1 0
5 230 1 25246
6 106 5 6764
7 0 1 4877
8 169 4 23635
9 132 5 0
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1044 2051 2 11
1 665 2378 0 11
2 282 1893 0 11
3 120 1526 1 11
4 0 1963 0 11
5 4362 607 2 3
6 840 2302 2 3
7 1246 142 4 3
8 3362 541 2 3
9 0 517 0 3
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 17 1 1 2 False
1 22 2 1 10 False
2 16 0 1 8 False
3 8 1 1 5 False
4 52 7 9 21 False
5 4 0 0 3 True
6 16 1 1 3 True
7 20 2 0 10 True
8 21 1 6 7 True
9 60 1 4 23 True ,
assists baronKills bountyLevel champLevel championName \
0 7 0 2 16 Viego
1 21 0 0 15 Hecarim
2 15 0 0 15 Veigar
3 13 0 0 14 Caitlyn
4 22 0 0 14 Ivern
5 12 0 0 15 Teemo
6 8 0 0 14 Rengar
7 7 0 0 16 Talon
8 5 0 3 16 Jhin
9 23 0 0 15 Taric
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 938 10342 938
1 725 5887 725
2 380 1161 380
3 845 5003 845
4 0 1428 0
5 1760 1760 1760
6 1274 18705 1274
7 6989 8056 6989
8 14340 21851 14340
9 829 5818 829
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 10 0 1 False False
1 10 1 0 False False
2 12 3 1 False False
3 9 2 0 False False
4 9 5 0 False False
5 10 0 0 False False
6 10 2 2 False False
7 10 0 0 False True
8 3 1 1 False False
9 6 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 True False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 15655 TOP 0
1 False 10475 JUNGLE 0
2 False 10042 MIDDLE 0
3 False 11127 BOTTOM 0
4 False 9471 UTILITY 0
5 False 12445 TOP 0
6 False 12486 JUNGLE 0
7 False 14106 MIDDLE 1
8 False 17942 BOTTOM 0
9 False 10051 UTILITY 1
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 3 3133 3091 3111 6672 3153 1031 3364
1 3 3158 6664 3742 3075 1033 0 3364
2 3 3157 6655 3020 1056 1058 0 3340
3 3 6671 3134 1018 3094 3006 1053 3363
4 3 3158 4638 3860 3011 3114 6617 3364
5 0 3115 6653 3020 3916 4637 0 3340
6 0 3158 6692 3074 6676 3035 0 3364
7 0 3158 6695 3042 6693 3814 3133 3340
8 0 3036 3009 3142 3814 6676 6671 3363
9 0 3860 3009 3190 3075 3065 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 5 20 6 2
1 0 2 0 1
2 3 8 2 2
3 1 4 2 1
4 1 5 2 1
5 3 9 3 3
6 2 8 3 2
7 2 11 5 2
8 4 20 9 2
9 1 2 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 390 10037 4450
1 520 43959 5382
2 284 82604 16479
3 390 4545 2658
4 608 11581 5498
5 326 76946 30191
6 805 14875 532
7 639 0 0
8 902 5246 2149
9 499 17826 4726
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 8203 12 0
1 14719 84 0
2 6432 5 0
3 2932 6 0
4 6419 8 0
5 5751 22 0
6 10613 138 0
7 8216 15 0
8 5445 29 0
9 7243 9 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 88116
1 0 2 88235
2 0 3 7746
3 0 4 113935
4 0 5 10026
5 0 6 20783
6 0 7 112244
7 0 8 158308
8 0 9 201391
9 0 10 16463
physicalDamageDealtToChampions physicalDamageTaken role \
0 24104 21702 SOLO
1 12045 35198 NONE
2 663 16029 SOLO
3 14248 17374 CARRY
4 4205 14834 SUPPORT
5 2720 12275 SOLO
6 12944 25805 NONE
7 29982 16374 SOLO
8 35460 10138 CARRY
9 2225 15447 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 5 4 8 14 256
1 9 6 23 11 172
2 5 3 4 4 173
3 5 7 5 4 242
4 6 14 5 4 202
5 5 4 3 14 366
6 3 4 11 11 173
7 8 14 5 4 318
8 5 4 4 7 62
9 5 3 5 4 164
summonerName teamEarlySurrendered teamId teamPosition \
0 SussieAmogus False 100 TOP
1 Coolgum15 False 100 JUNGLE
2 Kunorebi False 100 MIDDLE
3 Redlogic False 100 BOTTOM
4 GarboLogic False 100 UTILITY
5 spaghet dawg False 200 TOP
6 Hunter is Homo False 200 JUNGLE
7 Actual Retart False 200 MIDDLE
8 Pedro Lopez False 200 BOTTOM
9 Imaintrashdaily False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 17 1957 113999 32881
1 25 1957 158942 18989
2 36 1957 90350 17143
3 23 1957 120185 17337
4 47 1957 34696 10313
5 34 1957 100954 34626
6 11 1957 136862 13765
7 3 1957 161803 31725
8 31 1957 208253 38600
9 19 1957 39517 6951
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 31057 8499 115 54
1 52440 18470 58 237
2 22951 1566 114 102
3 20670 4350 155 95
4 21463 5599 40 142
5 18844 1387 112 339
6 38037 15036 25 245
7 25960 2742 170 120
8 16427 2931 191 99
9 24969 9958 39 67
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 368 2 15845
1 281 1 26747
2 329 1 0
3 200 3 1703
4 269 5 13088
5 310 1 3224
6 325 1 9742
7 389 1 3495
8 113 2 1614
9 167 5 5227
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 4326 1151 0 10
1 1560 2522 0 10
2 0 489 0 10
3 429 363 0 10
4 610 209 0 10
5 1714 817 1 0
6 288 1617 1 0
7 1743 1368 3 0
8 990 844 5 0
9 0 2278 0 0
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 14 0 0 7 False
1 13 1 1 6 False
2 20 3 2 11 False
3 17 2 0 10 False
4 53 6 7 25 False
5 11 0 1 5 True
6 41 2 7 7 True
7 12 0 2 7 True
8 31 1 0 11 True
9 48 0 4 25 True ,
assists baronKills bountyLevel champLevel championName \
0 8 0 0 18 LeeSin
1 21 1 0 18 Hecarim
2 16 1 2 18 Kayle
3 17 0 0 15 Twitch
4 19 0 1 15 Lux
5 2 0 0 17 Camille
6 5 0 0 16 Warwick
7 4 0 0 17 Akali
8 3 0 0 17 Lucian
9 10 0 0 15 Senna
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 6304 11429 6304
1 4766 31144 4766
2 12479 19052 12479
3 912 22629 912
4 3882 9045 3882
5 3061 4239 3061
6 0 25200 0
7 3981 5179 3981
8 4200 8082 4200
9 1695 3101 1695
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 1 1 False False
1 3 0 2 True False
2 2 1 1 False False
3 8 1 0 False True
4 5 0 0 True False
5 7 1 0 False False
6 9 0 2 False False
7 6 2 0 False False
8 10 2 0 False False
9 8 8 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False True False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 19251 TOP 0
1 False 15483 JUNGLE 1
2 False 18007 MIDDLE 2
3 False 12406 BOTTOM 0
4 False 10128 UTILITY 1
5 False 14484 TOP 0
6 False 11898 JUNGLE 0
7 False 12771 MIDDLE 0
8 False 18870 BOTTOM 0
9 False 10977 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3814 6630 3158 3074 3071 3053 3340
1 0 3158 6664 3742 3053 3075 3133 3340
2 0 3006 3157 3041 4633 4629 3115 3340
3 0 3006 3031 3085 6672 1036 1036 3340
4 0 3853 6655 3020 3165 1052 0 3364
5 4 3053 3078 3133 3748 1031 3047 3340
6 4 3111 3077 3068 3065 3075 0 3364
7 4 4636 3100 3157 3916 3020 1026 3364
8 4 6672 3508 3072 3075 6675 3006 3363
9 4 6662 3009 2055 6694 3864 3067 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 3 18 9 2
1 1 8 7 1
2 2 7 5 2
3 1 5 2 1
4 0 2 0 1
5 1 4 2 1
6 0 2 0 1
7 1 3 2 1
8 4 10 3 3
9 1 4 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 930 54495 7161
1 1372 55106 5666
2 1463 185480 15529
3 529 163 102
4 540 52963 11149
5 473 665 665
6 728 79705 6807
7 733 141565 26330
8 397 3920 1336
9 646 5606 1054
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 10458 20 0
1 16194 146 0
2 7345 63 0
3 4795 8 0
4 3856 0 0
5 10229 38 0
6 9495 130 0
7 8422 9 0
8 6558 17 0
9 8188 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 163548
1 0 2 138828
2 0 3 50475
3 0 4 99965
4 0 5 3642
5 0 6 151963
6 0 7 74777
7 0 8 32536
8 0 9 269887
9 0 10 35919
physicalDamageDealtToChampions physicalDamageTaken role \
0 34686 34228 SOLO
1 14358 36152 NONE
2 4465 10588 SOLO
3 20246 16441 CARRY
4 1064 6630 SUPPORT
5 15870 23718 SOLO
6 2021 33493 NONE
7 1331 22620 SOLO
8 24862 16664 CARRY
9 20610 15870 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 6 4 8 14 255
1 9 6 24 11 172
2 2 4 3 12 331
3 4 4 5 7 197
4 5 4 4 14 128
5 4 4 2 12 212
6 13 11 0 4 46
7 2 12 3 4 317
8 6 4 7 7 267
9 6 4 7 3 295
summonerName teamEarlySurrendered teamId teamPosition \
0 SussieAmogus False 100 TOP
1 Coolgum15 False 100 JUNGLE
2 Rotome False 100 MIDDLE
3 sąd False 100 BOTTOM
4 Alece False 100 UTILITY
5 neetsk False 200 TOP
6 TheB1g0n3 False 200 JUNGLE
7 CornholeKlunk False 200 MIDDLE
8 DIG Baron False 200 BOTTOM
9 FireKiritoStrike False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 35 2287 220320 43685
1 33 2287 210059 22167
2 6 2287 236230 20172
3 9 2287 119873 25897
4 41 2287 57738 13347
5 19 2287 199148 23680
6 16 2287 165884 9113
7 1 2287 186922 27662
8 1 2287 293168 28670
9 47 2287 41525 21664
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 50287 19096 211 221
1 54774 29454 41 294
2 18985 13016 274 271
3 21892 5659 144 227
4 10652 1637 38 257
5 35713 10774 213 228
6 44781 20064 43 439
7 33433 8117 249 66
8 26025 3220 332 88
9 26146 11009 21 670
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 169 1 2276
1 57 1 16124
2 78 5 273
3 205 4 19743
4 110 1 1132
5 222 1 46519
6 284 1 11400
7 262 1 12820
8 336 2 19360
9 226 5 0
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1838 5600 2 6
1 2142 2427 2 6
2 177 1051 4 6
3 5548 655 1 6
4 1132 165 2 6
5 7144 1764 1 11
6 284 1792 0 11
7 0 2391 2 11
8 2470 2802 3 11
9 0 2087 0 11
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 26 1 4 14 True
1 20 0 0 11 True
2 19 1 3 9 True
3 26 1 3 12 True
4 40 0 6 18 True
5 17 1 1 8 False
6 20 0 1 6 False
7 27 5 2 12 False
8 35 2 4 11 False
9 68 10 9 28 False ,
assists baronKills bountyLevel champLevel championName \
0 5 0 0 16 Kayle
1 0 0 0 12 Draven
2 7 0 0 14 Qiyana
3 8 0 0 14 Amumu
4 11 0 0 12 Nautilus
5 8 0 6 16 Teemo
6 8 1 9 16 Warwick
7 8 0 1 15 Annie
8 6 0 1 17 MissFortune
9 20 0 1 14 Braum
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3672 3672 3672
1 4057 7597 4057
2 0 2514 0
3 1220 12647 1220
4 0 0 0
5 4730 16350 4730
6 3146 38496 3146
7 3281 10338 3281
8 7538 17755 7538
9 3608 10630 3608
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 1 0 False False
1 13 1 0 False False
2 9 2 1 False False
3 9 4 0 False False
4 4 3 0 False False
5 4 0 1 True False
6 3 1 3 False True
7 6 0 0 False False
8 2 0 0 False False
9 2 4 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False True False
9 True False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 12382 TOP 0
1 False 8254 BOTTOM 0
2 False 10426 MIDDLE 0
3 False 10401 JUNGLE 0
4 False 6451 UTILITY 0
5 False 10657 TOP 1
6 False 15623 JUNGLE 0
7 False 10726 MIDDLE 0
8 False 14697 BOTTOM 0
9 False 9157 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 3042 4633 3057 3111 3115 1026 3364
1 1 6691 2031 3006 3508 1036 1036 3340
2 1 2031 3111 3142 3134 1028 6693 3364
3 1 2031 4633 3020 4637 3108 3067 3364
4 1 3190 3117 3066 3860 0 1031 3364
5 0 1056 6653 2031 3020 3165 1026 3340
6 0 3748 3068 3065 3047 3053 1029 3364
7 0 1056 3157 3020 6655 4630 1026 3340
8 0 1055 6692 3042 3006 3033 3031 3340
9 0 3190 3857 3076 3050 1028 3047 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 7 3 2
1 0 0 0 0
2 1 4 2 1
3 2 6 2 2
4 0 0 0 0
5 1 7 6 1
6 3 17 9 2
7 1 7 3 2
8 2 8 5 2
9 1 3 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 435 91622 12477
1 428 0 0
2 541 4836 456
3 467 76329 14547
4 1030 10310 4726
5 603 75212 18478
6 722 81510 16154
7 422 83801 21086
8 1121 10501 1238
9 1567 15724 6975
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 12983 37 0
1 9716 0 0
2 13140 4 0
3 21108 61 0
4 9117 0 0
5 5720 19 0
6 11632 124 0
7 6056 4 0
8 4283 80 0
9 7333 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 70976
1 0 2 101863
2 0 3 94683
3 0 4 17396
4 0 5 6379
5 0 6 19523
6 0 7 92664
7 0 8 9543
8 0 9 206829
9 0 10 18544
physicalDamageDealtToChampions physicalDamageTaken role \
0 8885 12028 SOLO
1 10988 11967 CARRY
2 10270 8572 SOLO
3 1590 14147 NONE
4 1573 5769 SUPPORT
5 1531 7575 SOLO
6 8700 28262 NONE
7 1096 9300 SOLO
8 19568 12517 CARRY
9 1937 8730 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 3 12 282
1 5 4 6 7 270
2 4 14 5 4 84
3 4 4 18 11 124
4 4 3 4 4 126
5 2 14 4 4 29
6 4 4 20 11 199
7 4 4 5 14 172
8 4 4 4 7 87
9 4 3 4 4 135
summonerName teamEarlySurrendered teamId teamPosition \
0 Bearmangler False 100 TOP
1 Sixpennypegasus False 100 BOTTOM
2 BlaiseKeegan False 100 MIDDLE
3 EMU Analyst False 100 JUNGLE
4 Vu Ja De False 100 UTILITY
5 Talibanthisguy False 200 TOP
6 silverbenjam False 200 JUNGLE
7 Coolgum15 False 200 MIDDLE
8 Holyhabs51 False 200 BOTTOM
9 TEAM duck False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 15 1857 167097 22832
1 16 1857 104124 11279
2 17 1857 104937 11358
3 53 1857 108694 18571
4 55 1857 21767 6474
5 39 1857 103454 21078
6 40 1857 188799 26677
7 29 1857 102052 22914
8 7 1857 220644 20874
9 30 1857 40768 8912
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 25864 9204 197 366
1 22254 1180 167 91
2 22870 1630 154 32
3 36175 7822 60 270
4 15077 928 32 276
5 14088 2653 129 413
6 41765 29434 72 301
7 16371 2198 147 141
8 17079 9416 187 241
9 17107 915 39 153
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 258 5 4497
1 392 2 2261
2 232 1 5417
3 256 1 14967
4 139 5 5077
5 132 1 8719
6 79 1 14624
7 218 1 8707
8 88 4 3314
9 88 1 6500
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1469 852 0 9
1 291 570 1 9
2 630 1157 0 9
3 2433 918 0 9
4 175 190 0 9
5 1067 792 1 2
6 1822 1871 3 2
7 732 1014 0 2
8 68 278 3 2
9 0 1043 2 2
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 21 1 1 3 False
1 16 1 0 9 False
2 21 4 3 5 False
3 28 4 4 13 False
4 26 3 2 15 False
5 11 0 2 5 True
6 19 1 4 1 True
7 13 0 2 8 True
8 18 0 4 8 True
9 44 4 2 20 True ,
assists baronKills bountyLevel champLevel championName \
0 10 0 0 14 Darius
1 9 0 14 16 Ekko
2 11 0 1 14 TwistedFate
3 6 0 1 13 Ezreal
4 18 0 0 13 Yuumi
5 6 0 0 13 Sett
6 6 0 0 12 Malphite
7 3 0 0 15 Malzahar
8 5 0 0 12 Yasuo
9 6 0 0 11 Galio
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 6375 8502 6375
1 2169 21660 2169
2 6206 10478 6206
3 7609 10985 7609
4 1832 2631 1832
5 2382 4018 2382
6 1113 2543 1113
7 4139 6837 4139
8 1980 14196 1980
9 1641 4412 1641
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 6 1 0 False False
1 5 1 3 False True
2 4 0 0 True False
3 5 2 0 False False
4 3 2 0 False False
5 8 0 0 False False
6 9 0 0 False False
7 8 1 0 False False
8 7 1 0 False False
9 7 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False True False
2 True False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 10768 TOP 0
1 False 17095 JUNGLE 0
2 False 10675 MIDDLE 1
3 False 10408 BOTTOM 1
4 False 7756 UTILITY 0
5 False 7789 TOP 0
6 False 8486 JUNGLE 0
7 False 13856 MIDDLE 0
8 False 9782 BOTTOM 0
9 False 7098 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3105 6631 3053 3047 0 0 3340
1 0 4636 3157 3140 3115 3158 3100 3364
2 0 3157 6656 3100 1056 0 0 3340
3 0 1055 3508 3042 3133 3158 0 3363
4 0 3853 6617 6616 3041 0 0 3364
5 2 2031 6631 3047 1055 1053 1043 3340
6 2 6655 3100 3020 1052 0 0 3340
7 2 3135 1056 6653 3165 3158 4629 3340
8 2 1055 6671 3006 1053 1018 1037 3340
9 2 3860 2065 3157 0 0 3047 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 2 7 3 3
1 2 22 14 2
2 0 3 0 1
3 2 6 3 2
4 0 1 0 1
5 0 2 0 1
6 1 3 2 1
7 3 13 7 2
8 0 2 0 1
9 1 3 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 489 0 0
1 596 146109 26322
2 893 107916 11472
3 595 10386 3733
4 566 10012 4463
5 477 30 30
6 418 56683 10698
7 443 117239 23568
8 522 8974 1773
9 516 24211 8311
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 11655 4 0
1 12573 153 0
2 8937 4 0
3 9128 4 0
4 3412 0 0
5 10623 4 0
6 12320 72 0
7 9589 6 0
8 7116 16 0
9 7645 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 84998
1 0 2 26971
2 0 3 13365
3 0 4 104855
4 0 5 2337
5 0 6 55676
6 0 7 30607
7 0 8 12364
8 0 9 110118
9 0 10 1454
physicalDamageDealtToChampions physicalDamageTaken role \
0 12378 13642 SOLO
1 2993 21176 NONE
2 1557 6379 SOLO
3 8505 3643 CARRY
4 440 2537 SUPPORT
5 11953 14374 SOLO
6 2132 11935 NONE
7 1143 7437 SOLO
8 7541 9462 CARRY
9 275 7085 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 4 6 273
1 15 11 5 4 200
2 4 4 5 21 172
3 2 4 3 7 290
4 4 3 5 14 213
5 3 12 4 4 218
6 4 4 16 11 167
7 4 4 5 14 92
8 5 7 3 4 272
9 3 4 4 14 148
summonerName teamEarlySurrendered teamId teamPosition \
0 Almond1 False 100 TOP
1 LemonLime77 False 100 JUNGLE
2 Coolgum15 False 100 MIDDLE
3 Grim Melody False 100 BOTTOM
4 Carlitos Danger False 100 UTILITY
5 VirtualEros False 200 TOP
6 GreatHolyEmperor False 200 JUNGLE
7 Great Demon Lord False 200 MIDDLE
8 Wínd Blade False 200 BOTTOM
9 DrunkenTigerfolk False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 30 1637 94062 13650
1 33 1637 182374 30937
2 25 1637 125299 13149
3 0 1637 124086 12239
4 19 1637 13123 5677
5 28 1637 66990 12759
6 23 1637 93114 13722
7 61 1637 136702 25356
8 16 1637 124964 9848
9 21 1637 30826 9210
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 26412 3731 119 179
1 37080 15742 35 727
2 15705 3129 146 180
3 13013 1737 150 0
4 6344 11453 10 43
5 25687 1797 100 135
6 24585 5344 45 602
7 17390 18 194 215
8 17185 5011 180 145
9 16529 0 28 49
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 220 1 9064
1 128 1 9294
2 147 1 4018
3 142 3 8845
4 81 5 774
5 256 1 11284
6 215 1 5822
7 226 1 7097
8 164 3 5871
9 202 0 5160
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1271 1114 2 4
1 1622 3330 2 4
2 120 388 3 4
3 0 240 1 4
4 774 394 1 4
5 775 689 0 10
6 890 330 0 10
7 644 364 2 10
8 533 606 2 10
9 624 1798 0 10
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 14 1 0 7 True
1 24 1 2 1 True
2 12 0 1 7 True
3 21 2 1 9 True
4 25 2 3 11 True
5 20 0 4 9 False
6 11 0 0 8 False
7 12 1 1 8 False
8 22 1 2 10 False
9 22 1 0 14 False ,
assists baronKills bountyLevel champLevel championName \
0 3 0 0 16 Tryndamere
1 5 0 0 14 Jax
2 2 0 1 13 Sylas
3 8 0 0 12 MissFortune
4 8 0 0 11 Seraphine
5 6 0 2 15 Warwick
6 7 1 3 14 MasterYi
7 8 0 6 17 Vladimir
8 9 0 3 14 Ezreal
9 14 0 1 14 Thresh
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3385 8968 3385
1 3037 22160 3037
2 1575 2815 1575
3 3269 7420 3269
4 1507 3927 1507
5 1326 1326 1326
6 1446 17569 1446
7 5947 11452 5947
8 3153 11776 3153
9 139 2102 139
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 1 0 False False
1 7 3 1 False False
2 6 0 0 False False
3 6 0 0 False False
4 7 6 0 False False
5 11 0 0 False True
6 4 1 2 False False
7 2 2 0 False False
8 5 0 1 False False
9 5 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 True False False
1 False True False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 13458 TOP 1
1 True 10682 JUNGLE 0
2 True 7825 MIDDLE 0
3 True 9573 BOTTOM 0
4 True 6760 UTILITY 0
5 True 10426 TOP 0
6 True 10510 JUNGLE 0
7 True 14832 MIDDLE 0
8 True 9527 BOTTOM 0
9 True 8957 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3006 6672 3123 6675 3031 1018 3340
1 0 0 1031 3133 3047 3153 3078 3340
2 0 6656 2421 3108 3916 1056 3111 3340
3 0 3153 3009 6692 3123 1036 1036 3363
4 0 3158 3853 1052 6617 3114 1052 3364
5 1 1055 3047 3153 3748 3044 0 3340
6 1 6691 2031 3006 6676 3133 0 3340
7 1 1026 3020 4629 3152 3165 4630 3340
8 1 3070 3508 6691 3158 3133 0 3340
9 1 3857 3190 3050 3067 3117 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 3 13 5 3
1 1 6 2 1
2 0 2 0 1
3 2 6 3 2
4 0 0 0 0
5 1 8 2 1
6 1 5 3 2
7 3 12 6 2
8 1 4 3 1
9 0 4 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 602 0 0
1 603 28164 2916
2 405 73666 10842
3 945 2670 1112
4 595 27235 6480
5 258 32025 11211
6 595 5910 0
7 1088 132881 27555
8 379 8224 3468
9 571 14929 5358
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 13787 24 0
1 9612 131 0
2 10995 0 0
3 8122 8 0
4 7094 0 0
5 5080 4 0
6 3135 116 0
7 7383 8 0
8 3492 4 0
9 4786 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 145868
1 0 2 93038
2 0 3 6009
3 0 4 82755
4 0 5 4109
5 0 6 68443
6 0 7 121805
7 0 8 18503
8 0 9 79259
9 0 10 7760
physicalDamageDealtToChampions physicalDamageTaken role \
0 25070 16161 SOLO
1 9471 14816 NONE
2 164 7558 SOLO
3 19116 5904 CARRY
4 906 4741 SUPPORT
5 8720 28319 DUO
6 6858 23523 NONE
7 1096 16833 DUO
8 7981 9129 CARRY
9 1082 11742 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 6 6 4 4 86
1 4 4 17 11 145
2 3 4 4 14 132
3 3 4 5 7 197
4 5 21 1 4 105
5 4 4 3 12 247
6 3 4 17 11 171
7 7 14 5 4 295
8 3 4 5 7 120
9 7 14 4 4 272
summonerName teamEarlySurrendered teamId teamPosition \
0 Badarino False 100 TOP
1 MasterYiØTP False 100 JUNGLE
2 Andyyyyyyyyyyyyy False 100 MIDDLE
3 TheCaptainMarvel False 100 BOTTOM
4 Salty Meow False 100 UTILITY
5 RAGExWOLF False 200 TOP
6 Coolgum15 False 200 JUNGLE
7 Sigmadelta8 False 200 MIDDLE
8 stephen1999 False 200 BOTTOM
9 SSnowy False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 10 1667 159732 28192
1 21 1667 142351 13182
2 16 1667 80462 11792
3 8 1667 89428 21027
4 22 1667 31344 7387
5 30 1667 111764 19931
6 0 1667 139886 8366
7 6 1667 156406 30347
8 0 1667 89995 11502
9 29 1667 28586 7417
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 30339 9642 148 91
1 25848 8341 23 331
2 19573 4311 139 325
3 14952 2412 130 103
4 12313 2229 30 121
5 35805 12951 135 205
6 27141 12873 43 84
7 25547 25806 208 101
8 13354 1637 139 17
9 17080 748 50 77
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 192 1 13864
1 217 1 21147
2 194 1 785
3 182 4 4002
4 173 5 0
5 327 1 11295
6 117 1 12170
7 80 1 5022
8 117 3 2512
9 136 1 5896
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 3122 390 2 5
1 794 1419 2 5
2 785 1019 1 5
3 798 926 0 5
4 0 477 1 5
5 0 2405 0 6
6 1508 482 0 6
7 1695 1330 2 6
8 52 731 2 6
9 976 551 1 6
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 22 1 1 9 False
1 35 3 4 11 False
2 11 0 1 6 False
3 16 0 1 8 False
4 58 6 7 22 False
5 11 0 1 7 True
6 14 1 1 9 True
7 32 2 3 10 True
8 12 0 3 7 True
9 33 1 2 17 True ,
assists baronKills bountyLevel champLevel championName \
0 4 0 0 17 Jax
1 7 0 2 14 Khazix
2 3 0 2 15 Viego
3 6 0 0 14 Zyra
4 11 0 0 13 Seraphine
5 9 0 0 14 Garen
6 9 0 0 13 Kayn
7 6 0 0 15 Zed
8 9 0 0 15 Kaisa
9 23 0 0 13 Thresh
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 5715 9951 5715
1 2321 34887 2321
2 7590 12759 7590
3 4715 13940 4715
4 2550 3824 2550
5 1427 5304 1427
6 691 10525 691
7 2878 2878 2878
8 1957 1957 1957
9 0 171 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 2 0 False False
1 7 1 3 False False
2 4 1 1 False False
3 5 1 0 False False
4 9 2 0 False False
5 7 0 0 False False
6 10 1 0 True False
7 9 1 0 False False
8 3 0 0 True False
9 11 3 0 False True
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 14652 TOP 0
1 False 11545 JUNGLE 1
2 False 13636 MIDDLE 0
3 False 11657 BOTTOM 0
4 False 8067 UTILITY 0
5 False 9227 TOP 0
6 False 7848 JUNGLE 0
7 False 11594 MIDDLE 0
8 False 15073 BOTTOM 0
9 False 8368 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3748 3153 3047 3078 3053 0 3364
1 0 6691 2031 3047 3181 3134 0 3364
2 0 0 6673 0 6333 3153 3047 3340
3 0 3020 3157 3916 6653 1056 1011 3340
4 0 6617 3158 3853 3011 0 0 3364
5 1 1054 6631 3006 3075 3044 1028 3340
6 1 6693 3004 3158 0 0 0 3364
7 1 6676 3142 3158 6691 1037 0 3340
8 1 6671 3085 6676 3006 3031 1038 3340
9 1 3857 3190 3117 3050 3801 3067 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 8 5 1
1 3 9 3 2
2 3 13 8 3
3 2 9 4 2
4 0 1 0 1
5 1 3 3 1
6 0 1 0 1
7 1 7 3 1
8 2 17 11 3
9 0 2 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 1022 33162 5026
1 405 8689 759
2 943 4299 2324
3 639 122446 26220
4 324 35737 5263
5 522 1282 389
6 400 6868 524
7 425 4176 503
8 985 17572 7927
9 230 13869 9211
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 3881 35 0
1 4240 128 0
2 5437 16 0
3 4014 20 0
4 2695 0 0
5 6591 4 0
6 6303 102 0
7 2446 0 0
8 10652 12 0
9 15046 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 152713
1 0 2 119463
2 0 3 128936
3 0 4 15300
4 0 5 3780
5 0 6 88451
6 0 7 97618
7 0 8 105263
8 0 9 118243
9 0 10 4929
physicalDamageDealtToChampions physicalDamageTaken role \
0 17778 21478 DUO
1 11053 22731 NONE
2 21590 22061 DUO
3 859 8833 CARRY
4 940 10191 SUPPORT
5 9590 18609 SOLO
6 6392 19621 NONE
7 16905 16077 SOLO
8 17967 9172 CARRY
9 1342 7851 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 12 2 4 282
1 2 4 16 11 136
2 6 14 4 4 108
3 5 4 7 14 239
4 5 4 6 14 166
5 2 12 4 4 185
6 3 4 15 11 145
7 4 4 5 14 171
8 4 4 5 7 163
9 7 14 5 4 287
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 Guy Man False 100 TOP 14
1 JuicyH2O False 100 JUNGLE 5
2 The Wild Lemon False 100 MIDDLE 16
3 I AM KATHANA False 100 BOTTOM 49
4 Artechou False 100 UTILITY 22
5 Dragovichko False 200 TOP 20
6 MrLegitoMaki False 200 JUNGLE 6
7 Coolgum15 False 200 MIDDLE 7
8 Horacioos False 200 BOTTOM 0
9 Ausborn False 200 UTILITY 57
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1745 199165 23092
1 1745 143621 12619
2 1745 135639 25329
3 1745 139358 28691
4 1745 40351 7037
5 1745 103816 13897
6 1745 113310 7500
7 1745 113778 18485
8 1745 140186 26389
9 1745 24327 11479
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 28240 4990 211 139
1 27573 12420 17 235
2 30569 12057 159 86
3 13207 1260 141 268
4 13187 5075 47 147
5 26281 2604 146 135
6 26683 9477 21 214
7 19643 2415 167 181
8 21262 8759 198 0
9 23456 1732 44 139
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 185 1 13290
1 230 1 15468
2 173 1 2404
3 124 1 1612
4 210 5 834
5 158 1 14082
6 293 1 8823
7 270 1 4338
8 37 2 4370
9 279 5 5527
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 288 2880 3 2
1 806 601 2 2
2 1414 3070 3 2
3 1612 360 2 2
4 834 300 0 2
5 3917 1080 0 10
6 583 757 0 10
7 1076 1120 2 10
8 495 1436 0 10
9 926 559 0 10
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 8 2 1 5 True
1 22 1 0 2 True
2 18 3 1 9 True
3 23 1 0 10 True
4 60 2 5 23 True
5 15 0 3 7 False
6 8 1 1 3 False
7 20 1 1 10 False
8 6 0 3 2 False
9 43 3 6 21 False ,
assists baronKills bountyLevel champLevel championName \
0 1 0 0 9 Fiora
1 2 0 0 7 FiddleSticks
2 1 0 5 9 Ahri
3 2 0 1 7 Kaisa
4 3 0 2 6 Bard
5 0 0 0 5 Irelia
6 0 0 0 4 Ekko
7 0 0 0 6 Talon
8 2 0 1 7 Syndra
9 1 0 0 5 Swain
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 4436 4436 4436
1 0 7498 0
2 1757 1757 1757
3 882 882 882
4 189 1076 189
5 38 38 38
6 0 0 0
7 0 0 0
8 0 0 0
9 0 0 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 1 0 0 False False
1 1 0 1 False False
2 0 1 0 False False
3 1 1 0 True False
4 0 1 0 False True
5 2 0 0 False False
6 1 0 0 False False
7 4 0 0 False False
8 4 0 0 False False
9 1 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 5175 TOP 0
1 True 3664 JUNGLE 0
2 True 5081 MIDDLE 0
3 True 4020 BOTTOM 0
4 True 3552 UTILITY 0
5 True 2204 TOP 0
6 True 2252 JUNGLE 0
7 True 2463 MIDDLE 0
8 True 3154 BOTTOM 0
9 True 2731 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1055 3508 1037 1001 0 0 3340
1 0 2423 0 2003 3145 1001 1028 3330
2 0 1082 2031 6655 1001 0 0 3340
3 0 6670 1018 3006 0 0 1037 3340
4 0 3851 1028 3117 3145 2055 0 3340
5 0 2033 0 0 0 0 0 3340
6 0 1039 2031 1052 2055 0 0 3364
7 0 3134 2031 3133 0 0 0 3340
8 0 1056 3802 0 0 0 0 3340
9 0 3850 2031 3020 1011 0 0 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 1 2 2 1
1 0 1 0 1
2 1 5 5 2
3 0 2 0 1
4 1 2 2 1
5 0 0 0 0
6 0 0 0 0
7 0 1 0 1
8 0 1 0 1
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 652 507 177
1 528 37970 899
2 0 17185 3210
3 388 2113 737
4 0 3906 1676
5 186 960 243
6 222 8983 309
7 265 0 0
8 176 11753 3221
9 543 6305 975
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 838 0 0
1 2485 68 0
2 193 0 0
3 2263 2 0
4 690 0 0
5 177 0 0
6 1466 28 0
7 2919 0 0
8 1735 0 0
9 1297 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 28267
1 0 2 4786
2 0 3 7176
3 0 4 25019
4 0 5 1908
5 0 6 7509
6 0 7 4736
7 0 8 15022
8 0 9 3335
9 0 10 2320
physicalDamageDealtToChampions physicalDamageTaken role \
0 2183 3362 DUO
1 0 8949 SUPPORT
2 1454 2932 SUPPORT
3 1936 2997 SUPPORT
4 988 1334 SUPPORT
5 886 2072 SUPPORT
6 136 2185 SUPPORT
7 2468 2357 SUPPORT
8 705 3667 SUPPORT
9 358 1073 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 1 12 2 4 83
1 1 4 6 11 117
2 2 4 2 14 283
3 1 7 2 4 298
4 1 4 3 14 163
5 1 4 1 12 161
6 1 4 3 11 179
7 2 4 0 14 171
8 2 4 2 7 309
9 2 4 1 14 177
summonerName teamEarlySurrendered teamId teamPosition \
0 Sádge False 100 TOP
1 fruedain False 100 JUNGLE
2 bambiie False 100 MIDDLE
3 Optimo 99c False 100 BOTTOM
4 DylanPoolio False 100 UTILITY
5 CFbomber2017 Boi False 200 TOP
6 Z3Ketchup False 200 JUNGLE
7 Coolgum15 False 200 MIDDLE
8 havadora False 200 BOTTOM
9 Soldier2018 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 3 667 32018 2763
1 7 667 48064 929
2 10 667 43637 6323
3 0 667 28642 2674
4 6 667 6152 3001
5 2 667 13339 1129
6 1 667 15038 494
7 1 667 15064 2510
8 10 667 15089 3927
9 8 667 13926 1454
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 4201 1219 75 25
1 11501 7792 0 325
2 3125 532 69 72
3 5362 1085 63 0
4 2067 775 2 39
5 2413 238 30 10
6 3691 1708 0 25
7 6714 298 27 67
8 5958 655 34 52
9 2603 124 20 57
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 0 1 3243
1 16 1 5307
2 0 1 19275
3 14 2 1510
4 0 5 336
5 22 1 4870
6 10 1 1318
7 56 1 42
8 46 2 0
9 14 1 5300
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 403 0 1 0
1 30 66 0 0
2 1658 0 0 0
3 0 102 0 0
4 336 42 0 0
5 0 163 0 1
6 48 40 0 1
7 42 1437 0 1
8 0 554 0 1
9 120 232 0 1
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 0 0 0 0 True
1 7 0 0 0 True
2 4 1 0 3 True
3 2 1 0 1 True
4 11 2 0 8 True
5 1 0 0 1 False
6 1 1 0 1 False
7 1 0 0 1 False
8 1 0 0 1 False
9 4 0 0 3 False ,
assists baronKills bountyLevel champLevel championName \
0 3 0 0 17 Aatrox
1 15 1 2 16 Sejuani
2 6 0 1 15 Azir
3 5 0 10 15 Kaisa
4 15 0 1 14 Senna
5 0 0 0 16 Viego
6 6 0 0 13 Nocturne
7 3 0 0 15 Veigar
8 6 0 0 13 Aphelios
9 5 0 1 13 Lux
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 7624 11467 7624
1 1216 20539 1216
2 3802 12276 3802
3 5660 20554 5660
4 1192 5973 1192
5 1313 15033 1313
6 784 12879 784
7 3728 4327 3728
8 1590 2180 1590
9 212 460 212
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 6 3 0 False False
1 1 1 2 False False
2 5 5 0 False False
3 4 0 1 False False
4 4 5 1 False False
5 7 1 0 False True
6 9 3 0 False False
7 6 0 0 False False
8 7 2 0 False False
9 6 6 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 13472 TOP 0
1 True 11269 JUNGLE 0
2 True 9777 MIDDLE 0
3 True 15100 BOTTOM 1
4 True 9438 UTILITY 0
5 True 12017 TOP 0
6 True 10325 JUNGLE 0
7 True 8255 MIDDLE 0
8 True 9347 BOTTOM 0
9 True 8946 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1055 3076 3074 6630 3047 3053 3340
1 0 3111 3143 3068 3075 1028 0 3340
2 0 4630 3020 6653 3115 0 0 3363
3 0 3006 3026 6676 6673 3046 1037 3340
4 0 6662 3009 3864 3124 3123 1018 3364
5 1 1055 3153 3047 6672 1037 3044 3340
6 1 3006 6692 3181 3134 1018 0 3363
7 1 1056 6655 3020 1058 1058 0 3340
8 1 1055 3006 6672 3085 0 3123 3363
9 1 3853 6655 3020 0 3165 1052 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 10 5 2
1 1 3 2 1
2 1 3 2 2
3 2 16 10 3
4 0 3 0 1
5 0 4 0 1
6 1 4 2 1
7 0 2 0 1
8 1 3 3 1
9 2 7 3 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 559 3466 669
1 683 61936 5521
2 620 93488 9849
3 520 14320 3862
4 507 4218 414
5 629 9675 2435
6 343 8331 618
7 471 95257 15655
8 634 1171 922
9 691 40743 16429
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 13396 0 0
1 8056 139 0
2 7857 12 0
3 5317 33 1
4 4966 8 0
5 3916 36 0
6 6208 124 0
7 6285 0 0
8 4512 0 0
9 1285 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 144175
1 0 2 91256
2 0 3 14458
3 0 4 144180
4 0 5 26081
5 0 6 156050
6 0 7 135909
7 0 8 7008
8 0 9 90537
9 0 10 2277
physicalDamageDealtToChampions physicalDamageTaken role \
0 23609 19070 SOLO
1 5749 18789 NONE
2 553 7501 SOLO
3 12892 16080 CARRY
4 8081 5919 SUPPORT
5 11611 22129 SOLO
6 11797 24912 NONE
7 149 8619 SOLO
8 9753 12187 CARRY
9 527 9565 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 4 12 193
1 3 4 18 11 171
2 4 12 4 4 323
3 2 4 4 7 186
4 3 3 4 4 209
5 5 4 5 14 153
6 5 4 14 11 240
7 3 4 5 21 26
8 4 4 5 7 225
9 3 14 4 4 112
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 Bashersmash False 100 TOP 26
1 Coolgum15 False 100 JUNGLE 21
2 XHYLGGYBZ False 100 MIDDLE 6
3 RenownedReaper False 100 BOTTOM 5
4 yilia233 False 100 UTILITY 14
5 shanesmurf False 200 TOP 17
6 DMS Vee False 200 JUNGLE 145
7 LillyEmily False 200 MIDDLE 17
8 DMS Nightfall False 200 BOTTOM 18
9 DMS Touchy False 200 UTILITY 46
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1774 157968 24278
1 1774 163526 11770
2 1774 113566 10403
3 1774 175157 17429
4 1774 30299 8496
5 1774 196057 15622
6 1774 155306 13546
7 1774 104986 15804
8 1774 98544 11340
9 1774 43952 17888
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 34502 13783 209 285
1 27593 13835 45 327
2 15723 1771 141 149
3 22242 7508 168 132
4 11195 6667 13 164
5 26332 6466 188 51
6 31269 15329 38 397
7 15174 258 157 54
8 16917 3892 165 98
9 11104 0 46 229
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 210 1 10327
1 27 5 10334
2 166 1 5620
3 73 3 16656
4 108 4 0
5 225 1 30331
6 236 1 11065
7 183 1 2720
8 181 2 6835
9 214 0 932
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 2035 1 2
1 500 747 1 2
2 0 364 1 2
3 674 844 2 2
4 0 309 1 2
5 1575 286 1 6
6 1130 148 0 6
7 0 269 1 6
8 664 216 2 6
9 932 254 0 6
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 25 3 2 9 True
1 42 1 3 9 True
2 32 6 5 15 True
3 20 0 4 9 True
4 65 5 9 24 True
5 19 3 2 9 False
6 30 3 3 13 False
7 14 0 3 8 False
8 19 2 1 10 False
9 39 6 6 23 False ,
assists baronKills bountyLevel champLevel championName \
0 11 0 0 18 Yasuo
1 21 0 0 17 JarvanIV
2 9 0 0 16 Pantheon
3 7 0 0 16 Vayne
4 13 0 0 13 Ahri
5 18 0 0 17 Nautilus
6 15 1 3 17 Volibear
7 9 0 1 17 Katarina
8 12 0 3 18 Jhin
9 13 1 1 15 Sett
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2145 14293 2145
1 2142 15681 2142
2 988 4034 988
3 3624 9787 3624
4 1716 1716 1716
5 1658 4130 1658
6 3979 30430 3979
7 915 4913 915
8 9379 29683 9379
9 5784 13534 5784
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 1 2 False False
1 7 0 0 False False
2 7 0 0 False False
3 10 0 1 False False
4 6 0 0 False False
5 8 1 0 False True
6 5 1 2 False False
7 9 2 1 False False
8 5 0 0 False False
9 8 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False True False
9 True False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 15487 TOP 0
1 False 12836 JUNGLE 1
2 False 13335 MIDDLE 0
3 False 14921 JUNGLE 0
4 False 9019 UTILITY 0
5 False 11511 TOP 0
6 False 16570 JUNGLE 1
7 False 13432 MIDDLE 0
8 False 19178 BOTTOM 0
9 False 11783 UTILITY 1
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 2 1055 6673 3006 3031 3074 3033 3340
1 2 1029 6630 3075 3053 1033 3111 3364
2 2 6692 3053 3111 3071 1031 3133 3340
3 2 6672 3006 3046 3124 3036 1029 3340
4 2 3853 6656 3020 4629 3145 0 3364
5 1 3047 3068 3075 4637 0 0 3340
6 1 3742 3193 6664 3047 3075 3110 3364
7 1 3153 3020 3115 6672 3191 0 3340
8 1 3009 6676 6671 3094 3031 3026 3363
9 1 3857 3047 6664 3075 3083 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 3 10 4 2
1 0 2 0 1
2 2 7 2 1
3 2 12 5 3
4 0 3 0 1
5 1 5 2 1
6 3 10 3 1
7 1 6 2 2
8 3 11 4 2
9 0 5 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 659 15856 2906
1 757 28842 1225
2 701 902 501
3 535 0 0
4 721 23959 10265
5 657 45142 10648
6 1052 112394 9936
7 370 90389 10482
8 1137 10491 4472
9 405 16826 2293
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 9248 44 0
1 10969 162 0
2 7830 16 0
3 5709 16 0
4 6179 0 0
5 2027 0 0
6 4762 151 0
7 1620 20 0
8 4174 19 0
9 5231 8 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 232610
1 0 2 172269
2 0 3 131760
3 0 4 127256
4 0 5 3478
5 0 6 21176
6 0 7 74855
7 0 8 50605
8 0 9 271350
9 0 10 40502
physicalDamageDealtToChampions physicalDamageTaken role \
0 29915 14712 SOLO
1 13937 35093 NONE
2 18810 19849 SOLO
3 16191 16556 CARRY
4 1260 10984 SUPPORT
5 2845 23939 SOLO
6 13286 29458 NONE
7 6204 22341 SOLO
8 28892 19310 CARRY
9 8064 20385 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 6 4 7 14 255
1 4 4 21 11 171
2 6 4 4 14 330
3 6 7 4 4 181
4 4 4 5 14 128
5 3 12 5 4 63
6 23 11 6 4 286
7 3 4 6 14 346
8 5 1 5 4 47
9 6 14 12 4 149
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 SussieAmogus False 100 TOP 45
1 Coolgum15 False 100 JUNGLE 25
2 Rotome False 100 MIDDLE 25
3 supercougar4 False 100 BOTTOM 8
4 Alece False 100 UTILITY 27
5 CDRSnarff False 200 TOP 59
6 Yurmes False 200 JUNGLE 39
7 Ottomans False 200 MIDDLE 2
8 Rage False 200 BOTTOM 24
9 TR4PQU33N False 200 UTILITY 22
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 2311 251545 34993
1 2311 214852 15470
2 2311 133276 19926
3 2311 165452 28984
4 2311 37113 16418
5 2311 66924 14099
6 2311 198377 24696
7 2311 143461 17862
8 2311 298193 34232
9 2311 71547 14481
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 25429 6674 216 196
1 48107 20021 39 563
2 28462 6789 169 38
3 24447 6815 178 18
4 18933 1190 32 76
5 30887 4110 105 372
6 41460 15783 50 840
7 25132 3458 177 13
8 27615 6976 290 144
9 30936 2933 46 122
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 203 1 3078
1 187 1 13741
2 250 1 614
3 299 3 38196
4 183 1 9675
5 277 1 605
6 204 1 11127
7 345 1 2465
8 175 1 16350
9 255 5 14217
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 2172 1468 1 9
1 307 2043 3 9
2 614 782 0 9
3 12793 2181 0 9
4 4892 1769 0 9
5 605 4920 1 4
6 1474 7239 1 4
7 1175 1169 2 4
8 867 4130 2 4
9 4122 5318 1 4
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 28 2 2 14 False
1 15 1 2 7 False
2 21 1 3 8 False
3 12 0 0 8 False
4 41 0 5 21 False
5 21 1 1 12 True
6 25 1 6 3 True
7 32 2 0 12 True
8 17 4 1 10 True
9 71 1 4 31 True ,
assists baronKills bountyLevel champLevel championName \
0 7 0 1 14 Bard
1 4 0 3 12 Hecarim
2 3 0 3 13 Kayle
3 3 0 1 12 Varus
4 5 0 3 10 Lux
5 1 0 0 13 Yasuo
6 1 0 0 12 Evelynn
7 3 0 0 12 Orianna
8 1 0 0 10 Caitlyn
9 2 0 0 10 Senna
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 1183 1491 1183
1 702 17324 702
2 2233 5692 2233
3 1771 1771 1771
4 81 1191 81
5 2849 5036 2849
6 0 5618 0
7 2166 2733 2166
8 1836 2247 1836
9 1072 2080 1072
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 2 0 0 False True
1 1 0 0 False False
2 1 1 0 False False
3 5 0 0 False False
4 1 2 0 False False
5 6 0 0 False False
6 2 1 1 False False
7 2 0 1 False False
8 5 0 0 False False
9 3 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False True False
8 False False False
9 True False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 8683 TOP 0
1 True 8010 JUNGLE 0
2 True 7744 MIDDLE 0
3 True 7636 BOTTOM 0
4 True 6383 UTILITY 0
5 True 7898 TOP 0
6 True 7585 JUNGLE 0
7 True 7400 MIDDLE 0
8 True 6047 BOTTOM 0
9 True 6401 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1055 6672 3006 1043 1026 1052 3340
1 0 2031 6664 3066 3158 1031 1028 3340
2 0 1054 3006 3115 1028 1082 0 3340
3 0 3042 2031 3134 3158 0 3133 3363
4 0 3853 6655 3020 0 0 0 3364
5 0 6673 3006 1038 1037 1018 0 3340
6 0 4636 3020 1082 3057 3113 0 3340
7 0 1056 2421 3020 3108 6655 0 3340
8 0 1055 6671 2015 3006 2003 0 3340
9 0 3864 6677 1018 1042 6672 3009 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 4 2 1
1 1 4 3 1
2 1 3 3 1
3 0 2 0 1
4 2 5 3 1
5 0 3 0 1
6 2 5 3 1
7 0 1 0 1
8 0 0 0 0
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 513 23417 3317
1 759 27068 1084
2 488 42413 2998
3 509 3073 1210
4 1009 17086 8493
5 302 6825 726
6 753 80173 5823
7 1113 55778 11018
8 485 595 595
9 945 0 0
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 4135 4 0
1 5868 112 0
2 3109 4 0
3 4131 0 0
4 2327 0 0
5 3597 8 0
6 4579 113 0
7 3241 4 1
8 4778 0 0
9 2698 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 34906
1 0 2 76852
2 0 3 25842
3 0 4 71138
4 0 5 1662
5 0 6 83658
6 0 7 12940
7 0 8 10933
8 0 9 57282
9 0 10 31957
physicalDamageDealtToChampions physicalDamageTaken role \
0 5531 8092 SOLO
1 5728 17044 NONE
2 1057 3365 SOLO
3 5913 6836 CARRY
4 387 2575 SUPPORT
5 6265 7467 SOLO
6 660 12396 NONE
7 631 4520 SOLO
8 5036 6268 CARRY
9 6788 5298 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 4 4 14 255
1 3 4 14 11 171
2 1 4 2 12 330
3 2 4 2 12 194
4 3 4 2 14 128
5 3 4 2 14 387
6 12 11 3 4 224
7 2 12 2 4 150
8 2 4 4 7 296
9 2 4 1 14 212
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 SussieAmogus False 100 TOP 16
1 Coolgum15 False 100 JUNGLE 10
2 Rotome False 100 MIDDLE 3
3 retired bôt False 100 BOTTOM 18
4 Alece False 100 UTILITY 42
5 Rageclinic False 200 TOP 9
6 Aeönic False 200 JUNGLE 6
7 Jnoose False 200 MIDDLE 18
8 Sago Milktea False 200 BOTTOM 8
9 swag poro False 200 UTILITY 22
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1309 61746 10253
1 1309 115596 7241
2 1309 70751 4055
3 1309 74212 7124
4 1309 19181 9114
5 1309 92463 7276
6 1309 99944 6881
7 1309 69317 11649
8 1309 62362 5631
9 1309 34439 7426
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 12406 6183 127 216
1 23451 12226 4 206
2 6598 2264 158 173
3 11297 1304 156 252
4 5053 527 10 140
5 11726 1537 142 82
6 17734 9024 16 256
7 7884 168 132 242
8 11358 2511 125 24
9 8211 3908 34 72
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 59 3 3422
1 27 1 11675
2 21 3 2495
3 137 1 0
4 27 1 432
5 132 1 1979
6 66 1 6830
7 78 1 2605
8 125 3 4485
9 61 4 2481
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1405 178 1 2
1 429 538 0 2
2 0 123 0 2
3 0 329 1 2
4 234 150 0 2
5 284 661 1 2
6 398 758 0 2
7 0 122 1 2
8 0 311 0 2
9 637 214 0 2
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 7 0 0 5 True
1 11 0 0 6 True
2 7 2 2 4 True
3 6 0 0 5 True
4 22 2 1 12 True
5 8 0 0 6 False
6 13 1 2 5 False
7 8 0 0 4 False
8 8 0 0 5 False
9 27 1 5 6 False ,
assists baronKills bountyLevel champLevel championName \
0 2 0 0 15 Fiora
1 8 0 0 14 Ornn
2 4 0 0 13 Yone
3 7 0 0 13 Pantheon
4 12 0 0 14 Annie
5 3 0 6 17 Tryndamere
6 14 0 0 14 Nunu
7 4 0 2 15 Kayle
8 8 0 0 12 Jhin
9 5 0 0 11 Senna
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 4994 4994 4994
1 335 6246 335
2 1262 6630 1262
3 1184 4034 1184
4 2256 3823 2256
5 8024 19702 8024
6 216 5149 216
7 6956 6956 6956
8 1796 2015 1796
9 1061 1061 1061
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 1 0 False True
1 7 1 2 False False
2 9 0 0 False False
3 4 1 0 False False
4 4 6 0 False False
5 3 0 0 False False
6 6 1 0 False False
7 5 0 0 False False
8 8 2 0 False False
9 7 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 12131 TOP 0
1 True 9581 JUNGLE 0
2 True 7840 MIDDLE 0
3 True 11115 BOTTOM 0
4 True 9919 UTILITY 0
5 True 16214 TOP 2
6 True 9573 JUNGLE 0
7 True 11587 MIDDLE 0
8 True 7988 BOTTOM 0
9 True 6836 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 2 3047 6673 3508 3074 1028 1055 3364
1 2 3158 7003 2031 3075 3067 1011 3364
2 2 1055 3006 2031 6673 1018 1038 3340
3 2 3142 7001 3158 3053 1055 0 3340
4 2 3020 3157 3853 6655 3916 2055 3364
5 0 1055 6672 3031 3006 3508 3035 3340
6 0 3152 2031 3742 3047 3076 0 3364
7 0 1054 3115 1082 3006 4633 3191 3340
8 0 1055 6671 3134 3009 1018 1037 3363
9 0 3864 6672 3009 3086 2015 0 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 3 8 3 2
1 1 3 2 1
2 0 1 0 1
3 3 10 5 1
4 2 7 4 1
5 2 14 8 2
6 0 2 0 1
7 3 10 5 2
8 0 1 0 1
9 1 2 2 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 557 5332 657
1 520 85609 8017
2 707 13584 2043
3 667 3791 474
4 667 54552 20246
5 971 0 0
6 497 55515 9430
7 659 71672 10940
8 569 7451 1867
9 527 99 99
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 3046 8 0
1 9841 147 0
2 5478 12 0
3 2810 0 0
4 2997 4 0
5 4970 20 0
6 11073 112 0
7 6448 4 0
8 5598 0 0
9 6167 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 126613
1 0 2 56820
2 0 3 68054
3 0 4 75063
4 0 5 3161
5 0 6 187538
6 0 7 22674
7 0 8 27572
8 0 9 50957
9 0 10 21245
physicalDamageDealtToChampions physicalDamageTaken role \
0 14537 14973 DUO
1 3947 19683 NONE
2 4852 14910 DUO
3 16490 14702 CARRY
4 692 7756 SUPPORT
5 22894 19118 DUO
6 1272 20190 NONE
7 3284 9749 DUO
8 6943 9536 CARRY
9 5248 3079 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 12 4 4 179
1 8 4 18 11 236
2 3 4 3 14 304
3 5 4 5 7 134
4 6 14 4 4 148
5 5 4 6 14 255
6 3 4 12 11 324
7 4 4 3 12 330
8 4 4 2 11 171
9 4 4 2 14 128
summonerName teamEarlySurrendered teamId teamPosition \
0 tyzen False 100 TOP
1 JayFTW False 100 JUNGLE
2 RUNWITHSCISS0RS False 100 MIDDLE
3 horses dont stop False 100 BOTTOM
4 Normie False 100 UTILITY
5 SussieAmogus False 200 TOP
6 JoNoGoSoHo False 200 JUNGLE
7 Rotome False 200 MIDDLE
8 Coolgum15 False 200 BOTTOM
9 Alece False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 7 1646 135360 18609
1 39 1646 151781 14056
2 13 1646 91410 7827
3 18 1646 96745 16965
4 33 1646 58258 21482
5 8 1646 203643 26609
6 24 1646 123424 11397
7 6 1646 104968 14567
8 11 1646 59228 8810
9 25 1646 22513 5617
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 19851 4505 192 107
1 30392 7782 38 754
2 21563 2244 132 76
3 18437 6314 155 36
4 10975 1999 38 103
5 26489 13025 209 83
6 32479 16281 17 372
7 17999 2838 177 238
8 15900 2435 105 96
9 10045 2735 26 95
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 135 1 3414
1 189 1 9352
2 316 1 9770
3 74 4 17890
4 78 1 544
5 62 1 16105
6 192 5 45234
7 192 4 5723
8 193 1 820
9 150 4 1167
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 3414 1832 1 7
1 2092 868 1 7
2 930 1174 1 7
3 0 924 0 7
4 544 222 1 7
5 3714 2401 4 4
6 694 1214 0 4
7 343 1801 2 4
8 0 765 1 4
9 269 798 0 4
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 18 1 1 8 False
1 20 1 1 3 False
2 16 0 1 9 False
3 14 1 4 5 False
4 62 7 8 23 False
5 15 0 1 9 True
6 14 1 2 3 True
7 8 1 0 5 True
8 23 2 2 10 True
9 30 0 3 19 True ,
assists baronKills bountyLevel champLevel championName \
0 5 0 2 16 Irelia
1 11 0 0 14 Sejuani
2 7 0 1 13 Neeko
3 0 0 0 5 Samira
4 7 0 5 13 Morgana
5 1 0 0 14 Teemo
6 1 0 0 13 Poppy
7 4 0 0 13 Shen
8 8 0 0 13 Lucian
9 7 0 0 11 Sett
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3807 4531 3807
1 941 6192 941
2 1737 5936 1737
3 0 0 0
4 555 3059 555
5 3017 3017 3017
6 0 6734 0
7 3559 3737 3559
8 5845 10607 5845
9 2546 6705 2546
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 1 2 0 False False
1 3 0 1 False False
2 5 2 0 False False
3 4 0 0 False False
4 6 0 0 False False
5 5 0 0 False False
6 1 0 1 False False
7 6 0 0 False False
8 7 1 1 True False
9 7 1 0 False True
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False True False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 11372 TOP 0
1 True 10561 JUNGLE 0
2 True 8384 MIDDLE 0
3 True 3976 UTILITY 0
4 True 8114 UTILITY 0
5 True 7210 TOP 0
6 True 7770 JUNGLE 0
7 True 8102 MIDDLE 0
8 True 12142 BOTTOM 0
9 True 7535 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3153 2033 3111 6673 3133 1029 3364
1 0 3068 2031 3111 3075 3143 0 3340
2 0 2033 6656 2055 3020 3145 0 3340
3 0 2031 1036 1042 1055 0 0 3340
4 0 3853 6653 2424 1026 1011 3020 3340
5 0 1056 3115 3020 3108 3802 0 3340
6 0 6632 2031 1001 3742 1029 0 3364
7 0 3077 1028 3158 4633 3057 1011 3340
8 0 6672 3508 3006 6676 1053 1036 3340
9 0 6631 3855 3047 1053 1043 0 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 2 7 5 1
1 2 7 5 1
2 1 6 3 1
3 0 0 0 0
4 1 6 5 1
5 0 0 0 0
6 0 1 0 1
7 0 3 0 1
8 3 9 3 2
9 2 6 3 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 1387 11414 3976
1 670 49943 7788
2 713 65961 14090
3 205 623 83
4 492 32345 13533
5 504 66115 8165
6 1523 12479 193
7 546 14996 5417
8 586 1582 757
9 599 0 0
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 6015 4 0
1 3671 98 1
2 3465 0 0
3 171 0 0
4 2204 1 0
5 4324 8 0
6 4605 151 0
7 13045 0 0
8 7345 4 0
9 11570 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 118440
1 0 2 59761
2 1 3 7665
3 0 4 7669
4 0 5 5524
5 0 6 29732
6 0 7 110985
7 0 8 36878
8 0 9 98512
9 0 10 39109
physicalDamageDealtToChampions physicalDamageTaken role \
0 10511 10259 SOLO
1 7409 16142 NONE
2 1045 10440 SOLO
3 1070 3959 CARRY
4 814 11472 SUPPORT
5 883 7166 SOLO
6 3231 11818 NONE
7 4504 10915 SOLO
8 18439 8552 CARRY
9 9332 8239 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 4 2 12 139
1 2 4 16 11 171
2 3 14 3 4 63
3 2 4 2 7 69
4 0 14 3 4 56
5 4 4 3 14 25
6 2 4 13 11 49
7 4 4 4 14 81
8 3 4 4 7 67
9 7 4 3 14 62
summonerName teamEarlySurrendered teamId teamPosition \
0 JustKiddingCLK False 100 TOP
1 Coolgum15 False 100 JUNGLE
2 Ryan4101 False 100 MIDDLE
3 Vivi Hyung False 100 BOTTOM
4 darguyen7 False 100 UTILITY
5 Doohlan False 200 TOP
6 airsland False 200 JUNGLE
7 LongLiveTheKing False 200 MIDDLE
8 fireninja132 False 200 BOTTOM
9 NEDLE False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 10 1548 131931 14555
1 31 1548 115920 16007
2 45 1548 77214 15724
3 0 1548 12612 1153
4 58 1548 39589 14347
5 22 1548 96986 10188
6 12 1548 131824 3910
7 22 1548 54430 10757
8 0 1548 106103 20879
9 23 1548 48662 13852
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 18123 4763 209 64
1 22740 8311 28 331
2 15174 1108 98 121
3 4600 645 26 0
4 15826 2907 26 92
5 11622 1491 129 336
6 16781 8796 11 680
7 24312 5995 115 134
8 16156 2518 154 0
9 20175 1190 42 74
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 48 1 2076
1 48 4 6215
2 181 1 3586
3 42 2 4320
4 129 1 1720
5 125 1 1138
6 0 1 8359
7 181 1 2555
8 249 2 6008
9 215 1 9552
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 68 1848 1 5
1 809 2927 0 5
2 587 1268 1 5
3 0 469 0 5
4 0 2148 0 5
5 1138 132 1 2
6 485 358 0 2
7 835 351 1 2
8 1682 258 3 2
9 4519 365 0 2
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 14 2 3 4 True
1 12 0 0 7 True
2 11 3 0 8 True
3 4 0 0 3 True
4 9 0 0 5 True
5 10 0 0 8 False
6 13 0 2 0 False
7 10 0 0 7 False
8 24 1 2 9 False
9 27 1 1 10 False ,
assists baronKills bountyLevel champLevel championName \
0 4 0 2 18 Mordekaiser
1 8 1 11 18 Rengar
2 5 0 4 17 Jhin
3 8 0 0 16 Chogath
4 9 0 0 15 Zilean
5 4 0 0 16 Teemo
6 14 0 1 17 Hecarim
7 10 0 0 16 Diana
8 8 0 0 15 Tristana
9 10 0 0 14 Morgana
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3601 23226 3601
1 4800 31134 4800
2 10358 18295 10358
3 3166 7929 3166
4 944 1679 944
5 2862 5080 2862
6 0 21593 0
7 7108 13596 7108
8 2518 3144 2518
9 713 1698 713
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 3 1 0 False False
1 6 0 1 True False
2 6 1 0 False True
3 7 1 3 False False
4 5 2 0 False False
5 7 0 0 False False
6 4 3 2 False False
7 8 1 0 False False
8 9 0 0 False False
9 8 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False True False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 13399 TOP 0
1 True 20702 JUNGLE 2
2 True 15424 MIDDLE 0
3 True 10714 BOTTOM 1
4 True 9033 UTILITY 0
5 True 12186 TOP 0
6 True 14381 JUNGLE 0
7 True 14419 MIDDLE 0
8 True 11487 BOTTOM 0
9 True 8641 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3108 3157 4633 3067 3065 3111 3364
1 0 6692 3074 3047 3181 3508 3142 3340
2 0 3009 6676 6692 1038 3036 1018 3364
3 0 1054 6662 1001 3748 1011 3067 3340
4 0 3853 1033 6653 3158 3011 1052 3364
5 3 1056 3020 3115 6653 4637 3916 3340
6 3 4401 6664 3742 3158 3075 3044 3364
7 3 3100 3115 1058 3020 1058 4636 3340
8 3 1055 6672 3033 3006 3046 1053 3340
9 3 3853 6653 1052 3020 1026 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 4 2 1
1 4 20 11 2
2 2 10 4 2
3 1 2 2 1
4 0 0 0 0
5 0 2 0 1
6 2 8 4 2
7 3 12 4 3
8 1 3 2 1
9 1 2 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 1068 147712 17473
1 357 57644 3733
2 377 931 444
3 701 67978 9404
4 691 41975 9052
5 552 137623 26014
6 654 73575 6193
7 587 152337 31842
8 954 19752 1792
9 736 32784 11623
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 15618 27 0
1 24064 198 0
2 11905 4 0
3 19895 20 1
4 8718 0 0
5 8013 20 0
6 12830 187 0
7 6675 0 0
8 7801 24 0
9 8635 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 30463
1 0 2 248350
2 0 3 205089
3 0 4 52091
4 0 5 2214
5 0 6 41853
6 0 7 166034
7 0 8 20706
8 0 9 109147
9 0 10 5328
physicalDamageDealtToChampions physicalDamageTaken role \
0 1586 15813 SOLO
1 44385 27611 NONE
2 24430 10555 DUO
3 2913 18592 SUPPORT
4 819 7281 SUPPORT
5 2615 15033 SOLO
6 16932 36394 NONE
7 3201 22195 SOLO
8 13409 17572 CARRY
9 649 13477 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 1 12 3 4 149
1 5 4 17 11 87
2 5 4 4 14 111
3 3 12 5 4 85
4 1 3 5 4 170
5 5 4 4 14 119
6 5 4 26 11 171
7 7 14 5 4 63
8 4 4 5 7 93
9 0 14 3 4 56
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 Splurmo False 100 TOP 6
1 treatsms21 False 100 JUNGLE 13
2 Tracer2XX False 100 MIDDLE 19
3 denniswh False 100 BOTTOM 67
4 VampKitty47 False 100 UTILITY 19
5 WestWing34 False 200 TOP 35
6 Coolgum15 False 200 JUNGLE 38
7 Ryan4101 False 200 MIDDLE 11
8 Quesejodan17 False 200 BOTTOM 3
9 darguyen7 False 200 UTILITY 69
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 2240 199686 19887
1 2240 331372 49692
2 2240 224008 25364
3 2240 132654 14303
4 2240 44463 10145
5 2240 184884 29172
6 2240 265972 26049
7 2240 175444 35964
8 2240 158748 16560
9 2240 38113 12273
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 32729 14333 214 34
1 53376 36034 67 412
2 23562 9545 216 62
3 39774 11314 134 1241
4 16357 5755 52 98
5 24089 4729 234 547
6 50910 24608 41 351
7 29318 4934 174 47
8 26868 6847 173 21
9 22592 3506 38 96
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 122 1 21512
1 183 1 25377
2 180 1 17987
3 234 1 12584
4 159 2 274
5 248 1 5408
6 154 1 26363
7 285 1 2400
8 321 3 29848
9 274 1 0
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 827 1297 2 5
1 1573 1701 2 5
2 490 1101 3 5
3 1984 1286 2 5
4 274 357 1 5
5 543 1042 1 11
6 2922 1686 0 11
7 920 447 3 11
8 1358 1493 0 11
9 0 479 0 11
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 17 1 0 3 True
1 30 0 2 13 True
2 12 1 3 3 True
3 14 1 0 8 True
4 63 2 3 28 True
5 13 0 1 7 False
6 31 4 1 12 False
7 24 3 2 10 False
8 20 0 3 9 False
9 14 0 0 8 False ,
assists baronKills bountyLevel champLevel championName \
0 4 0 0 12 Renekton
1 3 0 0 12 XinZhao
2 3 0 0 13 Viktor
3 4 0 0 11 Ezreal
4 4 0 0 11 Leona
5 2 0 1 15 Urgot
6 6 0 3 13 Hecarim
7 9 0 0 13 Annie
8 10 0 2 12 Ziggs
9 11 0 2 12 Nami
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 0 0 0
1 0 18087 0
2 0 0 0
3 0 0 0
4 0 0 0
5 5533 5533 5533
6 1828 23311 1828
7 298 298 298
8 3022 7642 3022
9 2400 6245 2400
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 6 1 0 False False
1 8 2 1 False False
2 4 2 0 False False
3 4 0 0 False False
4 4 2 0 False False
5 2 0 0 False False
6 3 2 2 False True
7 4 1 0 False False
8 1 1 0 False False
9 2 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 6133 TOP 0
1 True 6703 JUNGLE 0
2 True 9699 MIDDLE 0
3 True 7725 BOTTOM 0
4 True 5608 UTILITY 0
5 True 11185 TOP 0
6 True 11627 JUNGLE 0
7 True 8925 MIDDLE 0
8 True 8474 BOTTOM 0
9 True 6720 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 6630 1055 3047 0 0 0 3340
1 0 3115 2031 3111 3155 0 1052 3340
2 0 6655 3040 3020 1052 1082 0 3340
3 0 3042 6632 0 3009 0 0 3340
4 0 3860 3190 3111 3801 1006 0 3364
5 0 6631 3748 1083 3047 3133 3067 3340
6 0 3742 6664 1028 3158 1057 3066 3340
7 0 6655 3157 3020 2031 3108 0 3340
8 0 3020 3157 6655 1056 0 0 3340
9 0 6617 3853 3114 3158 1052 1052 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 0 0 0
1 0 2 0 1
2 3 8 4 1
3 0 1 0 1
4 0 1 0 1
5 1 6 4 1
6 4 10 3 3
7 1 4 3 1
8 2 4 2 1
9 1 2 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 418 1206 806
1 332 19038 1080
2 560 78688 21832
3 773 3034 1884
4 665 3562 1865
5 1202 0 0
6 456 42054 3608
7 553 53650 11694
8 977 70907 12843
9 579 9526 4073
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 6789 8 0
1 5962 101 0
2 4087 0 0
3 9597 0 0
4 7487 0 0
5 5944 22 0
6 11831 142 0
7 8119 0 0
8 2114 10 0
9 2640 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 55710
1 0 2 68655
2 0 3 7022
3 0 4 55981
4 0 5 4662
5 0 6 134522
6 0 7 110894
7 0 8 10806
8 0 9 13735
9 0 10 3193
physicalDamageDealtToChampions physicalDamageTaken role \
0 3868 10277 SOLO
1 3710 20340 NONE
2 481 8966 SOLO
3 6135 3613 CARRY
4 1280 5822 SUPPORT
5 16000 7976 SOLO
6 10523 19668 NONE
7 1000 5085 SOLO
8 511 4767 CARRY
9 968 4672 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 1 4 2 12 200
1 13 11 3 4 199
2 4 4 4 14 170
3 2 4 4 7 207
4 5 3 3 4 238
5 1 4 4 14 145
6 3 4 17 11 171
7 3 4 3 14 166
8 4 3 1 4 265
9 3 7 2 4 184
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 capeman11d7 False 100 TOP 5
1 Hearts of Oak False 100 JUNGLE 7
2 Owlking2 False 100 MIDDLE 19
3 Gnaw623 False 100 BOTTOM 0
4 jaksa97 False 100 UTILITY 21
5 DarkStar2G False 200 TOP 25
6 Coolgum15 False 200 JUNGLE 22
7 Axeplomacy False 200 MIDDLE 25
8 Coppockalypse False 200 BOTTOM 12
9 Alkara Se False 200 UTILITY 28
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1491 58486 4674
1 1491 99569 5314
2 1491 89658 23086
3 1491 63234 8172
4 1491 14342 3146
5 1491 141857 17514
6 1491 163393 15131
7 1491 70046 13088
8 1491 87888 13426
9 1491 15052 5041
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 18424 3172 105 19
1 27028 13793 9 495
2 13311 143 137 191
3 13664 2702 165 1
4 13493 613 32 38
5 14102 2844 182 208
6 32453 14823 28 271
7 13336 1502 152 131
8 7052 212 133 132
9 7324 8788 15 143
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 146 1 1570
1 155 1 11876
2 98 1 3947
3 88 4 4217
4 77 5 6118
5 92 1 7334
6 85 1 10444
7 92 1 5589
8 30 1 3245
9 44 5 2331
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 1358 0 4
1 524 725 0 4
2 772 258 0 4
3 152 454 0 4
4 0 184 0 4
5 1513 181 2 0
6 1000 953 0 0
7 394 131 1 0
8 72 170 0 0
9 0 12 1 0
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 13 1 1 8 False
1 17 2 1 8 False
2 16 2 0 10 False
3 13 0 2 7 False
4 23 2 4 11 False
5 15 0 3 7 True
6 25 2 2 10 True
7 16 1 1 8 True
8 20 1 2 8 True
9 32 1 5 13 True ,
assists baronKills bountyLevel champLevel championName \
0 12 0 1 17 Bard
1 17 0 0 15 Trundle
2 7 0 4 17 Vayne
3 13 0 0 15 Jinx
4 11 0 0 13 Nautilus
5 3 0 1 15 Tryndamere
6 12 1 0 14 Rammus
7 11 0 0 16 Malzahar
8 11 0 0 15 Tristana
9 15 0 0 14 Neeko
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 7755 8731 7755
1 1743 11773 1743
2 12739 13313 12739
3 4137 5051 4137
4 64 529 64
5 5747 15950 5747
6 88 5023 88
7 2411 10097 2411
8 3784 18362 3784
9 3956 9281 3956
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 3 0 1 False False
1 10 0 0 False False
2 5 3 0 False True
3 5 0 0 False False
4 5 3 0 False False
5 10 0 0 False False
6 11 0 1 False False
7 11 0 0 False False
8 6 0 3 False False
9 6 7 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False True False
9 True False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 14382 TOP 1
1 False 13179 JUNGLE 0
2 False 17930 MIDDLE 1
3 False 12257 BOTTOM 0
4 False 7557 UTILITY 0
5 False 11947 TOP 0
6 False 12029 JUNGLE 0
7 False 12777 MIDDLE 0
8 False 12731 BOTTOM 0
9 False 10709 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1055 3006 6672 3115 3074 3113 3340
1 0 2031 3111 6631 3742 3748 3067 3340
2 0 3153 3139 2033 3006 3124 6672 3363
3 0 1055 6672 3006 3085 3031 0 3340
4 0 3860 3111 3068 3067 3801 1006 3364
5 2 6671 1006 6675 3006 3153 0 3340
6 2 3047 6664 2031 3075 3742 3082 3340
7 2 3040 6653 4637 3020 1026 1052 3340
8 2 3072 6673 3006 3031 1018 1036 3340
9 2 3853 3152 3157 3165 3020 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 10 5 2
1 2 8 4 2
2 4 19 8 3
3 2 7 5 3
4 0 0 0 0
5 0 3 0 1
6 1 6 4 1
7 3 9 2 2
8 1 5 3 1
9 2 5 2 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 650 57418 10917
1 359 11940 2602
2 977 768 768
3 614 1126 606
4 556 10334 2741
5 285 491 491
6 292 89926 16392
7 322 129916 28829
8 1239 22538 2097
9 990 73241 24685
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 8333 12 1
1 25716 127 0
2 16075 10 0
3 15731 17 0
4 8167 0 0
5 6722 12 0
6 5606 92 0
7 2040 8 0
8 2465 17 0
9 3098 4 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 76278
1 0 2 117969
2 0 3 127166
3 0 4 118905
4 0 5 7739
5 0 6 155771
6 0 7 18522
7 0 8 10924
8 0 9 113591
9 0 10 6167
physicalDamageDealtToChampions physicalDamageTaken role \
0 11692 14516 SOLO
1 12087 25702 NONE
2 22570 12462 SOLO
3 13912 4808 CARRY
4 783 9776 SUPPORT
5 9651 23920 SOLO
6 1452 18963 NONE
7 514 15492 SOLO
8 20195 15511 CARRY
9 1634 13073 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 7 14 255
1 5 4 17 11 272
2 5 4 6 1 135
3 4 4 5 7 171
4 5 14 0 4 160
5 4 4 4 12 348
6 18 11 6 4 135
7 6 21 5 4 123
8 4 4 5 7 188
9 3 4 5 14 141
summonerName teamEarlySurrendered teamId teamPosition \
0 SussieAmogus False 100 TOP
1 american police False 100 JUNGLE
2 Mamblenga False 100 MIDDLE
3 Coolgum15 False 100 BOTTOM
4 Thick2BThighs False 100 UTILITY
5 Krunch False 200 TOP
6 BakedAtom False 200 JUNGLE
7 Lordbobly False 200 MIDDLE
8 UltimumEques False 200 BOTTOM
9 LunaCantet False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 44 1940 144621 26153
1 39 1940 136218 16573
2 14 1940 158745 35354
3 21 1940 127521 17418
4 31 1940 23094 4196
5 10 1940 158816 10340
6 38 1940 115173 18790
7 70 1940 147871 29440
8 5 1940 152855 22453
9 57 1940 80850 27232
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 22946 11296 173 434
1 52675 24462 17 734
2 28682 7966 191 113
3 20834 6252 146 87
4 18466 1436 45 153
5 32456 6416 183 97
6 32792 9091 33 412
7 22750 1994 166 364
8 21490 3335 177 31
9 18421 3832 41 213
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 114 5 10923
1 289 1 6308
2 217 1 30810
3 161 3 7489
4 137 1 5020
5 332 1 2554
6 251 5 6724
7 373 1 7030
8 205 3 16725
9 224 1 1442
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 3543 96 4 5
1 1884 1256 1 5
2 12016 144 3 5
3 2899 294 3 5
4 672 522 0 5
5 198 1814 2 11
6 946 8222 0 11
7 96 5217 1 11
8 160 3513 2 11
9 912 2248 0 11
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 19 0 1 10 True
1 26 0 3 10 True
2 39 5 2 13 True
3 15 0 2 7 True
4 33 3 3 15 True
5 14 0 1 8 False
6 17 0 1 9 False
7 18 0 1 9 False
8 15 0 3 7 False
9 64 7 6 28 False ,
assists baronKills bountyLevel champLevel championName \
0 5 0 2 18 Teemo
1 6 1 0 14 Nocturne
2 10 0 4 17 Veigar
3 11 0 3 16 Ashe
4 20 0 3 16 Lulu
5 3 0 0 16 Yasuo
6 10 0 0 15 Hecarim
7 13 0 0 15 Soraka
8 3 0 0 17 Tristana
9 21 0 0 14 Thresh
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 19862 33587 19862
1 590 26558 590
2 4344 17044 4344
3 1547 19071 1547
4 1184 2300 1184
5 2681 11518 2681
6 1320 14382 1320
7 0 593 0
8 10590 18096 10590
9 1024 2472 1024
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 1 0 0 False False
1 11 2 3 False False
2 6 1 1 False False
3 11 0 0 False False
4 9 3 0 False False
5 7 0 0 False False
6 9 1 1 False False
7 5 2 0 False False
8 9 1 1 False True
9 6 12 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 19001 TOP 3
1 False 10318 JUNGLE 0
2 False 15981 MIDDLE 1
3 False 14161 BOTTOM 0
4 False 11299 UTILITY 0
5 False 11377 TOP 0
6 False 13402 JUNGLE 0
7 False 9569 MIDDLE 0
8 False 17476 BOTTOM 0
9 False 10483 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 4637 3115 3020 6653 3089 4630 3364
1 0 2421 6676 2031 6691 3158 1031 3340
2 0 3089 3157 3020 3165 6655 1052 3363
3 0 3006 6672 3033 3085 3036 1018 3340
4 0 3853 3165 3504 4005 3114 3158 3364
5 4 1055 6673 3006 3031 1018 1038 3340
6 4 6664 3742 4401 3065 3158 0 3364
7 4 3067 6617 3111 3065 3801 1011 3340
8 4 3094 6672 0 3095 3033 3006 3363
9 4 3067 3190 3222 3860 3050 3158 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 11 9 2
1 0 0 0 0
2 3 11 4 2
3 2 9 3 1
4 2 5 3 2
5 1 3 2 1
6 3 8 2 2
7 0 2 0 1
8 4 20 6 2
9 2 5 2 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 1952 225380 29114
1 468 14590 715
2 721 146983 31525
3 320 5637 2680
4 461 34757 12434
5 800 11525 587
6 850 40135 5366
7 709 81369 9946
8 446 40265 3904
9 575 31038 9374
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 4703 4 0
1 6909 179 0
2 9053 24 0
3 4598 16 0
4 7047 4 0
5 12029 88 0
6 24204 136 0
7 11901 0 0
8 20145 28 0
9 12469 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 42708
1 0 2 158095
2 0 3 18921
3 0 4 144687
4 0 5 7761
5 0 6 205439
6 0 7 107340
7 0 8 10168
8 0 9 181330
9 0 10 7865
physicalDamageDealtToChampions physicalDamageTaken role \
0 4128 13830 SOLO
1 6669 30146 NONE
2 1795 9090 SOLO
3 25010 16504 CARRY
4 1481 12785 SUPPORT
5 4590 17228 NONE
6 9174 26627 NONE
7 1025 9447 SOLO
8 28407 13992 CARRY
9 1374 12650 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 7 14 170
1 18 11 5 4 83
2 2 12 3 4 232
3 7 7 6 4 117
4 10 14 6 4 181
5 6 4 5 12 121
6 6 6 23 11 346
7 4 4 6 3 246
8 4 4 6 7 34
9 7 4 10 14 173
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 Coolgum15 False 100 TOP 30
1 raechit False 100 JUNGLE 146
2 Fûta False 100 MIDDLE 51
3 Ssaum Tokki False 100 BOTTOM 57
4 DV Babybearr False 100 UTILITY 52
5 hoesmvd False 200 TOP 5
6 evilfirehao False 200 JUNGLE 24
7 YouBeeSoft False 200 MIDDLE 48
8 tjroqwvx False 200 BOTTOM 7
9 Letme Gone False 200 UTILITY 45
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 2144 273881 34645
1 2144 185824 7864
2 2144 180639 33416
3 2144 165814 30626
4 2144 44683 15751
5 2144 220964 5228
6 2144 159092 15928
7 2144 99502 10971
8 2144 259988 36178
9 2144 43933 12371
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 19373 8607 303 736
1 38712 17062 5 521
2 19249 1926 183 173
3 22799 3148 181 768
4 21461 1541 23 419
5 29684 5716 143 231
6 53088 14242 66 218
7 21878 21692 151 482
8 35158 5336 234 177
9 27636 1779 33 224
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 59 1 5792
1 355 1 13137
2 244 1 14735
3 350 3 15489
4 187 1 2165
5 149 1 3999
6 317 1 11616
7 173 5 7965
8 305 4 38392
9 175 4 5029
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1402 840 8 5
1 479 1656 1 5
2 96 1106 1 5
3 2934 1695 1 5
4 1835 1628 0 5
5 50 426 1 11
6 1388 2256 0 11
7 0 529 0 11
8 3867 1020 4 11
9 1622 2516 0 11
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 14 2 4 3 True
1 31 2 1 10 True
2 34 1 4 12 True
3 25 0 4 10 True
4 52 3 3 25 True
5 13 0 0 10 False
6 29 1 6 2 False
7 25 2 2 12 False
8 24 2 1 12 False
9 66 12 3 32 False ,
assists baronKills bountyLevel champLevel championName \
0 6 0 0 14 Chogath
1 9 0 0 15 Shaco
2 8 0 0 15 Veigar
3 7 1 0 16 Samira
4 18 0 0 14 Rell
5 9 0 12 18 Darius
6 8 0 0 14 Evelynn
7 12 0 0 15 Katarina
8 8 0 3 15 Caitlyn
9 19 0 0 13 Senna
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 85 1435 85
1 0 18128 0
2 1622 5171 1622
3 6368 16835 6368
4 606 3498 606
5 12220 19656 12220
6 461 25509 461
7 4326 7236 4326
8 3733 18326 3733
9 515 3585 515
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 14 0 0 False False
1 6 2 2 False False
2 9 5 0 False False
3 6 0 0 False False
4 8 3 0 False False
5 3 1 0 False True
6 6 0 1 False False
7 5 0 1 False False
8 6 0 1 False False
9 10 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 7647 TOP 0
1 False 11304 JUNGLE 0
2 False 10142 MIDDLE 0
3 False 18191 BOTTOM 0
4 False 9711 UTILITY 0
5 False 21524 TOP 2
6 False 10753 JUNGLE 0
7 False 11259 MIDDLE 0
8 False 12325 BOTTOM 0
9 False 8361 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 2 1054 6656 3047 3105 3076 0 3340
1 2 3006 3508 6676 0 0 6671 3364
2 2 6656 4630 3157 1056 1052 3020 3364
3 2 3036 6673 3033 3006 6676 3072 3363
4 2 3860 3190 2055 3109 3075 3047 3364
5 0 3075 6631 3193 3111 3053 3742 3340
6 0 4636 2031 3020 3041 3100 0 3364
7 0 3157 0 3115 1082 4633 3020 3363
8 0 1055 6671 3006 3036 1038 1018 3340
9 0 3864 6672 3006 6676 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 0 0 0
1 2 9 4 2
2 1 3 2 1
3 4 15 7 2
4 1 3 2 1
5 4 28 12 4
6 1 4 2 1
7 1 3 2 1
8 3 8 3 3
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 281 30399 6824
1 613 32283 7254
2 365 98767 17520
3 595 11612 4191
4 600 17083 9439
5 1022 6570 1298
6 1037 107758 14088
7 1056 108929 15806
8 849 1818 1318
9 493 0 0
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 5010 0 0
1 8308 99 0
2 7488 9 0
3 9131 27 0
4 5533 0 0
5 15552 48 0
6 7100 120 0
7 8072 4 0
8 8735 31 0
9 8040 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 15908
1 0 2 74554
2 0 3 11134
3 0 4 183437
4 0 5 4509
5 0 6 224204
6 0 7 13043
7 0 8 7587
8 0 9 133941
9 0 10 21583
physicalDamageDealtToChampions physicalDamageTaken role \
0 1512 24357 SOLO
1 8452 18856 NONE
2 1698 14318 SOLO
3 39427 16643 CARRY
4 1152 17251 SUPPORT
5 45100 30427 NONE
6 544 19355 NONE
7 595 16346 SOLO
8 13155 9988 CARRY
9 8580 9236 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 12 3 4 63
1 4 14 18 11 168
2 4 12 5 4 205
3 4 7 4 4 315
4 5 3 4 4 261
5 6 4 7 6 254
6 4 4 16 11 169
7 5 4 5 14 170
8 3 4 4 7 329
9 5 4 2 14 128
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 Chorus Minimus False 100 TOP 51
1 l Charizard l False 100 JUNGLE 14
2 toóN False 100 MIDDLE 38
3 CoverYourButts False 100 BOTTOM 13
4 B00tySalads False 100 UTILITY 41
5 SussieAmogus False 200 TOP 55
6 Cheeky Lotus False 200 JUNGLE 12
7 Coolgum15 False 200 MIDDLE 0
8 Rotome False 200 BOTTOM 16
9 Alece False 200 UTILITY 23
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 2041 71968 8336
1 2041 115451 16731
2 2041 110187 19219
3 2041 203422 45341
4 2041 29547 10591
5 2041 246025 60222
6 2041 135576 15296
7 2041 117378 17246
8 2041 135760 14474
9 2041 22905 9531
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 34839 2832 98 351
1 27631 11186 20 511
2 25569 2562 150 132
3 28159 7388 230 109
4 26982 1966 40 72
5 46825 24296 200 485
6 26886 9528 30 238
7 25332 5154 143 0
8 18908 6826 157 69
9 17649 5692 11 98
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 433 3 25660
1 169 1 8614
2 326 1 286
3 242 4 8371
4 250 4 7954
5 135 1 15250
6 234 1 14774
7 221 1 861
8 156 3 0
9 306 5 1321
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 5471 0 10
1 1024 467 0 10
2 0 3762 0 10
3 1722 2385 3 10
4 0 4197 0 10
5 13824 845 6 3
6 664 431 0 3
7 844 914 4 3
8 0 184 0 3
9 951 372 0 3
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 2 0 0 2 False
1 19 2 2 3 False
2 27 5 1 9 False
3 20 0 1 7 False
4 78 4 7 31 False
5 26 1 1 12 True
6 15 0 3 1 True
7 19 1 2 9 True
8 16 0 2 8 True
9 57 0 3 31 True ,
assists baronKills bountyLevel champLevel championName \
0 2 0 7 18 Viego
1 8 1 0 14 Zac
2 1 0 1 16 Katarina
3 6 0 1 17 Ezreal
4 6 0 0 13 Seraphine
5 5 0 0 15 Garen
6 5 0 0 14 FiddleSticks
7 6 0 0 17 Yone
8 7 0 0 15 MissFortune
9 9 0 0 14 Bard
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 13827 36797 13827
1 0 8500 0
2 882 4335 882
3 2633 18157 2633
4 657 2207 657
5 998 9705 998
6 483 20864 483
7 3526 11801 3526
8 5336 17354 5336
9 1350 4390 1350
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 6 1 0 False True
1 6 2 1 False False
2 5 0 0 False False
3 2 0 0 False False
4 8 0 0 False False
5 7 0 0 False False
6 8 8 4 False False
7 5 0 0 False False
8 5 0 0 False False
9 2 4 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 21702 TOP 0
1 False 9632 JUNGLE 0
2 False 11375 MIDDLE 0
3 False 12379 BOTTOM 1
4 False 7789 UTILITY 0
5 False 9076 TOP 0
6 False 11092 JUNGLE 0
7 False 14544 MIDDLE 0
8 False 12307 BOTTOM 0
9 False 9426 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3044 6672 3006 3091 3153 3748 3340
1 0 3068 2031 3075 3067 1028 3047 3364
2 0 1082 3157 4633 3115 0 3020 3340
3 0 1055 6691 3035 3158 3508 3123 3340
4 0 3853 4005 3158 3011 1011 1052 3364
5 1 1054 6631 3047 3742 1011 0 3340
6 1 3152 3165 1052 1028 3020 3157 3330
7 1 1055 6333 3006 6673 3033 3031 3340
8 1 3031 1055 6672 3006 6676 3123 3340
9 1 3864 6672 3094 6677 3009 2055 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 5 21 7 2
1 0 0 0 0
2 1 4 2 1
3 0 1 0 1
4 0 1 0 1
5 1 2 2 1
6 2 5 2 1
7 2 9 5 2
8 2 6 3 1
9 2 5 3 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 695 18700 5916
1 933 103434 7086
2 739 100716 11665
3 626 17143 5747
4 548 22863 7021
5 1003 708 347
6 523 112099 13140
7 719 23399 4155
8 834 3551 486
9 1174 25236 5789
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 8675 21 0
1 3446 135 0
2 4904 0 0
3 4355 20 0
4 3694 0 0
5 5982 3 0
6 8113 140 0
7 9070 25 0
8 10881 20 0
9 6382 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 230042
1 0 2 20128
2 0 3 12062
3 0 4 155322
4 0 5 2098
5 0 6 92883
6 0 7 6956
7 0 8 159438
8 0 9 145028
9 0 10 24342
physicalDamageDealtToChampions physicalDamageTaken role \
0 31200 27321 NONE
1 340 25548 NONE
2 462 14914 SOLO
3 11511 7740 CARRY
4 539 9554 SUPPORT
5 10189 14947 SOLO
6 163 26540 NONE
7 15805 9434 SOLO
8 14675 9391 CARRY
9 6324 9103 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 5 4 8 14 254
1 3 4 18 11 169
2 2 4 2 14 170
3 3 4 4 7 329
4 4 4 2 14 128
5 5 4 5 12 123
6 16 11 3 4 225
7 4 14 2 4 259
8 2 4 6 7 211
9 3 4 4 14 165
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 SussieAmogus False 100 TOP 26
1 Cheeky Lotus False 100 JUNGLE 24
2 Coolgum15 False 100 MIDDLE 0
3 Rotome False 100 BOTTOM 0
4 Alece False 100 UTILITY 15
5 Goshdarnit False 200 TOP 31
6 Mannina False 200 JUNGLE 31
7 EnderMp4 False 200 MIDDLE 21
8 Noodull False 200 BOTTOM 4
9 Kaptain Cactus False 200 UTILITY 20
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 2077 279843 46794
1 2077 130576 9118
2 2077 118250 12366
3 2077 189707 19002
4 2077 25361 7960
5 2077 100975 12832
6 2077 133782 14232
7 2077 192443 24026
8 2077 166533 17268
9 2077 53283 14199
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 38650 16772 245 185
1 34338 31820 17 504
2 21754 3084 177 9
3 12881 2777 236 3
4 14236 2036 19 84
5 25862 1357 135 135
6 38019 17814 16 535
7 22798 6022 211 132
8 20812 7354 195 168
9 16114 5543 34 234
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 265 1 31100
1 210 3 7013
2 192 1 5471
3 52 1 17240
4 216 5 400
5 176 1 7383
6 238 1 14726
7 191 1 9605
8 220 2 17953
9 80 5 3704
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 9677 2653 6 4
1 1691 5343 0 4
2 238 1935 0 4
3 1742 785 1 4
4 400 987 0 4
5 2295 4932 0 7
6 928 3364 1 7
7 4065 4293 1 7
8 2106 539 2 7
9 2085 628 0 7
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 25 4 2 13 True
1 19 2 4 3 True
2 17 0 1 10 True
3 10 2 2 4 True
4 54 0 1 30 True
5 18 0 0 11 False
6 67 8 5 8 False
7 13 0 1 7 False
8 14 0 0 7 False
9 65 6 3 29 False ,
assists baronKills bountyLevel champLevel championName \
0 0 0 0 17 Trundle
1 5 0 0 16 Hecarim
2 6 0 0 15 Annie
3 4 0 0 17 Veigar
4 6 0 0 14 Lux
5 8 0 3 18 MonkeyKing
6 11 2 7 18 XinZhao
7 8 0 2 18 Ahri
8 7 0 3 18 Sivir
9 14 0 1 15 Rell
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 6684 21967 6684
1 0 19186 0
2 303 1661 303
3 2270 9767 2270
4 925 1638 925
5 4874 13558 4874
6 2748 38300 2748
7 5773 19972 5773
8 5068 18469 5068
9 1027 2027 1027
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 8 2 1 False False
1 5 7 1 False False
2 10 3 0 False False
3 4 2 0 False False
4 4 3 0 False False
5 4 1 0 False False
6 3 5 3 True False
7 2 2 0 False True
8 4 3 1 False False
9 3 7 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 15961 TOP 1
1 False 11382 JUNGLE 0
2 False 10388 MIDDLE 0
3 False 14100 BOTTOM 0
4 False 9979 UTILITY 0
5 False 13500 TOP 1
6 False 16321 JUNGLE 0
7 False 18490 MIDDLE 0
8 False 14645 BOTTOM 0
9 False 9714 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 3077 3053 3075 3042 3078 3047 3340
1 1 3075 6664 2055 3047 3742 0 3364
2 1 3157 1026 3020 1056 3916 6655 3340
3 1 3020 6656 3157 4629 3135 0 3363
4 1 3853 6655 3020 3165 1058 0 3364
5 1 1055 6632 3047 3074 3053 3123 3340
6 1 6692 3026 3111 3153 3053 3123 3364
7 1 4629 6656 3089 3041 4628 3158 3364
8 1 6694 2031 6691 3134 3042 3158 3363
9 1 2055 3860 3190 3158 3065 3801 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 6 4 1
1 0 1 0 1
2 0 2 0 1
3 1 4 3 1
4 1 3 2 1
5 1 4 3 1
6 2 10 7 2
7 3 11 7 1
8 2 5 3 1
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 911 4062 3592
1 923 59607 2712
2 300 93467 12949
3 886 217321 15271
4 946 36516 9924
5 886 17755 1989
6 595 23811 2148
7 1286 155341 19429
8 593 0 0
9 436 10629 5402
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 6326 39 0
1 11233 175 1
2 4779 0 0
3 6913 4 0
4 3401 0 0
5 10671 0 0
6 8916 153 0
7 13205 40 0
8 7043 25 1
9 7331 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 218967
1 0 2 145549
2 1 3 10827
3 0 4 16296
4 0 5 2902
5 0 6 128497
6 0 7 202281
7 1 8 21682
8 0 9 225052
9 1 10 5054
physicalDamageDealtToChampions physicalDamageTaken role \
0 15189 29276 SOLO
1 6608 24077 NONE
2 665 11424 SOLO
3 567 11877 CARRY
4 936 5947 SUPPORT
5 10723 16460 SOLO
6 20015 23727 NONE
7 1144 8342 SOLO
8 11332 4646 CARRY
9 786 6599 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 8 14 254
1 5 6 18 11 170
2 4 4 4 14 169
3 3 4 4 7 329
4 2 4 2 14 127
5 6 4 1 12 161
6 15 11 5 4 107
7 7 14 5 4 88
8 2 4 5 7 209
9 5 14 4 4 179
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 SussieAmogus False 100 TOP 23
1 Coolgum15 False 100 JUNGLE 20
2 Cheeky Lotus False 100 MIDDLE 21
3 Rotome False 100 BOTTOM 57
4 Alece False 100 UTILITY 35
5 QQzi False 200 TOP 11
6 CeeLi False 200 JUNGLE 18
7 midigi2 False 200 MIDDLE 33
8 Yuldasha False 200 BOTTOM 3
9 Garlic Fingers False 200 UTILITY 21
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 2277 247210 20836
1 2277 222884 9967
2 2277 108328 14515
3 2277 235297 15838
4 2277 40083 11526
5 2277 167012 12713
6 2277 238181 22801
7 2277 249748 25040
8 2277 226946 11818
9 2277 21121 6741
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 37902 13885 244 361
1 37385 14363 58 302
2 17669 216 184 204
3 19005 4873 289 153
4 9438 102 37 213
5 28753 7599 216 36
6 33482 22602 78 509
7 22595 9599 247 161
8 11887 3536 246 81
9 14490 4708 39 37
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 299 1 24181
1 149 1 17728
2 304 1 4033
3 131 2 1680
4 108 1 664
5 174 1 20760
6 76 1 12088
7 90 1 72724
8 100 3 1894
9 49 5 5437
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 2054 2298 3 9
1 646 2075 0 9
2 900 1465 0 9
3 0 214 1 9
4 664 89 0 9
5 0 1621 2 5
6 638 838 3 5
7 4467 1048 2 5
8 486 197 2 5
9 552 559 0 5
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 36 2 0 14 False
1 26 8 5 10 False
2 26 4 4 14 False
3 21 3 2 11 False
4 80 3 9 37 False
5 29 1 2 11 True
6 41 6 9 8 True
7 33 3 6 8 True
8 31 3 0 10 True
9 89 9 14 35 True ,
assists baronKills bountyLevel champLevel championName \
0 1 0 1 10 Fiora
1 3 0 0 9 XinZhao
2 1 0 0 11 Lucian
3 1 0 0 8 Xayah
4 2 0 0 7 Leona
5 0 0 0 12 Trundle
6 7 0 1 10 Hecarim
7 1 0 1 11 Yone
8 5 0 7 10 Veigar
9 7 0 4 8 Ahri
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 308 308 308
1 0 2001 0
2 0 0 0
3 0 0 0
4 0 0 0
5 8860 19602 8860
6 0 11023 0
7 1110 1110 1110
8 0 2124 0
9 0 963 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 6 2 0 False False
1 4 1 0 False True
2 2 3 0 False False
3 5 3 0 False False
4 6 0 0 False False
5 3 0 0 False False
6 0 2 2 False False
7 1 0 0 False False
8 2 0 0 False False
9 1 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 4786 TOP 0
1 True 5187 JUNGLE 0
2 True 5343 MIDDLE 0
3 True 4981 BOTTOM 0
4 True 3624 UTILITY 0
5 True 8360 TOP 1
6 True 6106 JUNGLE 0
7 True 4888 MIDDLE 0
8 True 7116 BOTTOM 0
9 True 5355 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 1055 3057 3123 1018 0 3133 3340
1 1 3115 2031 3047 1052 0 0 3364
2 1 1055 1037 3111 6670 2055 1083 3340
3 1 1055 3006 0 0 0 6671 3340
4 1 2003 1001 1029 3190 3855 0 3340
5 0 1055 3004 3078 1083 3047 0 3340
6 0 3047 6664 2031 3066 0 0 3340
7 0 1055 6670 3006 1053 0 0 3340
8 0 1056 6656 2055 3020 0 0 3340
9 0 3851 6656 2422 0 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 1 0 1
1 0 2 0 1
2 0 1 0 1
3 1 2 2 1
4 0 1 0 1
5 2 7 4 1
6 0 1 0 1
7 0 2 0 1
8 1 8 7 2
9 1 5 4 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 279 287 177
1 435 9431 593
2 664 1398 498
3 463 426 426
4 242 3804 1799
5 495 516 516
6 0 19971 780
7 814 5267 841
8 251 37577 7381
9 413 5876 2995
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 387 0 0
1 3458 68 0
2 737 0 0
3 4900 0 0
4 4722 0 0
5 554 8 0
6 2922 120 0
7 583 0 0
8 892 0 0
9 781 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 34805
1 0 2 37322
2 0 3 41970
3 0 4 31279
4 0 5 4362
5 0 6 69358
6 0 7 71985
7 0 8 33915
8 0 9 8090
9 0 10 1399
physicalDamageDealtToChampions physicalDamageTaken role \
0 3949 8319 SUPPORT
1 3261 9714 SUPPORT
2 5139 3083 DUO
3 4687 2238 SUPPORT
4 1405 2641 SUPPORT
5 7464 9034 DUO
6 2422 11520 SUPPORT
7 3168 6984 SUPPORT
8 879 3924 SUPPORT
9 801 3263 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 1 12 257
1 3 4 8 11 196
2 1 4 1 12 382
3 2 4 2 7 116
4 3 14 2 4 245
5 2 4 4 14 254
6 2 6 10 11 170
7 2 4 2 14 169
8 2 4 3 7 329
9 3 4 2 14 127
summonerName teamEarlySurrendered teamId teamPosition \
0 ladies dm me plz False 100 TOP
1 Snowflakes75 False 100 JUNGLE
2 sanity57 False 100 MIDDLE
3 yovoy6602 False 100 BOTTOM
4 Akame ga Pills False 100 UTILITY
5 SussieAmogus False 200 TOP
6 Coolgum15 False 200 JUNGLE
7 Cheeky Lotus False 200 MIDDLE
8 Rotome False 200 BOTTOM
9 Alece False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 2 937 37350 4784
1 5 937 51412 3936
2 0 937 43368 5638
3 8 937 33306 5114
4 27 937 11946 3523
5 7 937 75720 8438
6 7 937 97551 3487
7 0 937 40348 5174
8 20 937 45667 8261
9 18 937 10831 5559
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 9164 1416 88 42
1 13514 7364 6 256
2 4874 499 139 4
3 7504 643 97 8
4 8816 153 20 40
5 10303 4177 113 133
6 14443 10124 3 139
7 7592 2263 83 43
8 5064 1523 98 28
9 4115 212 5 40
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 122 2 2257
1 81 1 4658
2 62 1 0
3 72 2 1600
4 103 2 3778
5 42 1 5845
6 0 1 5594
7 32 1 1165
8 24 2 0
9 12 1 3555
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 657 457 0 3
1 82 341 0 3
2 0 1053 0 3
3 0 365 0 3
4 318 1452 0 3
5 457 714 3 0
6 284 0 0 0
7 1165 25 0 0
8 0 248 0 0
9 1762 70 0 0
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 4 2 1 3 False
1 6 1 1 1 False
2 13 4 2 8 False
3 12 3 2 7 False
4 15 0 3 6 False
5 9 0 1 5 True
6 11 2 1 5 True
7 11 0 4 5 True
8 5 2 0 4 True
9 14 0 2 9 True ,
assists baronKills bountyLevel champLevel championName \
0 20 0 0 18 Teemo
1 15 0 1 18 Warwick
2 20 0 0 18 Zed
3 18 0 2 18 Jhin
4 31 0 0 17 Leona
5 13 0 0 18 TahmKench
6 18 1 0 18 Hecarim
7 11 0 0 18 Kassadin
8 10 0 0 17 Vayne
9 16 0 0 18 Thresh
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 6954 34577 6954
1 2370 44582 2370
2 5091 5638 5091
3 5991 17372 5991
4 989 1387 989
5 3493 4248 3493
6 0 22052 0
7 445 3805 445
8 1966 10306 1966
9 1521 4198 1521
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 15 1 2 False False
1 3 0 1 False False
2 9 2 0 False False
3 8 0 1 False True
4 8 4 0 True False
5 12 1 0 False False
6 11 1 2 False False
7 16 4 0 False False
8 19 2 0 False False
9 11 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 14747 TOP 1
1 False 22212 JUNGLE 2
2 False 15107 MIDDLE 0
3 False 22804 BOTTOM 2
4 False 11452 UTILITY 1
5 False 13859 TOP 0
6 False 19435 JUNGLE 0
7 False 18712 MIDDLE 0
8 False 14566 BOTTOM 0
9 False 11998 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3089 6656 3157 3020 0 3115 3363
1 0 3193 6632 3065 3053 3153 6333 3340
2 0 6692 6694 3111 6695 6676 1031 3363
3 0 3072 6671 3006 3094 3095 3036 3363
4 0 3860 3190 3193 3109 1031 3111 3364
5 6 3068 3748 0 3075 3065 3111 3364
6 6 3053 6664 3047 3742 3075 6333 3363
7 6 3165 3040 3157 6656 3158 3135 3364
8 6 3153 6672 3006 3124 3033 1053 3363
9 6 3857 3050 3075 3047 3068 3067 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 3 9 3 2
1 3 26 9 2
2 1 5 2 2
3 7 26 6 2
4 0 3 0 1
5 2 6 2 1
6 3 11 3 1
7 5 18 3 2
8 0 3 0 1
9 1 3 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 334 149651 49596
1 1390 75264 24636
2 595 9492 1092
3 604 35467 17154
4 610 10201 8089
5 732 152310 20331
6 455 86906 11616
7 461 181010 53087
8 331 684 683
9 404 39544 13781
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 26422 51 0
1 33723 133 0
2 15546 12 0
3 21289 47 0
4 11582 0 0
5 27363 0 0
6 31248 149 0
7 17595 10 0
8 15619 22 0
9 14702 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 34335
1 0 2 154536
2 0 3 155397
3 0 4 292699
4 0 5 9308
5 0 6 33790
6 0 7 166400
7 0 8 18333
8 0 9 129808
9 0 10 15872
physicalDamageDealtToChampions physicalDamageTaken role \
0 5881 17144 SOLO
1 28360 43511 NONE
2 26998 14816 SOLO
3 74406 13802 CARRY
4 3527 12574 SUPPORT
5 4128 44601 SOLO
6 22432 44709 NONE
7 2303 45917 SOLO
8 14627 25562 CARRY
9 1800 20233 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 8 14 7 4 32
1 6 4 22 11 166
2 6 4 10 14 109
3 7 7 6 4 151
4 7 4 8 3 171
5 3 12 6 4 178
6 10 6 29 11 170
7 7 4 6 12 198
8 7 7 6 4 298
9 6 4 5 14 212
summonerName teamEarlySurrendered teamId teamPosition \
0 Fauqlol False 100 TOP
1 iwouldbangyuumi False 100 JUNGLE
2 DepressedNugget False 100 MIDDLE
3 ThereGoesYourAdc False 100 BOTTOM
4 donut h0les False 100 UTILITY
5 TheNerdTrashKing False 200 TOP
6 Coolgum15 False 200 JUNGLE
7 Art of Ginge False 200 MIDDLE
8 Sign My Petition False 200 BOTTOM
9 NocturnalScarlet False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 103 2790 187558 57801
1 66 2790 249707 56861
2 13 2790 168008 31209
3 68 2790 333653 96521
4 77 2790 26961 11624
5 38 2790 191887 25471
6 42 2790 265733 37985
7 67 2790 200256 56160
8 17 2790 193062 25039
9 42 2790 82473 16780
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 45972 9881 94 720
1 84473 52013 106 696
2 32859 10368 180 243
3 36771 14983 206 380
4 28918 4029 28 131
5 75955 27108 165 320
6 82471 31755 91 284
7 65468 10523 209 240
8 41924 8687 201 27
9 36565 2181 77 116
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 632 1 3571
1 166 1 19907
2 346 1 3118
3 369 4 5486
4 295 5 7451
5 488 1 5786
6 491 1 12425
7 652 1 913
8 663 3 62568
9 332 1 27056
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 2323 2405 4 2
1 3864 7238 1 2
2 3118 2495 2 2
3 4960 1679 3 2
4 7 4761 0 2
5 1011 3991 1 10
6 3935 6513 0 10
7 769 1955 0 10
8 9728 742 1 10
9 1198 1630 0 10
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 67 1 2 13 True
1 29 0 3 14 True
2 73 2 0 17 True
3 43 0 5 12 True
4 78 4 5 32 True
5 13 1 2 2 False
6 36 1 7 10 False
7 24 4 5 7 False
8 22 2 3 10 False
9 76 0 15 30 False ,
assists baronKills bountyLevel champLevel championName \
0 9 0 0 16 Urgot
1 7 1 0 17 Warwick
2 6 1 0 18 Yone
3 10 0 0 18 Ezreal
4 23 0 0 16 Thresh
5 11 0 1 17 Irelia
6 21 1 1 18 Hecarim
7 15 0 2 18 Neeko
8 13 0 8 17 Ashe
9 23 0 1 16 Braum
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 1369 7836 1369
1 4004 18393 4004
2 2255 9211 2255
3 3120 25952 3120
4 1723 5622 1723
5 7287 22215 7287
6 2590 30086 2590
7 8688 16762 8688
8 7859 27549 7859
9 1002 2595 1002
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 10 0 0 False False
1 10 0 1 False False
2 11 0 0 False False
3 6 1 1 False True
4 7 0 0 True False
5 8 0 0 False False
6 6 1 2 False False
7 8 0 1 False False
8 7 0 1 False False
9 6 3 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 True False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 12262 TOP 0
1 False 13401 JUNGLE 0
2 False 12938 MIDDLE 0
3 False 18835 BOTTOM 0
4 False 11228 UTILITY 0
5 False 16003 TOP 0
6 False 17391 JUNGLE 1
7 False 16187 MIDDLE 1
8 False 17544 BOTTOM 1
9 False 10073 UTILITY 1
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 4 1055 3047 3068 3748 6609 1037 3340
1 4 3068 3065 3047 3748 1043 1053 3340
2 4 1055 3026 6673 3031 3006 1043 3340
3 4 3042 3153 6694 3158 6333 6632 3340
4 4 3857 3050 3190 3109 3117 3076 3364
5 0 3153 3026 3047 6673 6333 3082 3340
6 0 3075 6664 3742 3053 3111 1031 3364
7 0 3152 3157 4629 3165 4630 3020 3340
8 0 3031 3006 6672 3085 3153 1018 3340
9 0 3047 3857 3068 3109 3076 1011 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 4 2 1
1 1 7 6 1
2 0 4 0 1
3 3 17 7 3
4 1 3 2 1
5 3 9 3 1
6 1 11 8 2
7 3 11 3 2
8 2 12 8 2
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 450 11504 1959
1 494 68615 13630
2 421 44543 5883
3 940 45128 20111
4 655 26552 14085
5 933 30028 9005
6 1286 73327 9796
7 609 164703 29425
8 435 5212 3812
9 992 27298 11808
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 13516 11 0
1 15808 108 0
2 12956 24 0
3 13590 36 0
4 13598 0 0
5 12748 16 0
6 19951 171 0
7 10778 48 0
8 6034 32 0
9 10803 4 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 138701
1 0 2 72631
2 0 3 158510
3 0 4 202795
4 0 5 9051
5 0 6 164880
6 0 7 159090
7 0 8 19319
8 0 9 214928
9 0 10 11141
physicalDamageDealtToChampions physicalDamageTaken role \
0 17290 23127 SOLO
1 5244 34810 NONE
2 12944 23221 SOLO
3 40374 20957 CARRY
4 1942 15872 SUPPORT
5 22411 23902 SOLO
6 17114 38860 NONE
7 2583 17482 SOLO
8 34751 13984 CARRY
9 2281 19631 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 12 6 4 208
1 24 11 2 4 196
2 8 14 6 4 136
3 6 7 5 4 265
4 5 4 4 14 246
5 6 4 4 12 240
6 7 6 25 11 170
7 7 14 5 4 132
8 6 7 6 4 305
9 3 4 4 14 169
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 xXxMemeManxXx False 100 TOP 30
1 molten maniac False 100 JUNGLE 38
2 Gamehawk False 100 MIDDLE 24
3 Pyromantic32 False 100 BOTTOM 12
4 AcousticLaddy False 100 UTILITY 63
5 alonê False 200 TOP 24
6 Coolgum15 False 200 JUNGLE 38
7 MonitorHead False 200 MIDDLE 79
8 MediumBiggs False 200 BOTTOM 55
9 MProx False 200 UTILITY 53
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 2325 154132 21000
1 2325 162821 19902
2 2325 219692 22946
3 2325 250135 61603
4 2325 39924 16460
5 2325 209558 32092
6 2325 248953 30291
7 2325 185050 33036
8 2325 257996 43304
9 2325 43926 14602
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 38883 5524 162 115
1 52708 24024 41 345
2 37338 9543 195 168
3 37605 12670 213 152
4 31350 5269 34 190
5 40376 11091 204 129
6 59985 26012 72 285
7 30371 4849 159 295
8 20870 4103 232 945
9 31753 3781 44 274
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 342 1 3925
1 308 1 21574
2 333 1 16637
3 198 2 2210
4 256 5 4319
5 357 1 14650
6 293 1 16536
7 332 1 1027
8 201 3 37855
9 193 5 5485
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1750 2239 0 11
1 1027 2089 3 11
2 4117 1159 1 11
3 1116 3057 0 11
4 432 1879 0 11
5 675 3726 3 4
6 3380 1173 1 4
7 1027 2110 4 4
8 4740 851 3 4
9 513 1319 0 4
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 11 0 1 6 False
1 17 0 0 10 False
2 21 0 3 13 False
3 19 2 2 8 False
4 41 1 1 23 False
5 20 0 1 11 True
6 15 2 1 6 True
7 28 1 2 13 True
8 7 0 1 3 True
9 72 3 8 22 True ,
assists baronKills bountyLevel champLevel championName \
0 6 0 11 13 Viego
1 10 0 2 12 LeeSin
2 8 0 2 13 Talon
3 8 0 3 12 Veigar
4 14 0 0 11 Zyra
5 1 0 0 12 Ornn
6 1 0 0 11 Rengar
7 6 0 0 11 AurelionSol
8 2 0 0 12 Tristana
9 9 0 0 10 Rell
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2595 10891 2595
1 0 7292 0
2 2835 3480 2835
3 5083 5179 5083
4 2478 3706 2478
5 1860 3530 1860
6 787 7564 787
7 114 114 114
8 3990 9086 3990
9 72 830 72
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 0 2 0 False False
1 4 1 1 False False
2 4 4 1 False False
3 5 0 0 True False
4 7 2 0 False True
5 6 1 0 False False
6 4 0 1 False False
7 5 4 0 False False
8 11 3 0 False False
9 10 6 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 True False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 11360 TOP 0
1 True 8934 JUNGLE 0
2 True 9126 MIDDLE 0
3 True 10114 BOTTOM 0
4 True 7614 JUNGLE 0
5 True 6627 TOP 0
6 True 6860 JUNGLE 0
7 True 6656 MIDDLE 0
8 True 10705 BOTTOM 0
9 True 5946 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1055 3153 6672 3111 3044 0 3340
1 0 6692 3047 6333 0 0 0 3364
2 0 6693 0 1036 3158 1036 3042 3364
3 0 6655 3157 3020 1056 1058 1058 3340
4 0 3158 3859 6653 1011 1052 1026 3364
5 0 1054 3068 3047 3076 1011 0 3340
6 0 3077 2031 6691 1036 3117 0 3340
7 0 2033 6656 3191 3020 0 0 3340
8 0 3031 6672 3006 3086 1042 0 3340
9 0 3859 3190 3111 2055 3024 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 11 11 3
1 3 8 2 2
2 3 7 2 2
3 1 6 3 1
4 0 4 0 1
5 0 2 0 1
6 1 2 2 1
7 0 3 0 1
8 4 12 3 2
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 0 4299 1402
1 550 20367 1346
2 475 0 0
3 216 68571 11537
4 406 27361 9937
5 341 37753 6823
6 939 17124 474
7 501 46531 9161
8 298 15643 2349
9 350 9138 5478
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 6882 20 0
1 5664 88 0
2 4685 4 0
3 3750 4 0
4 4380 4 0
5 2977 12 0
6 5665 112 0
7 4804 8 0
8 8201 0 0
9 5316 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 87095
1 0 2 58221
2 0 3 66669
3 0 4 8085
4 0 5 2705
5 0 6 37906
6 0 7 77294
7 0 8 6709
8 0 9 62611
9 0 10 4408
physicalDamageDealtToChampions physicalDamageTaken role \
0 18166 9039 SOLO
1 8069 14095 NONE
2 14375 7858 SOLO
3 1038 5277 CARRY
4 1088 7255 SUPPORT
5 3404 16331 SOLO
6 4466 17137 NONE
7 1492 8175 SOLO
8 14508 12161 CARRY
9 1223 11347 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 0 12 2 4 91
1 11 11 3 4 97
2 5 14 3 4 180
3 4 7 3 4 255
4 3 4 3 14 272
5 3 4 2 12 116
6 2 4 13 11 170
7 3 4 4 21 298
8 4 1 4 4 297
9 4 4 5 14 167
summonerName teamEarlySurrendered teamId teamPosition \
0 NivelesPR False 100 TOP
1 Grizzly Jer False 100 JUNGLE
2 Stay Hïgh False 100 MIDDLE
3 All Day Crits False 100 BOTTOM
4 xLoveLieghStoryx False 100 UTILITY
5 WestWing34 False 200 TOP
6 Coolgum15 False 200 JUNGLE
7 KennethLR False 200 MIDDLE
8 Oddpin False 200 BOTTOM
9 Mistzz False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 15 1413 99787 20509
1 12 1413 85800 9743
2 2 1413 69023 15049
3 27 1413 76819 12666
4 27 1413 32953 11829
5 25 1413 87261 10326
6 3 1413 101258 5231
7 30 1413 53532 10944
8 4 1413 87537 18068
9 33 1413 17076 7312
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 16345 8946 119 43
1 21100 7869 7 407
2 13094 1137 115 105
3 9123 1227 132 58
4 11914 279 28 110
5 19867 1434 128 415
6 22895 10056 19 160
7 13815 2015 97 105
8 21053 4085 101 48
9 17322 1653 28 54
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 0 1 8392
1 89 1 7211
2 126 1 2354
3 100 3 162
4 129 4 2885
5 162 1 11601
6 131 1 6839
7 150 1 290
8 271 1 9282
9 209 4 3528
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 940 423 2 1
1 327 1340 0 1
2 674 550 0 1
3 90 95 2 1
4 803 279 1 1
5 98 559 0 5
6 290 92 1 5
7 290 834 0 5
8 1210 690 0 5
9 610 658 0 5
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 22 8 2 8 True
1 10 1 0 4 True
2 22 4 3 13 True
3 11 0 3 6 True
4 39 2 2 17 True
5 15 1 1 6 False
6 3 0 0 3 False
7 25 4 3 10 False
8 11 3 2 8 False
9 19 8 6 11 False ,
assists baronKills bountyLevel champLevel championName \
0 3 0 2 13 Jax
1 6 0 4 11 LeeSin
2 5 0 0 11 Twitch
3 5 0 0 10 Aphelios
4 11 0 1 11 Lulu
5 0 0 0 10 Yone
6 5 0 0 9 Viego
7 1 0 0 11 Vladimir
8 3 0 0 10 Jinx
9 11 0 0 10 Thresh
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 5539 6754 5539
1 31 7157 31
2 2112 2112 2112
3 4386 4386 4386
4 1414 1414 1414
5 271 271 271
6 136 4572 136
7 287 1189 287
8 2759 3923 2759
9 535 1111 535
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 2 1 0 False False
1 4 0 1 False False
2 5 0 0 False False
3 4 1 0 False False
4 3 1 0 False False
5 7 1 0 False False
6 8 0 1 False False
7 6 0 0 False True
8 4 0 0 False False
9 6 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 10115 TOP 0
1 True 8186 JUNGLE 0
2 True 7929 MIDDLE 0
3 True 5097 BOTTOM 0
4 True 6831 UTILITY 0
5 True 5054 TOP 0
6 True 5832 JUNGLE 0
7 True 7953 MIDDLE 0
8 True 7398 BOTTOM 0
9 True 4947 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 2033 3078 3153 3158 3133 1028 3340
1 0 3814 1028 1028 0 3047 6692 3340
2 0 1058 3115 3006 1058 0 1082 3340
3 0 1055 3006 6670 1053 0 0 3340
4 0 3853 6617 3158 2055 3114 0 3364
5 0 1053 6670 2055 1055 3006 1018 3340
6 0 6672 2031 3047 0 0 0 3340
7 0 1082 3152 4629 3158 0 0 3340
8 0 1055 6672 3006 3086 1042 1042 3340
9 0 3855 3190 3117 1028 0 0 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 2 10 8 3
1 3 10 4 2
2 2 7 4 2
3 0 0 0 0
4 0 4 0 1
5 0 1 0 1
6 0 2 0 1
7 2 8 3 2
8 2 7 5 2
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 517 15692 3967
1 371 15727 2255
2 465 11458 3637
3 334 1188 281
4 557 12618 4285
5 319 8126 1187
6 369 4941 434
7 406 41861 9860
8 628 389 109
9 320 6393 3893
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 2058 8 0
1 3756 85 0
2 5485 0 0
3 1662 0 0
4 3075 0 0
5 2126 4 0
6 3490 60 0
7 3043 0 0
8 3604 2 0
9 3115 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 65116
1 0 2 54681
2 0 3 28746
3 0 4 45726
4 0 5 2945
5 0 6 42350
6 0 7 38781
7 0 8 4921
8 0 9 46737
9 0 10 5425
physicalDamageDealtToChampions physicalDamageTaken role \
0 11638 10512 DUO
1 13176 13701 SUPPORT
2 6619 4776 SUPPORT
3 3271 5172 SUPPORT
4 1267 5694 SUPPORT
5 4925 9836 SUPPORT
6 5680 13177 SUPPORT
7 428 10445 SUPPORT
8 8727 5450 SUPPORT
9 1101 7888 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 4 3 14 407
1 14 11 3 4 354
2 4 14 3 4 326
3 3 7 3 4 220
4 3 4 3 14 295
5 2 4 2 14 264
6 9 11 2 4 173
7 3 4 4 14 169
8 3 4 3 7 97
9 4 14 3 4 192
summonerName teamEarlySurrendered teamId teamPosition \
0 MorsTriumphalis False 100 TOP
1 Blind ldiot False 100 JUNGLE
2 toasterbabe False 100 MIDDLE
3 V01DB0RN3 False 100 BOTTOM
4 magical boi False 100 UTILITY
5 Vantom False 200 TOP
6 Oscuro21 False 200 JUNGLE
7 Coolgum15 False 200 MIDDLE
8 Iamtheskyx False 200 BOTTOM
9 mawiooo False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 13 1124 81842 16312
1 10 1124 78047 15779
2 3 1124 46531 13409
3 9 1124 46915 3552
4 32 1124 15820 5808
5 10 1124 51104 6739
6 12 1124 48957 6846
7 4 1124 52973 10853
8 6 1124 53766 9625
9 36 1124 14179 5273
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 13077 2126 112 108
1 18731 7952 2 347
2 10803 1454 80 95
3 7327 1787 81 113
4 8943 3225 15 229
5 12259 1158 100 57
6 17098 5675 5 87
7 15787 8079 82 67
8 9880 2309 85 26
9 11615 777 20 71
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 59 1 1034
1 85 1 7638
2 138 1 6326
3 66 2 0
4 53 5 256
5 149 1 627
6 188 1 5234
7 119 1 6190
8 107 2 6639
9 139 4 2359
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 706 506 2 1
1 347 1273 0 1
2 3153 542 0 1
3 0 493 1 1
4 256 173 0 1
5 627 296 0 4
6 730 430 0 4
7 564 2298 0 4
8 788 825 1 4
9 278 611 0 4
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 9 1 0 4 True
1 13 0 1 6 True
2 6 0 2 2 True
3 11 1 0 6 True
4 23 2 2 9 True
5 8 3 0 5 False
6 8 0 1 5 False
7 8 0 0 6 False
8 5 0 0 4 False
9 9 2 0 8 False ,
assists baronKills bountyLevel champLevel championName \
0 10 0 0 16 Akali
1 5 0 0 14 DrMundo
2 5 0 0 15 Irelia
3 7 0 0 13 Caitlyn
4 16 0 0 12 Blitzcrank
5 3 0 2 14 MasterYi
6 1 0 0 13 Garen
7 7 0 1 15 Vladimir
8 10 0 0 13 Jhin
9 14 0 0 12 Yuumi
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 5507 5507 5507
1 77 15845 77
2 6813 8794 6813
3 5580 7147 5580
4 1326 2089 1326
5 0 6522 0
6 0 0 0
7 0 1663 0
8 0 1165 0
9 0 0 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 3 1 0 False False
1 3 1 2 False False
2 8 0 0 False False
3 3 0 0 False True
4 4 0 0 True False
5 7 1 2 False False
6 10 2 0 False False
7 6 0 0 False False
8 7 0 0 False False
9 5 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 True False False
4 False True False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 12170 TOP 1
1 False 9661 JUNGLE 0
2 False 12853 MIDDLE 0
3 False 12873 BOTTOM 0
4 False 7139 UTILITY 0
5 False 12984 JUNGLE 0
6 False 7048 TOP 0
7 False 10806 MIDDLE 0
8 False 7920 BOTTOM 0
9 False 6121 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3157 1054 3113 4633 4637 3020 3340
1 0 2031 6664 3047 3742 3211 1028 3340
2 0 3123 1037 3153 3047 3078 3044 3340
3 0 6671 3006 3031 3508 1036 1036 3340
4 0 3190 3860 3050 3117 1028 0 3364
5 1 6691 2031 3006 6676 3508 0 3364
6 1 2055 6631 3047 3076 1054 1011 3340
7 1 2420 3152 1082 3158 3916 4629 3340
8 1 6671 1055 3009 3134 1018 0 3340
9 1 3853 6617 3504 0 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 10 8 2
1 0 2 0 1
2 3 11 3 2
3 3 12 5 2
4 0 0 0 0
5 4 12 4 3
6 1 2 2 2
7 1 6 2 2
8 0 1 0 1
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 1101 103511 24602
1 1070 111416 6455
2 341 17646 9601
3 841 758 618
4 844 10042 5679
5 578 3994 26
6 273 282 0
7 658 88482 18580
8 476 6798 503
9 769 9531 6116
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 3709 2 0
1 4198 197 0
2 11083 0 0
3 2856 3 0
4 5401 0 0
5 9324 112 0
6 16653 0 0
7 11182 4 0
8 6660 0 0
9 4296 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 20387
1 0 2 64882
2 0 3 134044
3 0 4 118421
4 0 5 7119
5 0 6 116767
6 0 7 48771
7 0 8 8354
8 0 9 79015
9 0 10 1141
physicalDamageDealtToChampions physicalDamageTaken role \
0 2169 12296 SOLO
1 1981 19683 NONE
2 16990 16521 SOLO
3 17859 8520 CARRY
4 2424 7753 SUPPORT
5 19434 16486 SUPPORT
6 3633 5098 SOLO
7 938 18706 SOLO
8 7334 9048 CARRY
9 973 7002 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 1 12 4 4 286
1 1 4 17 11 141
2 2 14 3 4 196
3 2 4 3 7 513
4 4 4 4 14 423
5 5 4 17 11 253
6 4 4 3 14 30
7 4 4 5 14 169
8 2 7 1 4 65
9 2 4 4 14 127
summonerName teamEarlySurrendered teamId teamPosition \
0 RFT GamerBoyOmg False 100 TOP
1 discreet420 False 100 JUNGLE
2 basedBenji False 100 MIDDLE
3 TheHardSoap False 100 BOTTOM
4 Gäshtëk False 100 UTILITY
5 SussieAmogus False 200 JUNGLE
6 KillCarolBaskiin False 200 TOP
7 Coolgum15 False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 Alece False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 3 1732 128730 27782
1 10 1732 189084 9024
2 18 1732 153806 26862
3 19 1732 120039 18877
4 33 1732 24285 8516
5 10 1732 139113 27144
6 12 1732 50899 5468
7 3 1732 97678 20361
8 20 1732 87454 7838
9 14 1732 11152 7569
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 19405 6614 177 108
1 26342 22489 4 368
2 30325 8051 215 59
3 12209 2450 151 80
4 14581 491 29 123
5 26625 9437 32 110
6 22396 629 104 46
7 30561 17980 153 76
8 16075 1815 129 116
9 11481 14163 7 30
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 40 1 4831
1 72 1 12784
2 248 1 2115
3 65 3 860
4 147 5 7123
5 212 1 18351
6 306 1 1844
7 231 1 842
8 170 3 1640
9 159 5 480
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1010 3399 2 0
1 588 2461 0 0
2 270 2719 2 0
3 400 833 3 0
4 412 1426 1 0
5 7684 814 0 8
6 1834 644 0 8
7 842 673 0 8
8 0 367 0 8
9 480 182 0 8
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 26 1 1 9 True
1 19 2 1 3 True
2 10 0 0 6 True
3 11 0 0 7 True
4 30 3 2 15 True
5 17 1 2 2 False
6 10 3 0 8 False
7 14 0 1 8 False
8 8 0 0 6 False
9 12 0 0 6 False ,
assists baronKills bountyLevel champLevel championName \
0 0 0 0 13 Volibear
1 1 0 0 8 Shaco
2 2 0 0 11 Yone
3 2 0 0 9 Jhin
4 2 0 1 9 Senna
5 6 0 0 13 Malphite
6 5 0 0 10 Warwick
7 2 0 6 11 Leblanc
8 7 0 7 11 Caitlyn
9 9 0 0 11 Blitzcrank
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2126 3966 2126
1 0 1346 0
2 1324 1324 1324
3 0 886 0
4 0 178 0
5 1349 1349 1349
6 0 21127 0
7 2570 2570 2570
8 7352 7352 7352
9 1161 1161 1161
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 6 0 0 False False
1 4 1 0 True False
2 3 0 0 False True
3 7 0 0 False False
4 3 0 0 False False
5 4 0 0 False False
6 4 2 2 False False
7 1 4 0 False False
8 1 3 0 False False
9 2 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False True False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 7736 TOP 0
1 True 5378 JUNGLE 0
2 True 6808 MIDDLE 0
3 True 5495 BOTTOM 0
4 True 5631 UTILITY 0
5 True 6481 TOP 0
6 True 6893 JUNGLE 1
7 True 7724 MIDDLE 0
8 True 10147 BOTTOM 0
9 True 6894 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 1056 3157 6664 3158 1033 1028 3340
1 1 6691 2031 3006 1036 0 0 3364
2 1 1055 6673 1018 3006 1037 0 3340
3 1 2031 6671 1055 1001 1036 0 3340
4 1 3864 6672 0 2422 0 0 3364
5 0 3068 2033 1001 3076 1033 0 3340
6 0 3077 3044 3047 3067 0 3057 3364
7 0 6655 3191 3020 0 1082 2055 3340
8 0 6671 1055 3006 3095 1037 0 3363
9 0 3860 1029 3050 3111 3067 2055 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 4 2 1
1 1 2 2 1
2 0 3 0 1
3 0 1 0 1
4 0 2 0 1
5 0 2 0 1
6 1 4 2 1
7 1 7 6 1
8 1 7 7 2
9 1 3 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 389 56745 4000
1 486 24891 3003
2 343 8287 1201
3 319 4402 228
4 479 0 0
5 352 38555 7303
6 324 27950 3421
7 216 40169 6656
8 326 3571 1509
9 540 5410 2932
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 9317 12 0
1 2299 62 0
2 4189 4 0
3 4680 0 0
4 1548 0 0
5 3894 0 0
6 2185 89 0
7 1285 0 0
8 1246 4 0
9 753 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 33367
1 0 2 23275
2 0 3 52939
3 0 4 40161
4 0 5 14051
5 0 6 13966
6 0 7 40241
7 0 8 7914
8 0 9 112678
9 0 10 7488
physicalDamageDealtToChampions physicalDamageTaken role \
0 5083 7238 NONE
1 1939 10849 NONE
2 4021 5425 SOLO
3 3176 6622 CARRY
4 6070 4376 SUPPORT
5 1250 5573 SOLO
6 2935 17483 NONE
7 831 5143 SOLO
8 13696 8335 CARRY
9 1956 7576 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 3 12 133
1 3 4 12 11 253
2 4 14 2 4 97
3 3 4 3 7 169
4 2 4 0 14 127
5 4 4 4 14 246
6 3 4 11 11 169
7 5 14 3 4 74
8 4 7 3 4 98
9 4 14 3 4 221
summonerName teamEarlySurrendered teamId teamPosition \
0 Dehydratıon False 100 TOP
1 SussieAmogus False 100 JUNGLE
2 Trillies False 100 MIDDLE
3 Coolgum15 False 100 BOTTOM
4 Alece False 100 UTILITY
5 Bronk False 200 TOP
6 trolatree False 200 JUNGLE
7 ItForks False 200 MIDDLE
8 KrombopuIos False 200 BOTTOM
9 Diamond Dropout False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 19 1212 95323 9084
1 21 1212 52365 5683
2 6 1212 62674 6670
3 8 1212 44563 3404
4 24 1212 15762 6070
5 22 1212 57894 9151
6 14 1212 78742 7006
7 11 1212 48759 8164
8 18 1212 122471 15541
9 23 1212 18064 5351
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 17472 2065 128 236
1 13482 3721 6 504
2 10149 1788 101 48
3 11893 1175 103 80
4 6272 2530 18 99
5 9468 1171 99 368
6 20096 12553 12 165
7 7351 412 92 17
8 10057 3407 162 102
9 8691 479 37 84
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 191 1 5210
1 89 1 4198
2 70 1 1447
3 129 1 0
4 71 4 1710
5 107 1 5373
6 84 1 10550
7 12 1 676
8 12 2 6222
9 37 3 5165
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 917 1 5
1 740 333 0 5
2 1447 534 0 5
3 0 589 0 5
4 0 348 0 5
5 598 0 0 1
6 650 427 0 1
7 676 922 1 1
8 336 476 4 1
9 462 361 0 1
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 3 0 0 3 False
1 14 1 1 1 False
2 14 0 5 5 False
3 8 0 1 4 False
4 20 0 4 6 False
5 6 0 0 5 True
6 16 2 0 6 True
7 19 5 1 10 True
8 9 3 0 7 True
9 18 3 1 10 True ,
assists baronKills bountyLevel champLevel championName \
0 0 0 0 11 Yorick
1 3 0 0 11 Nocturne
2 0 0 1 13 Veigar
3 0 0 0 10 KogMaw
4 4 0 0 9 Lulu
5 1 0 3 14 Volibear
6 1 0 3 10 Pantheon
7 0 0 1 12 Vladimir
8 6 0 1 10 Caitlyn
9 2 0 0 8 Zyra
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 0 0 0
1 0 9389 0
2 1550 1869 1550
3 1431 1431 1431
4 529 529 529
5 2759 4533 2759
6 0 3301 0
7 997 1175 997
8 1501 2508 1501
9 200 356 200
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 1 0 False False
1 2 3 1 False False
2 0 2 0 False False
3 3 0 0 False False
4 3 1 0 False False
5 1 0 0 False True
6 1 0 1 False False
7 1 0 0 False False
8 1 0 0 False False
9 2 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 5694 TOP 0
1 True 6634 JUNGLE 0
2 True 6307 MIDDLE 0
3 True 6953 BOTTOM 0
4 True 4962 UTILITY 0
5 True 9065 TOP 0
6 True 6709 JUNGLE 0
7 True 5825 MIDDLE 0
8 True 6162 BOTTOM 0
9 True 4967 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 6632 1036 2010 3047 1028 2055 3340
1 0 6631 0 2031 1036 0 3158 3364
2 0 6656 3020 3191 0 1056 0 3340
3 0 1055 3006 6672 6677 1042 1018 3340
4 0 3853 3111 6617 1004 1052 0 3364
5 0 1055 6662 3047 3742 3211 0 3340
6 0 6692 2031 3111 1037 0 0 3340
7 0 2031 3152 1082 3158 3108 0 3340
8 0 1055 1036 2055 6692 3158 1036 3340
9 0 3020 4005 3853 3916 0 0 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 0 1 0 1
1 0 0 0 0
2 0 1 0 1
3 1 4 2 2
4 0 0 0 0
5 2 7 4 1
6 1 4 3 1
7 0 1 0 1
8 0 1 0 1
9 0 2 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 205 8819 4106
1 441 10775 484
2 0 73825 9782
3 477 9305 5216
4 811 10253 3979
5 676 65963 6595
6 358 7024 534
7 857 51953 6243
8 527 331 261
9 525 13215 5876
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 6264 0 0
1 4423 138 0
2 4571 0 0
3 2238 0 0
4 3295 0 0
5 4798 0 0
6 3670 82 0
7 8811 4 0
8 4012 0 0
9 4136 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 35206
1 0 2 106737
2 0 3 10861
3 0 4 43896
4 0 5 2523
5 0 6 42134
6 0 7 65946
7 0 8 9394
8 0 9 61356
9 0 10 969
physicalDamageDealtToChampions physicalDamageTaken role \
0 4634 9460 SOLO
1 5037 15770 NONE
2 280 1338 SOLO
3 2507 7694 CARRY
4 447 3997 SUPPORT
5 8254 10817 SOLO
6 5681 10387 NONE
7 144 5755 SOLO
8 6768 3432 CARRY
9 460 3056 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 12 3 4 120
1 2 4 8 11 221
2 2 4 2 12 216
3 3 7 2 4 278
4 2 3 2 4 243
5 2 4 2 12 38
6 13 11 3 4 190
7 2 4 1 14 169
8 2 4 2 7 248
9 3 4 2 14 307
summonerName teamEarlySurrendered teamId teamPosition \
0 OccupiedUnicorn False 100 TOP
1 MysticJarro False 100 JUNGLE
2 FrostyxD False 100 MIDDLE
3 PapaCaesars False 100 BOTTOM
4 KingThicc False 100 UTILITY
5 King Spookington False 200 TOP
6 Layup False 200 JUNGLE
7 Coolgum15 False 200 MIDDLE
8 1800Headslaps False 200 BOTTOM
9 Simply Leafy False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 6 1246 49659 8741
1 55 1246 123678 5694
2 9 1246 88206 10063
3 6 1246 63207 8265
4 23 1246 19011 4427
5 23 1246 115083 14850
6 10 1246 83387 6882
7 2 1246 61463 6503
8 2 1246 65916 7253
9 20 1246 14349 6501
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 15811 2537 99 104
1 20449 12415 13 419
2 6022 933 140 98
3 10278 2651 121 96
4 7663 1530 17 186
5 15965 4585 148 984
6 14057 7545 16 128
7 14739 10601 124 59
8 7540 2447 110 17
9 7288 445 8 157
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 185 1 5632
1 44 1 6166
2 0 1 3520
3 68 2 10006
4 89 3 6235
5 32 1 6985
6 12 1 10417
7 32 1 116
8 16 2 4228
9 41 1 164
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 85 0 1
1 172 255 0 1
2 0 112 0 1
3 540 345 0 1
4 0 369 0 1
5 0 350 1 1
6 666 0 0 1
7 116 172 0 1
8 223 95 0 1
9 164 95 0 1
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 12 2 0 7 False
1 24 3 4 4 False
2 7 2 1 2 False
3 9 0 1 6 False
4 28 1 2 10 False
5 13 0 3 6 True
6 9 0 0 5 True
7 10 0 1 6 True
8 3 1 0 2 True
9 20 0 1 13 True ,
assists baronKills bountyLevel champLevel championName \
0 6 0 2 18 Garen
1 9 1 0 15 Elise
2 15 0 2 18 Yone
3 13 0 0 16 Samira
4 6 0 0 14 Velkoz
5 4 0 0 16 Mordekaiser
6 9 0 0 17 FiddleSticks
7 9 0 0 16 Vladimir
8 5 0 0 16 Draven
9 13 0 1 15 Xerath
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 9227 9227 9227
1 2362 33167 2362
2 3631 17539 3631
3 3340 6767 3340
4 1704 4263 1704
5 975 2600 975
6 0 10222 0
7 2294 4611 2294
8 919 8026 919
9 686 1816 686
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 4 1 0 True False
1 7 0 2 False True
2 6 0 1 True False
3 7 3 0 False False
4 4 7 0 False False
5 9 0 0 False False
6 8 1 1 False False
7 10 0 0 False False
8 4 0 1 False False
9 2 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False True False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 14995 TOP 0
1 False 12112 JUNGLE 1
2 False 18386 MIDDLE 1
3 False 11186 BOTTOM 1
4 False 9451 UTILITY 0
5 False 12436 TOP 0
6 False 14309 JUNGLE 0
7 False 11333 MIDDLE 0
8 False 13547 BOTTOM 0
9 False 9889 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1054 4401 6631 3111 3053 3211 3340
1 0 3111 6653 3165 1058 3102 2055 3364
2 0 3072 6673 1031 3006 3031 6333 3340
3 0 1055 3006 6676 6673 3123 1042 3340
4 0 3853 3157 2055 3020 6653 3145 3364
5 3 4637 6662 3075 3047 3191 3108 3340
6 3 3152 3117 3157 4629 3165 1058 3330
7 3 3157 3152 1082 3158 4629 1052 3340
8 3 3031 2033 6673 6676 3035 3006 3340
9 3 6655 3853 3020 2420 4628 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 3 8 4 2
1 2 7 2 1
2 3 13 7 2
3 0 1 0 1
4 1 4 2 1
5 2 5 2 1
6 3 11 4 2
7 1 4 2 2
8 1 5 4 1
9 0 3 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 927 0 0
1 571 118492 14877
2 665 38826 9244
3 675 7651 1230
4 864 41261 11437
5 660 120463 17203
6 492 171083 22981
7 383 125296 15151
8 846 4 4
9 1143 101524 33649
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 18420 20 0
1 17115 117 0
2 24188 47 0
3 21884 16 0
4 8948 4 0
5 8744 7 0
6 12333 168 0
7 10941 4 0
8 6616 8 0
9 1461 8 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 130080
1 0 2 21324
2 0 3 217529
3 0 4 94304
4 0 5 5074
5 0 6 21004
6 0 7 9647
7 0 8 10716
8 0 9 146416
9 0 10 5710
physicalDamageDealtToChampions physicalDamageTaken role \
0 11575 15757 SOLO
1 674 15464 NONE
2 33557 8672 SOLO
3 7116 7882 CARRY
4 197 5135 SUPPORT
5 2956 20632 SOLO
6 102 24440 NONE
7 726 18726 SOLO
8 15416 9622 CARRY
9 207 7943 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 7 14 5 4 211
1 17 11 2 4 247
2 7 14 7 4 384
3 5 7 5 4 174
4 4 4 1 14 264
5 5 4 4 12 91
6 17 11 5 4 418
7 5 4 4 14 169
8 5 7 5 4 210
9 1 14 4 4 172
summonerName teamEarlySurrendered teamId teamPosition \
0 Sir Kumcision False 100 TOP
1 Coach Jake False 100 JUNGLE
2 ggezreee False 100 MIDDLE
3 Somebotty False 100 BOTTOM
4 DåwnDiå False 100 UTILITY
5 LilIntroV3rt False 200 TOP
6 That Guy Jay 725 False 200 JUNGLE
7 Coolgum15 False 200 MIDDLE
8 Viriliter Lupus False 200 BOTTOM
9 OrphanSmasher False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 28 2204 136585 17121
1 20 2204 163205 15936
2 41 2204 262753 48204
3 3 2204 110785 8430
4 19 2204 51219 13639
5 11 2204 149477 20239
6 61 2204 187276 24055
7 5 2204 139285 16544
8 8 2204 149102 15661
9 36 2204 118618 34220
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 34798 6036 193 142
1 32924 18097 24 149
2 33589 11562 215 200
3 29766 7712 167 25
4 14735 2062 45 141
5 33980 6352 207 842
6 40802 16411 40 1034
7 32152 21040 164 107
8 17627 5774 217 112
9 10321 1730 59 261
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 162 1 6504
1 235 1 23388
2 223 1 6398
3 250 3 8830
4 167 1 4883
5 341 1 8009
6 299 1 6546
7 378 1 3271
8 144 2 2681
9 81 1 11384
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 5546 620 4 3
1 384 343 1 3
2 5402 728 2 3
3 84 0 1 3
4 2005 652 0 3
5 79 4604 1 9
6 972 4028 0 9
7 666 2484 1 9
8 239 1388 0 9
9 364 916 0 9
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 39 1 1 13 True
1 17 1 4 2 True
2 21 0 0 12 True
3 25 3 0 14 True
4 62 8 3 26 True
5 14 0 0 9 False
6 62 2 8 1 False
7 21 0 0 12 False
8 9 0 0 6 False
9 70 2 6 32 False ,
assists baronKills bountyLevel champLevel championName \
0 4 0 0 9 Caitlyn
1 4 0 0 9 Pyke
2 1 0 0 13 Nasus
3 4 0 0 11 Hecarim
4 2 0 0 12 Vladimir
5 7 0 5 10 MissFortune
6 6 0 4 13 Gangplank
7 7 0 0 11 LeeSin
8 16 0 1 11 Seraphine
9 5 0 0 13 Volibear
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 681 681 681
1 414 414 414
2 10547 10547 10547
3 0 947 0
4 268 268 268
5 5701 7316 5701
6 6511 6511 6511
7 1358 8393 1358
8 3646 4404 3646
9 9922 9922 9922
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 8 1 0 False True
1 10 2 0 True False
2 4 0 0 False False
3 4 0 0 False False
4 4 0 0 False False
5 3 0 0 False False
6 2 0 0 False False
7 3 2 2 False False
8 2 2 0 False False
9 4 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False True False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 5558 BOTTOM 0
1 False 6519 UTILITY 0
2 False 7141 TOP 0
3 False 7117 JUNGLE 0
4 False 7078 MIDDLE 0
5 False 8745 BOTTOM 0
6 False 8822 MIDDLE 0
7 False 8268 JUNGLE 0
8 False 8166 UTILITY 0
9 False 10740 TOP 2
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 2 1042 6672 3006 0 0 0 3340
1 2 3134 6691 0 3117 0 3855 3364
2 2 1054 2031 6632 3111 1037 0 3340
3 2 2031 6664 3158 3066 1031 1028 3340
4 2 2031 3152 1082 3158 3108 1028 3340
5 0 1055 6671 3006 2003 3134 1018 3340
6 0 1055 1018 3508 3158 3123 1038 3340
7 0 2031 6692 3047 3071 0 0 3340
8 0 3853 3011 3114 3070 4005 3158 3364
9 0 1056 3115 4633 1058 3009 0 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 0 2 0 1
1 0 4 0 1
2 0 1 0 1
3 0 3 0 1
4 1 3 2 1
5 2 8 5 2
6 1 4 4 1
7 2 8 6 2
8 1 3 2 1
9 3 7 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 195 408 157
1 245 0 0
2 267 12344 1569
3 536 20463 1873
4 668 56985 8260
5 349 1914 492
6 310 3475 1565
7 675 12840 1211
8 534 33940 9773
9 393 82520 9953
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 4449 0 0
1 5632 0 0
2 4648 0 0
3 4924 87 0
4 4606 0 0
5 846 8 0
6 5562 12 0
7 1942 70 0
8 894 0 0
9 3612 12 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 25376
1 0 2 9739
2 0 3 74887
3 0 4 61549
4 0 5 7407
5 0 6 41477
6 0 7 104007
7 0 8 41090
8 0 9 6818
9 0 10 31050
physicalDamageDealtToChampions physicalDamageTaken role \
0 4294 6087 CARRY
1 5003 8626 SUPPORT
2 3811 10576 SOLO
3 4659 15649 NONE
4 343 13623 SOLO
5 6040 5865 CARRY
6 8666 5389 SOLO
7 7826 11873 NONE
8 2142 4847 SUPPORT
9 10466 10835 NONE
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 4 2 7 106
1 4 4 5 14 32
2 2 4 2 12 276
3 2 6 9 11 34
4 4 4 4 14 169
5 3 7 2 4 441
6 2 4 3 14 196
7 3 4 12 11 151
8 4 4 5 14 312
9 5 14 2 4 295
summonerName teamEarlySurrendered teamId teamPosition \
0 Its His Fault False 100 BOTTOM
1 Its Her Fault False 100 UTILITY
2 WatchTheShadows False 100 TOP
3 Madremae False 100 JUNGLE
4 Coolgum15 False 100 MIDDLE
5 Poyo Poyo False 200 BOTTOM
6 IBuySausge False 200 MIDDLE
7 Inkindle False 200 JUNGLE
8 Chancey08 False 200 UTILITY
9 jason44455544 False 200 TOP
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 7 1259 25784 4451
1 19 1259 14639 5313
2 10 1259 89951 5381
3 20 1259 88087 6715
4 2 1259 66260 8961
5 3 1259 43392 6532
6 5 1259 112945 11245
7 7 1259 58823 9097
8 23 1259 43052 12639
9 27 1259 114468 21284
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 10759 1649 58 22
1 15037 1717 25 61
2 15434 0 134 71
3 21428 8145 29 168
4 18825 10549 114 62
5 6899 1297 75 58
6 11193 2776 137 242
7 16054 5868 9 229
8 5821 1202 28 165
9 14552 4054 140 111
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 159 3 0
1 179 1 4900
2 81 0 2720
3 56 1 6075
4 98 1 1868
5 39 2 0
6 37 1 5461
7 51 1 4892
8 37 5 2294
9 108 1 897
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 222 0 10
1 310 779 0 10
2 0 210 3 10
3 183 855 0 10
4 358 595 0 10
5 0 188 3 3
6 1013 242 1 3
7 60 2238 1 3
8 724 79 2 3
9 864 104 3 3
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 6 1 1 6 False
1 12 3 1 44 False
2 9 0 0 6 False
3 7 0 0 4 False
4 7 0 0 5 False
5 14 0 3 5 True
6 4 0 0 3 True
7 14 2 0 8 True
8 26 3 0 10 True
9 8 0 0 7 True ,
assists baronKills bountyLevel champLevel championName \
0 19 0 0 16 Malphite
1 24 3 0 18 Lillia
2 10 0 0 18 Ekko
3 10 0 0 18 Lucian
4 31 0 0 16 Karma
5 7 0 2 17 Chogath
6 16 0 0 18 Volibear
7 14 0 0 18 Vladimir
8 17 0 5 18 Ashe
9 27 0 0 17 Zilean
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2658 10460 2658
1 167 60196 167
2 2746 5882 2746
3 14763 35063 14763
4 739 3588 739
5 6310 12235 6310
6 2112 13028 2112
7 3180 3413 3180
8 9425 15271 9425
9 2309 3603 2309
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 11 0 0 False False
1 12 0 3 False False
2 11 0 0 False False
3 7 4 0 False True
4 15 0 0 True False
5 10 3 0 False False
6 10 4 1 False False
7 9 0 0 False False
8 12 0 1 False False
9 12 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False True False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 12011 TOP 0
1 False 18195 JUNGLE 0
2 False 15399 MIDDLE 0
3 False 21829 BOTTOM 2
4 False 12210 UTILITY 0
5 False 12271 TOP 0
6 False 16649 JUNGLE 0
7 False 16004 MIDDLE 0
8 False 20648 BOTTOM 1
9 False 11899 JUNGLE 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 3075 3068 3111 3001 3082 1029 3340
1 1 3157 4637 4629 3165 3158 6653 3364
2 1 3152 3157 3165 3100 3020 1058 3340
3 1 6694 6672 3508 3006 3031 3033 3363
4 1 3853 6617 6616 3158 3011 3504 3364
5 2 3067 6662 3047 3075 4401 3801 3340
6 2 6664 3742 3111 4401 3075 3065 3340
7 2 3157 3152 3089 3020 3067 3135 3340
8 2 3031 3085 3006 6672 3033 3153 3363
9 2 3853 3157 3020 4005 3165 3916 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 5 2 1
1 4 11 3 1
2 3 12 5 2
3 4 20 8 4
4 1 4 2 1
5 2 6 2 1
6 1 10 6 2
7 3 13 5 2
8 6 22 5 2
9 0 5 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 702 62076 22105
1 421 184105 41319
2 712 113998 24006
3 528 4292 1479
4 283 27136 11931
5 442 105262 10149
6 414 137686 8200
7 513 179131 45404
8 279 5135 4277
9 433 66541 15847
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 15957 8 0
1 22317 197 0
2 21178 12 0
3 9865 36 0
4 19930 0 0
5 21905 11 0
6 19442 160 0
7 30664 1 0
8 13933 8 0
9 16841 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 37092
1 0 2 25667
2 0 3 20736
3 0 4 280255
4 0 5 6783
5 0 6 34266
6 0 7 83383
7 0 8 10263
8 0 9 192730
9 0 10 3474
physicalDamageDealtToChampions physicalDamageTaken role \
0 4570 14813 SOLO
1 1833 27630 NONE
2 3451 19187 SOLO
3 52902 16079 CARRY
4 1648 12359 SUPPORT
5 2014 20075 SOLO
6 12678 32722 NONE
7 2227 16178 SOLO
8 42855 16114 CARRY
9 1070 12508 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 3 12 89
1 7 4 23 11 495
2 5 14 4 4 143
3 5 4 6 7 559
4 3 4 1 14 38
5 5 4 6 12 115
6 22 11 5 4 140
7 6 4 8 14 169
8 6 7 6 4 142
9 6 4 8 14 140
summonerName teamEarlySurrendered teamId teamPosition \
0 secondderek False 100 TOP
1 coached False 100 JUNGLE
2 Bruhadd False 100 MIDDLE
3 Ohani False 100 BOTTOM
4 NotLaborious False 100 UTILITY
5 WestWing34 False 200 TOP
6 Edubtha Sahluur False 200 JUNGLE
7 Coolgum15 False 200 MIDDLE
8 Tijke False 200 BOTTOM
9 LittleFoot False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 51 2284 102688 26675
1 44 2284 280015 55618
2 12 2284 138163 28138
3 10 2284 308408 58936
4 29 2284 34566 13884
5 70 2284 161512 15675
6 38 2284 230109 22936
7 7 2284 198049 49161
8 75 2284 229216 52387
9 19 2284 71149 18052
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 35603 2064 123 461
1 54706 17856 50 638
2 42880 8846 145 279
3 26680 6011 263 137
4 32935 9184 20 177
5 47256 9258 180 1693
6 57393 19572 51 628
7 49745 38664 193 125
8 32378 2670 195 840
9 31617 12143 55 109
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 436 1 3520
1 470 1 70243
2 404 1 3429
3 216 3 23859
4 465 5 646
5 358 1 21984
6 348 1 9040
7 386 1 8655
8 372 3 31350
9 403 3 1134
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 4832 0 8
1 12465 4758 0 8
2 680 2514 2 8
3 4553 736 6 8
4 304 645 0 8
5 3512 5274 2 9
6 2058 5228 3 9
7 1530 2902 1 9
8 5254 2331 1 9
9 1134 2267 1 9
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 24 0 3 12 False
1 25 0 4 2 False
2 16 0 1 8 False
3 55 4 3 14 False
4 54 0 6 23 False
5 19 4 1 11 True
6 39 4 2 15 True
7 13 0 1 9 True
8 21 0 0 13 True
9 73 1 5 26 True ,
assists baronKills bountyLevel champLevel championName \
0 6 0 0 16 Akali
1 4 0 0 13 FiddleSticks
2 9 0 0 15 Diana
3 10 0 0 15 Ezreal
4 16 0 0 13 Braum
5 16 0 2 17 Shyvana
6 7 0 0 16 Viego
7 7 0 0 17 Vladimir
8 11 0 6 15 Caitlyn
9 11 0 0 13 Leona
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2188 2463 2188
1 0 11636 0
2 247 401 247
3 4276 4743 4276
4 525 525 525
5 7447 11074 7447
6 7827 28228 7827
7 4471 8816 4471
8 5383 16482 5383
9 653 2018 653
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 10 0 0 False False
1 10 0 0 False False
2 10 0 0 False False
3 4 3 1 False False
4 6 2 0 False False
5 7 1 1 False True
6 7 0 2 False False
7 6 0 0 False False
8 3 1 0 False False
9 4 3 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 12089 TOP 0
1 False 8805 JUNGLE 0
2 False 10782 MIDDLE 0
3 False 14504 BOTTOM 0
4 False 9498 UTILITY 0
5 False 13588 TOP 0
6 False 14744 JUNGLE 2
7 False 13880 MIDDLE 1
8 False 13327 BOTTOM 0
9 False 8105 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 3 4637 3068 3020 3748 3076 0 3364
1 3 2423 3165 6653 3020 3191 0 3330
2 3 3165 4636 3020 3100 0 0 3340
3 3 3156 3508 3158 3036 3123 6691 3363
4 3 3860 1011 6662 3075 3047 1057 3364
5 0 1054 3157 3009 6656 4629 3041 3364
6 0 3006 6672 6676 3153 6333 1033 3340
7 0 1082 3152 3135 3020 3065 1058 3340
8 0 6672 3094 3036 1055 0 3006 3340
9 0 3860 3190 3050 1006 3117 3067 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 6 2 1
1 0 1 0 1
2 1 7 2 2
3 2 10 6 1
4 0 3 0 1
5 3 8 2 2
6 3 10 5 3
7 3 9 4 2
8 3 10 6 2
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 342 91226 17699
1 363 127866 5045
2 355 112520 25344
3 1092 21387 10714
4 668 23960 10394
5 498 123091 22839
6 551 15287 2908
7 656 145356 31275
8 541 4310 2042
9 508 8243 3206
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 15526 9 0
1 9307 115 0
2 13792 4 0
3 9697 8 1
4 16976 0 0
5 18341 20 0
6 14386 162 0
7 21015 5 0
8 9094 12 0
9 8682 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 26537
1 0 2 10895
2 0 3 14549
3 0 4 130586
4 0 5 5527
5 0 6 27176
6 0 7 147275
7 0 8 13028
8 0 9 125693
9 0 10 7176
physicalDamageDealtToChampions physicalDamageTaken role \
0 2526 17166 SOLO
1 77 26649 NONE
2 2307 15678 SOLO
3 26816 7878 CARRY
4 1077 8643 SUPPORT
5 3735 14921 SOLO
6 13778 19391 NONE
7 1253 17380 SOLO
8 21027 6122 CARRY
9 1496 6936 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 12 5 14 31
1 4 4 18 11 84
2 2 12 5 4 159
3 4 7 4 4 368
4 5 4 7 14 317
5 6 12 5 4 37
6 5 4 13 11 31
7 5 4 5 14 169
8 4 7 4 4 348
9 4 4 6 14 115
summonerName teamEarlySurrendered teamId teamPosition \
0 L9 Yuumi Abuser False 100 TOP
1 GG TrixXx False 100 JUNGLE
2 GG Slaygon False 100 MIDDLE
3 GG Wildfire False 100 BOTTOM
4 Rellzoxo False 100 UTILITY
5 SlopyPoppy False 200 TOP
6 ssentaii False 200 JUNGLE
7 Coolgum15 False 200 MIDDLE
8 Cômfortable False 200 BOTTOM
9 WestWing34 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1 2061 132845 21068
1 20 2061 154044 5490
2 9 2061 127070 27651
3 2 2061 170813 38006
4 37 2061 36306 12710
5 21 2061 150709 27015
6 14 2061 182055 18302
7 6 2061 164492 33663
8 23 2061 141265 25479
9 42 2061 20945 5515
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 34437 2706 163 74
1 36649 18723 21 862
2 31477 2908 138 52
3 18338 5241 189 67
4 26827 2088 43 386
5 33747 3602 159 98
6 34269 16007 21 215
7 39431 36832 188 136
8 15300 4698 176 78
9 16447 3399 37 77
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 280 1 15082
1 216 1 15281
2 343 1 0
3 121 2 18840
4 160 4 6817
5 250 1 440
6 245 1 19493
7 177 1 6106
8 84 3 11261
9 96 4 5525
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 842 1744 0 11
1 367 692 0 11
2 0 2006 0 11
3 476 762 2 11
4 1238 1208 0 11
5 440 484 4 3
6 1615 491 2 3
7 1135 1035 2 3
8 2409 84 2 3
9 812 828 1 3
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 10 0 1 4 False
1 19 0 1 0 False
2 15 0 1 8 False
3 30 5 2 13 False
4 63 5 6 25 False
5 25 1 2 9 True
6 21 1 0 9 True
7 20 0 1 10 True
8 24 1 2 12 True
9 60 3 6 28 True ,
assists baronKills bountyLevel champLevel championName \
0 1 0 0 11 MonkeyKing
1 3 0 0 8 Nunu
2 0 0 0 11 Ezreal
3 1 0 0 9 Yasuo
4 5 0 0 9 Nautilus
5 1 0 1 12 Nasus
6 5 0 0 11 Qiyana
7 3 0 9 13 LeeSin
8 6 0 0 10 Teemo
9 7 0 0 9 Janna
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 438 438 438
1 0 1380 0
2 1130 1420 1130
3 0 0 0
4 0 0 0
5 4687 4687 4687
6 1495 1495 1495
7 2363 5710 2363
8 226 1941 226
9 1035 1961 1035
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 4 1 0 False False
1 4 0 0 False False
2 8 1 0 False False
3 2 0 0 False False
4 2 1 0 False False
5 2 0 0 False False
6 3 2 0 True False
7 1 3 1 False True
8 2 0 0 False False
9 2 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 4782 TOP 0
1 True 4269 JUNGLE 0
2 True 5747 MIDDLE 0
3 True 7013 BOTTOM 0
4 True 4302 UTILITY 0
5 True 6751 TOP 0
6 True 7253 MIDDLE 0
7 True 9899 JUNGLE 0
8 True 4300 BOTTOM 0
9 True 4877 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1001 2031 3078 1029 0 0 3340
1 0 6660 2031 3047 1029 1033 0 3340
2 0 1055 2003 3134 3508 1001 0 3340
3 0 1054 1043 6662 3006 1053 0 3340
4 0 3860 3105 6660 3117 2055 0 3364
5 0 1054 6632 3110 0 2422 0 3340
6 0 6693 0 3158 3134 2055 1037 3340
7 0 6630 0 3047 0 0 0 3340
8 0 6653 1056 1001 0 0 0 3340
9 0 4005 2055 3853 1001 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 2 0 1
1 0 1 0 1
2 1 3 2 1
3 1 4 3 1
4 0 0 0 0
5 0 2 0 1
6 1 6 5 3
7 2 12 9 4
8 0 0 0 0
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 420 4881 1221
1 582 14370 3414
2 276 5884 3865
3 900 7479 1026
4 918 5323 3236
5 435 9290 1605
6 560 3912 830
7 581 26901 1789
8 540 15531 3183
9 788 15021 3573
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 2170 0 0
1 2181 46 0
2 1721 0 0
3 3121 0 0
4 2562 0 0
5 2188 0 0
6 2201 1 0
7 4268 93 0
8 2648 0 0
9 2414 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 36587
1 0 2 12166
2 0 3 43063
3 0 4 23633
4 0 5 6492
5 0 6 61200
6 0 7 48756
7 0 8 59894
8 0 9 9822
9 0 10 2687
physicalDamageDealtToChampions physicalDamageTaken role \
0 7289 8417 SUPPORT
1 620 13332 SUPPORT
2 6046 10038 SUPPORT
3 2584 4342 SUPPORT
4 1187 3255 SUPPORT
5 6072 11243 SUPPORT
6 10025 6511 SUPPORT
7 8926 12034 SUPPORT
8 429 2267 SUPPORT
9 705 2725 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 1 12 2 4 53
1 9 11 2 4 62
2 3 14 2 4 121
3 1 4 2 3 83
4 4 14 2 4 182
5 2 4 4 12 169
6 1 4 4 14 353
7 11 11 2 4 89
8 3 7 2 4 63
9 2 4 2 14 152
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 FrostVrtx False 100 TOP 8
1 AssBallz False 100 JUNGLE 12
2 NovaRentarou False 100 MIDDLE 0
3 KazeNekochan False 100 BOTTOM 12
4 393 False 100 UTILITY 29
5 Coolgum15 False 200 TOP 7
6 Riss Fortune False 200 MIDDLE 18
7 Ryan Rager False 200 JUNGLE 14
8 WintersSnow False 200 BOTTOM 14
9 Máy False 200 UTILITY 19
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1095 43008 8511
1 1095 38696 4518
2 1095 49465 10429
3 1095 40322 3610
4 1095 19084 5167
5 1095 70491 7677
6 1095 56899 11131
7 1095 93218 11706
8 1095 25354 3613
9 1095 17970 4540
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 10775 564 83 32
1 15606 6709 2 168
2 12254 407 94 0
3 7936 99 110 169
4 6098 0 32 121
5 13644 989 116 134
6 9013 526 105 87
7 16874 7128 26 448
8 5356 1095 62 135
9 5357 1068 16 136
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 116 1 1540
1 90 4 12159
2 184 1 517
3 58 1 9209
4 58 0 7268
5 44 1 0
6 90 1 4231
7 27 1 6421
8 39 3 0
9 42 4 261
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 188 0 3
1 483 92 0 3
2 517 494 0 3
3 0 472 0 3
4 743 281 0 3
5 0 212 1 0
6 276 300 0 0
7 990 572 1 0
8 0 441 0 0
9 261 216 1 0
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 7 1 0 3 False
1 7 0 1 4 False
2 13 1 3 6 False
3 6 0 0 5 False
4 17 2 3 7 False
5 7 0 1 4 True
6 12 3 0 7 True
7 13 3 0 8 True
8 4 0 1 2 True
9 37 3 3 15 True ,
assists baronKills bountyLevel champLevel championName \
0 8 0 0 15 Renekton
1 7 0 0 15 DrMundo
2 8 0 1 16 TwistedFate
3 6 0 0 13 Samira
4 11 0 0 12 Blitzcrank
5 6 0 2 16 Yorick
6 11 1 1 15 Shaco
7 12 0 0 15 Lux
8 10 0 0 17 MissFortune
9 25 0 0 13 Thresh
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 4714 6255 4714
1 388 22549 388
2 3900 3900 3900
3 1771 2278 1771
4 1964 6210 1964
5 16040 18864 16040
6 0 11778 0
7 2007 5776 2007
8 9780 27429 9780
9 0 3964 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 3 2 0 False False
1 6 1 0 False False
2 6 0 0 False False
3 12 2 0 False False
4 11 5 0 False False
5 6 1 0 False False
6 7 0 2 False False
7 5 0 0 False False
8 4 2 0 False True
9 7 5 1 True False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False True False
2 True False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 12462 TOP 0
1 False 10063 JUNGLE 0
2 False 16352 MIDDLE 0
3 False 9006 BOTTOM 0
4 False 7601 UTILITY 0
5 False 11038 TOP 2
6 False 10226 JUNGLE 0
7 False 10407 MIDDLE 1
8 False 19263 BOTTOM 0
9 False 9356 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 3 3053 6693 3026 3111 3076 1054 3340
1 3 3068 3075 3047 3211 2055 3067 3364
2 3 6656 3100 3089 3135 3020 0 3340
3 3 1055 6673 3006 3072 0 0 3340
4 3 3857 3190 3109 3024 3117 0 3364
5 0 2033 3078 3111 3077 3742 0 3340
6 0 6691 3006 6676 1037 1018 0 3340
7 0 1056 6655 3020 3145 3191 3108 3340
8 0 1038 6672 3036 3006 3031 6676 3340
9 0 3075 6664 3857 3009 3801 2055 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 7 7 2
1 1 4 2 1
2 3 13 4 2
3 1 3 2 1
4 0 2 0 1
5 1 2 2 1
6 1 7 2 1
7 1 4 2 2
8 3 22 11 4
9 0 3 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 1596 7891 2010
1 978 82064 6308
2 645 149765 27337
3 353 17937 2224
4 432 7031 5366
5 426 20264 3385
6 651 28988 6534
7 588 102534 15976
8 855 4289 1795
9 657 15715 9137
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 9098 12 0
1 8472 120 0
2 5859 18 0
3 7198 1 0
4 7275 0 0
5 4964 0 0
6 8691 90 0
7 8508 4 0
8 12012 32 0
9 10369 4 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 124106
1 0 2 49138
2 0 3 16907
3 0 4 87944
4 0 5 9428
5 0 6 123836
6 0 7 51906
7 0 8 16797
8 0 9 196701
9 0 10 7773
physicalDamageDealtToChampions physicalDamageTaken role \
0 16801 20564 SOLO
1 2916 24340 NONE
2 1610 11182 CARRY
3 9584 20478 SUPPORT
4 2566 14105 SOLO
5 8728 14642 SOLO
6 8970 14612 NONE
7 784 5329 SOLO
8 42827 13557 CARRY
9 1779 11933 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 12 3 4 278
1 9 11 4 4 40
2 10 14 4 4 27
3 5 4 6 7 117
4 1 4 6 14 50
5 3 4 2 12 169
6 6 14 18 11 83
7 2 4 3 21 69
8 5 7 5 4 34
9 8 14 5 4 354
summonerName teamEarlySurrendered teamId teamPosition \
0 DikMuncher False 100 TOP
1 CheddarInTurkey False 100 JUNGLE
2 primo dude False 100 MIDDLE
3 Neekosprt False 100 BOTTOM
4 Junchticulár False 100 UTILITY
5 Coolgum15 False 200 TOP
6 iraklI ahmed False 200 JUNGLE
7 SpicyGatorNuts False 200 MIDDLE
8 Am Griefing False 200 BOTTOM
9 UrgentProphet False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 22 1797 133962 18811
1 9 1797 143761 9459
2 37 1797 182047 30193
3 2 1797 107392 11808
4 38 1797 26696 8654
5 3 1797 144151 12113
6 22 1797 88741 16818
7 41 1797 121070 16929
8 12 1797 220652 49849
9 38 1797 27896 11927
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 30849 8751 179 36
1 35942 16519 32 265
2 18244 197 186 235
3 28631 4618 142 3
4 22627 0 17 83
5 20302 5453 193 73
6 23471 6114 17 494
7 14025 968 145 411
8 26192 12326 193 174
9 22828 1957 32 93
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 99 1 1964
1 194 1 12557
2 244 1 15374
3 327 3 1510
4 256 0 10237
5 175 1 50
6 206 1 7846
7 139 1 1738
8 103 3 19661
9 237 8 4407
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 1185 2 11
1 234 3129 2 11
2 1246 1202 0 11
3 0 954 1 11
4 720 1246 0 11
5 0 696 7 5
6 1314 168 0 5
7 168 188 0 5
8 5226 622 4 5
9 1010 526 0 5
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 34 3 6 11 False
1 20 2 4 2 False
2 11 0 0 8 False
3 22 2 0 10 False
4 28 5 1 14 False
5 17 1 1 8 True
6 20 0 4 9 True
7 13 0 0 8 True
8 27 2 3 11 True
9 45 7 5 18 True ,
assists baronKills bountyLevel champLevel championName \
0 0 0 0 14 Yorick
1 7 0 0 13 Viego
2 4 0 0 14 Akali
3 3 0 0 13 Twitch
4 5 0 0 11 Swain
5 5 0 1 15 Renekton
6 15 0 0 12 Nunu
7 6 0 4 14 Corki
8 5 0 6 14 Sivir
9 13 0 0 12 Nautilus
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 13005 13005 13005
1 21 6149 21
2 0 0 0
3 2789 5780 2789
4 1663 3486 1663
5 10994 10994 10994
6 629 7819 629
7 3886 4353 3886
8 6060 9411 6060
9 1181 2283 1181
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 3 0 0 False False
1 6 0 1 False False
2 6 0 0 False True
3 6 0 0 False False
4 5 1 0 False False
5 3 2 0 False False
6 5 2 2 False False
7 6 0 0 False False
8 3 0 0 False False
9 2 3 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 9555 TOP 0
1 True 8665 JUNGLE 0
2 True 9606 MIDDLE 0
3 True 10028 BOTTOM 0
4 True 6289 UTILITY 0
5 True 12895 TOP 0
6 True 7827 JUNGLE 0
7 True 10087 MIDDLE 0
8 True 13462 BOTTOM 1
9 True 6981 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 2033 6632 3111 3053 3076 1028 3340
1 1 6672 1028 3111 3153 0 0 3364
2 1 2420 4633 3100 3020 1052 0 3340
3 1 6671 1037 3006 3085 1018 0 3363
4 1 2424 3853 6653 1001 3191 0 3364
5 0 1055 6631 3053 3153 3047 1038 3340
6 0 3068 2031 3111 3076 1011 0 3364
7 0 3042 6673 1036 3111 3057 1036 3340
8 0 1055 6671 3006 3508 3031 0 3363
9 0 3860 3190 3047 3024 3067 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 3 2 1
1 0 2 0 1
2 2 7 3 1
3 1 7 6 2
4 0 0 0 0
5 2 6 3 2
6 0 1 0 1
7 1 5 4 2
8 2 12 6 3
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 917 16375 5080
1 501 12644 1309
2 679 56252 12786
3 498 2281 1046
4 548 33087 8557
5 507 3946 1936
6 575 33615 6089
7 279 91588 13672
8 803 1074 1074
9 985 8389 4565
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 3000 0 0
1 6210 126 0
2 10558 0 0
3 4253 4 0
4 4908 0 0
5 8521 12 0
6 6093 79 0
7 6761 10 0
8 6513 21 0
9 2742 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 92465
1 0 2 109063
2 0 3 14339
3 0 4 96719
4 0 5 3866
5 0 6 149217
6 0 7 15200
7 0 8 14070
8 0 9 182098
9 0 10 9681
physicalDamageDealtToChampions physicalDamageTaken role \
0 8869 20546 SOLO
1 8510 22277 NONE
2 1089 10286 SOLO
3 10466 12033 CARRY
4 617 9828 SUPPORT
5 19177 15545 SOLO
6 623 17198 NONE
7 2244 6654 SOLO
8 20663 8010 CARRY
9 2841 5629 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 3 12 169
1 11 11 4 4 143
2 4 14 4 4 155
3 4 4 4 7 216
4 4 14 3 4 102
5 3 12 4 4 212
6 4 4 12 11 118
7 5 3 5 4 269
8 3 4 4 7 290
9 4 3 2 4 139
summonerName teamEarlySurrendered teamId teamPosition \
0 Coolgum15 False 100 TOP
1 chrstn cuhh False 100 JUNGLE
2 asawyer57 False 100 MIDDLE
3 korruptful False 100 BOTTOM
4 Smokescreen66 False 100 UTILITY
5 LestForce False 200 TOP
6 kyoyoo False 200 JUNGLE
7 Jitterz0425 False 200 MIDDLE
8 lemur134 False 200 BOTTOM
9 VoodooMamaJuju x False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 5 1615 112565 13950
1 18 1615 133618 11465
2 1 1615 78055 14557
3 8 1615 113606 13935
4 25 1615 37763 9985
5 27 1615 163772 21131
6 22 1615 69491 6966
7 7 1615 109967 16523
8 2 1615 184303 22134
9 49 1615 24482 7407
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 23621 7810 163 97
1 28992 14572 9 282
2 21130 3707 147 37
3 16365 4025 165 387
4 15067 2640 35 124
5 24540 9644 196 101
6 24973 12226 15 239
7 14484 2287 153 75
8 15881 3344 194 50
9 9349 416 33 160
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 87 1 3724
1 153 1 11910
2 228 1 7463
3 188 3 14605
4 151 1 809
5 81 1 10608
6 116 1 20675
7 143 1 4308
8 102 3 1130
9 64 1 6411
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 74 4 8
1 1645 505 0 8
2 681 286 0 8
3 2423 78 0 8
4 809 330 0 8
5 18 473 5 4
6 253 1681 0 4
7 606 1068 0 4
8 396 1358 3 4
9 0 977 0 4
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 11 0 3 4 False
1 17 0 3 5 False
2 11 0 0 9 False
3 11 0 1 6 False
4 32 1 5 14 False
5 21 2 0 10 True
6 17 2 2 4 True
7 8 0 1 6 True
8 9 0 0 6 True
9 51 3 7 20 True ,
assists baronKills bountyLevel champLevel championName \
0 2 0 1 18 Aatrox
1 4 0 0 16 Rengar
2 8 0 0 15 Xerath
3 5 0 0 14 Pyke
4 5 0 0 16 Blitzcrank
5 16 0 0 17 Kled
6 8 0 1 16 Evelynn
7 11 0 10 18 Ekko
8 13 0 3 17 Caitlyn
9 17 0 0 15 Seraphine
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 1255 17522 1255
1 2411 22570 2411
2 1369 1369 1369
3 0 2592 0
4 769 3899 769
5 3593 8798 3593
6 3342 16730 3342
7 5039 6355 5039
8 13303 31748 13303
9 1167 3378 1167
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 2 1 0 False False
1 10 0 0 False False
2 10 1 0 False False
3 11 0 0 True False
4 8 0 0 False True
5 7 0 0 False False
6 5 1 4 False False
7 2 4 1 False False
8 5 0 0 False False
9 9 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 True False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 16521 TOP 0
1 False 13353 JUNGLE 0
2 False 9959 MIDDLE 0
3 False 11491 UTILITY 0
4 False 13556 UTILITY 0
5 False 11331 TOP 1
6 False 13919 JUNGLE 0
7 False 17224 MIDDLE 1
8 False 17021 BOTTOM 1
9 False 10636 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 3 3111 6630 3071 3065 3053 3133 3340
1 3 6691 3508 3142 3117 1053 3077 3340
2 3 4628 6655 1052 1056 3070 3020 3363
3 3 3142 1036 1018 3814 6691 3117 3340
4 3 1056 6655 3020 3089 3135 3057 3340
5 0 3074 6630 3047 3044 1037 1028 3340
6 0 4636 1058 3020 3100 3135 1082 3340
7 0 4636 3157 3100 3041 3158 3089 3364
8 0 3094 6671 3006 6676 3095 1038 3363
9 0 3853 3222 3011 6617 3114 3158 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 6 3 1
1 1 7 2 1
2 0 1 0 1
3 1 5 2 1
4 3 9 3 1
5 0 1 0 1
6 3 11 3 1
7 1 11 10 2
8 4 14 4 2
9 0 4 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 914 0 0
1 999 37396 1189
2 727 135504 18473
3 474 0 0
4 680 89017 21031
5 694 0 0
6 935 110385 21259
7 1340 229032 28465
8 791 5982 3317
9 476 50845 10242
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 14353 40 0
1 17714 175 0
2 11781 0 0
3 12958 4 0
4 9020 4 0
5 10068 17 0
6 10852 132 1
7 10477 32 0
8 6308 1 0
9 4634 7 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 269823
1 0 2 186153
2 0 3 9521
3 0 4 60614
4 0 5 26041
5 0 6 135655
6 0 7 14975
7 0 8 27516
8 0 9 181474
9 0 10 5399
physicalDamageDealtToChampions physicalDamageTaken role \
0 25560 25378 SOLO
1 26686 32253 NONE
2 564 9832 SOLO
3 8310 12115 DUO
4 2560 13726 DUO
5 18998 31881 SOLO
6 946 18191 NONE
7 3635 18332 SOLO
8 25859 10712 CARRY
9 2466 13786 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 5 4 2 12 382
1 6 4 20 11 161
2 3 4 1 14 147
3 5 14 6 4 156
4 6 14 5 4 243
5 3 4 3 12 169
6 6 4 25 11 197
7 3 12 3 4 251
8 6 7 2 4 291
9 6 4 9 3 377
summonerName teamEarlySurrendered teamId teamPosition \
0 rSacr3dm False 100 TOP
1 Prelocun False 100 JUNGLE
2 Stroup22 False 100 MIDDLE
3 Warbles False 100 BOTTOM
4 Nörm False 100 UTILITY
5 Coolgum15 False 200 TOP
6 MStar False 200 JUNGLE
7 TwrkOff False 200 MIDDLE
8 Currymidnight False 200 BOTTOM
9 GetInTheTrashCan False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 25 2274 274773 25704
1 12 2274 244481 29274
2 34 2274 157805 19222
3 17 2274 83890 10003
4 32 2274 125192 24446
5 5 2274 138838 19215
6 12 2274 136330 23459
7 20 2274 259146 32461
8 33 2274 191786 29829
9 19 2274 56244 12709
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 40760 22163 324 341
1 50225 24355 57 318
2 22079 671 165 267
3 25643 4647 87 193
4 22910 3695 141 199
5 42776 9218 147 57
6 29965 12680 28 249
7 29654 13258 276 408
8 18250 8603 181 91
9 18871 10029 46 143
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 76 1 4950
1 456 1 20932
2 437 1 12779
3 288 1 23275
4 207 1 10134
5 245 1 3183
6 205 1 10970
7 67 1 2597
8 124 3 4328
9 280 5 0
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 144 1028 1 10
1 1398 258 0 10
2 184 466 0 10
3 1692 568 0 10
4 854 164 1 10
5 217 826 1 3
6 1254 921 1 3
7 361 844 1 3
8 652 1229 7 3
9 0 450 0 3
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 24 1 1 14 False
1 22 0 4 8 False
2 32 5 3 11 False
3 32 0 3 17 False
4 26 0 2 13 False
5 18 0 3 8 True
6 41 1 3 15 True
7 21 5 3 9 True
8 32 0 1 13 True
9 53 2 4 19 True ,
assists baronKills bountyLevel champLevel championName \
0 1 0 3 17 Garen
1 7 0 4 15 Khazix
2 3 0 0 15 Rakan
3 6 0 0 14 Sivir
4 8 0 0 12 Soraka
5 3 0 0 16 Ornn
6 3 0 0 12 XinZhao
7 2 0 3 14 Akali
8 3 0 1 14 Kaisa
9 6 0 0 12 Alistar
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2332 3298 2332
1 214 26560 214
2 2768 5511 2768
3 1334 4875 1334
4 0 1139 0
5 2319 2319 2319
6 623 15633 623
7 3189 3189 3189
8 3389 6680 3389
9 1429 2473 1429
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 2 0 0 False False
1 2 2 4 True False
2 2 1 0 False True
3 5 0 0 False False
4 4 2 0 False False
5 2 0 0 False False
6 9 2 1 False False
7 2 6 0 False False
8 3 2 0 False False
9 3 6 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False True False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 11857 TOP 0
1 True 11895 JUNGLE 0
2 True 9709 MIDDLE 0
3 True 11691 BOTTOM 0
4 True 6604 UTILITY 0
5 True 10219 TOP 0
6 True 9465 JUNGLE 0
7 True 9737 MIDDLE 0
8 True 10969 BOTTOM 0
9 True 8111 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3742 6631 3006 1054 3044 1037 3340
1 0 3047 6691 3814 1036 0 3142 3364
2 0 2033 4636 3158 1082 4629 1026 3340
3 0 3042 6691 3006 3508 0 0 3364
4 0 2424 3860 3114 1052 3117 4005 3364
5 0 3801 3047 7004 3075 1011 3067 3340
6 0 7001 2031 3047 3153 1031 1036 3364
7 0 3165 1056 7010 3020 1029 0 3340
8 0 3006 0 7006 6676 3086 1042 3363
9 0 3860 3009 3066 6664 1031 1028 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 4 3 1
1 2 6 4 1
2 1 5 4 2
3 0 4 0 1
4 0 0 0 0
5 0 0 0 0
6 1 5 2 1
7 1 3 3 2
8 1 5 2 1
9 0 2 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 638 2131 482
1 1072 10554 568
2 1047 52790 10808
3 503 0 0
4 456 26870 4958
5 1232 53639 5513
6 512 10088 1084
7 774 91216 7793
8 670 10379 3435
9 856 22845 5785
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 6033 34 0
1 7517 166 0
2 3157 0 0
3 4088 12 0
4 4485 0 0
5 1677 0 0
6 7536 109 0
7 3493 4 0
8 3119 4 0
9 2705 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 165106
1 0 2 165638
2 0 3 18707
3 0 4 149910
4 0 5 5705
5 0 6 71613
6 0 7 93901
7 0 8 13776
8 0 9 94839
9 0 10 5879
physicalDamageDealtToChampions physicalDamageTaken role \
0 9029 11770 SOLO
1 11836 21533 NONE
2 1189 6974 SOLO
3 21278 11404 CARRY
4 357 6968 SUPPORT
5 4582 11606 SOLO
6 13947 19130 NONE
7 607 7486 SOLO
8 7008 13117 CARRY
9 996 14133 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 14 2 4 299
1 4 4 17 11 162
2 3 14 2 4 225
3 5 4 4 12 169
4 4 4 6 1 130
5 2 4 2 12 169
6 18 11 3 4 208
7 3 14 4 4 190
8 4 7 3 4 277
9 4 4 4 14 326
summonerName teamEarlySurrendered teamId teamPosition \
0 RagingWar149 False 100 TOP
1 Ringil12 False 100 JUNGLE
2 SnarfyG False 100 MIDDLE
3 paulytools False 100 BOTTOM
4 Risil Idarin False 100 UTILITY
5 Coolgum15 False 200 TOP
6 CaptN ReD False 200 JUNGLE
7 Sonicmastr False 200 MIDDLE
8 chostar False 200 BOTTOM
9 Da Bed Intruder False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 37 1853 175375 13053
1 5 1853 183254 13241
2 21 1853 77055 12479
3 0 1853 157984 21278
4 29 1853 36695 5315
5 23 1853 140512 10095
6 20 1853 118407 16261
7 0 1853 110963 8804
8 0 1853 105573 10631
9 31 1853 35398 7441
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 18342 1614 232 168
1 29856 20377 23 176
2 10708 3327 157 110
3 15876 3793 220 21
4 11631 10704 47 259
5 15256 771 229 505
6 28240 11724 24 320
7 11767 2592 168 65
8 16512 4208 194 10
9 17088 7283 44 79
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 65 1 8137
1 70 1 7062
2 85 3 5557
3 106 1 8074
4 81 5 4119
5 74 1 15260
6 298 1 14417
7 45 1 5970
8 98 2 353
9 90 5 6674
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 3542 539 1 4
1 836 805 0 4
2 482 575 1 4
3 0 382 1 4
4 0 178 0 4
5 0 1972 1 3
6 1230 1574 1 3
7 403 787 1 3
8 187 276 1 3
9 659 250 0 3
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 21 0 2 10 True
1 22 2 4 3 True
2 29 1 3 11 True
3 18 0 2 9 True
4 67 2 8 24 True
5 15 0 0 9 False
6 19 2 0 9 False
7 25 6 2 16 False
8 17 2 3 8 False
9 46 6 2 25 False ,
assists baronKills bountyLevel champLevel championName \
0 9 0 0 18 Shyvana
1 12 0 1 18 XinZhao
2 6 0 0 17 Akali
3 13 0 0 18 Lucian
4 12 0 0 17 Teemo
5 14 0 1 18 Ornn
6 6 1 0 18 FiddleSticks
7 7 0 4 18 Yone
8 12 0 0 18 Jinx
9 10 1 0 17 Veigar
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 5825 20527 5825
1 5056 45071 5056
2 1769 4559 1769
3 7636 21738 7636
4 3371 7804 3371
5 1776 4414 1776
6 564 14631 564
7 3814 14547 3814
8 2100 14335 2100
9 1411 7388 1411
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 8 2 1 False False
1 10 0 2 False True
2 13 0 0 False False
3 6 2 1 False False
4 7 0 1 False False
5 6 0 0 False False
6 10 1 1 False False
7 13 3 0 False False
8 16 1 0 False False
9 13 16 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False True False
2 True False False
3 True False False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 19201 TOP 0
1 False 24584 JUNGLE 2
2 False 13973 MIDDLE 0
3 False 18581 BOTTOM 2
4 False 12058 UTILITY 0
5 False 15772 TOP 0
6 False 18186 JUNGLE 0
7 False 22127 MIDDLE 0
8 False 15150 BOTTOM 0
9 False 12368 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3193 3153 3748 3111 3075 6672 3364
1 0 6676 6693 3006 3153 3072 3031 3364
2 0 1056 4633 3020 3100 3135 3165 3340
3 0 6676 6671 3072 3153 3033 3006 3363
4 0 4637 3020 6653 3165 1058 0 3340
5 5 3143 3193 3075 3047 7005 3082 3340
6 5 7011 3157 3089 3158 4637 3135 3330
7 5 6333 3006 7008 3031 3072 3026 3340
8 5 3046 7007 3006 3085 3031 1036 3363
9 5 3853 7014 3157 3040 2055 3158 3363
killingSprees kills largestKillingSpree largestMultiKill \
0 1 6 4 2
1 5 24 9 2
2 4 14 3 2
3 3 10 4 3
4 1 4 2 1
5 2 7 2 1
6 3 15 6 3
7 4 16 4 2
8 0 3 0 1
9 0 3 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 636 135853 20978
1 885 22372 3503
2 421 76630 29279
3 692 10307 3939
4 694 62801 20107
5 662 123984 24910
6 578 249813 39531
7 313 39322 9104
8 417 988 378
9 510 110918 12727
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 19132 75 0
1 22264 227 0
2 15221 4 0
3 18230 34 0
4 14707 16 0
5 19967 7 0
6 15171 151 0
7 18777 14 0
8 15863 36 0
9 12977 4 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 206312
1 0 2 335106
2 0 3 15692
3 0 4 236493
4 0 5 10245
5 0 6 97972
6 0 7 9492
7 0 8 232746
8 0 9 231226
9 0 10 5735
physicalDamageDealtToChampions physicalDamageTaken role \
0 15496 28820 SOLO
1 49980 37656 NONE
2 2317 28612 SOLO
3 31575 13188 CARRY
4 616 11305 SUPPORT
5 12845 25134 SOLO
6 175 41712 NONE
7 31932 27227 SOLO
8 23911 21962 CARRY
9 919 18879 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 5 12 6 4 116
1 16 11 7 4 431
2 8 14 7 4 147
3 7 7 7 4 85
4 2 3 3 4 43
5 5 4 4 12 168
6 9 11 6 4 130
7 7 14 2 4 112
8 8 7 5 4 196
9 4 4 7 3 127
summonerName teamEarlySurrendered teamId teamPosition \
0 Yao599 False 100 TOP
1 egyptian prxnce False 100 JUNGLE
2 Arikuta False 100 MIDDLE
3 BobRhast False 100 BOTTOM
4 aahhhh False 100 UTILITY
5 Coolgum15 False 200 TOP
6 Ve1l3r False 200 JUNGLE
7 Wisparous False 200 MIDDLE
8 Wíntér False 200 BOTTOM
9 eeks196 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 7 2652 401386 40703
1 35 2652 370846 56326
2 1 2652 103830 33963
3 11 2652 256712 41837
4 43 2652 85543 20779
5 78 2652 234779 37989
6 66 2652 264193 40210
7 22 2652 291356 48965
8 17 2652 264274 27343
9 34 2652 117067 13696
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 51074 4610 297 114
1 62420 27777 96 740
2 47221 9545 119 30
3 32974 12729 234 153
4 27219 5044 35 331
5 50334 5596 240 1769
6 59041 24647 80 1200
7 51185 11047 244 147
8 39953 8403 233 118
9 33125 2198 85 104
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 311 1 59222
1 493 1 13367
2 603 1 11506
3 245 2 9911
4 248 1 12497
5 297 1 12824
6 361 1 4887
7 474 1 19287
8 658 5 32059
9 490 1 414
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 4228 3121 2 4
1 2842 2498 3 4
2 2366 3387 0 4
3 6322 1555 2 4
4 55 1206 2 4
5 234 5233 0 11
6 503 2156 1 11
7 7928 5180 3 11
8 3053 2127 0 11
9 50 1268 0 11
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 38 2 5 15 True
1 31 0 6 2 True
2 26 0 2 15 True
3 36 2 6 15 True
4 17 0 4 6 True
5 21 0 4 11 False
6 52 1 2 1 False
7 32 4 4 15 False
8 25 1 3 14 False
9 113 18 5 60 False ,
assists baronKills bountyLevel champLevel championName \
0 3 0 0 12 Ornn
1 8 0 3 11 Poppy
2 4 0 9 13 Lux
3 5 0 0 11 Caitlyn
4 8 0 0 10 Thresh
5 2 0 0 11 Irelia
6 3 0 0 10 Olaf
7 0 0 1 12 Qiyana
8 2 0 0 9 Ezreal
9 4 0 0 10 Janna
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2616 5334 2616
1 1136 16411 1136
2 2637 2637 2637
3 4837 4837 4837
4 1254 2237 1254
5 2502 2502 2502
6 0 5460 0
7 497 497 497
8 0 2288 0
9 0 145 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 0 0 False False
1 2 4 2 True False
2 2 0 0 False True
3 2 1 0 False False
4 1 1 0 False False
5 3 1 0 False False
6 2 6 0 False False
7 10 2 0 False False
8 7 0 0 False False
9 4 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False True False
2 False False False
3 True False False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 6035 TOP 0
1 True 8532 JUNGLE 0
2 True 10040 MIDDLE 0
3 True 7696 BOTTOM 0
4 True 6023 UTILITY 0
5 True 6707 TOP 0
6 True 6204 JUNGLE 0
7 True 8462 MIDDLE 0
8 True 5534 BOTTOM 0
9 True 4137 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1054 3068 1029 1029 0 1001 3340
1 0 6632 2031 3047 3742 1029 2055 3364
2 0 1056 3157 0 3041 6655 3020 3340
3 0 1055 6671 2031 3006 2015 1038 3340
4 0 3190 1029 3857 3117 2055 3082 3364
5 0 6632 3111 1011 1028 2033 0 3340
6 0 2031 6631 3133 0 0 3111 3364
7 0 6693 3158 6695 2031 3070 1036 3340
8 0 1055 3508 3158 1036 1036 0 3340
9 0 3851 2065 0 3117 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 0 0 0
1 3 8 3 2
2 2 13 9 3
3 1 3 3 1
4 1 2 2 2
5 1 2 2 1
6 1 2 2 1
7 1 7 4 2
8 0 1 0 1
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 548 23084 4264
1 583 7552 1127
2 519 57832 15000
3 452 1675 1064
4 871 5263 2030
5 739 10804 2585
6 734 4865 0
7 296 4523 909
8 590 6428 2407
9 637 11642 2505
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 2336 0 0
1 1878 96 0
2 841 0 0
3 2032 0 0
4 2442 0 0
5 4287 0 0
6 3137 84 0
7 7840 0 0
8 6125 0 0
9 3482 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 36022
1 0 2 74086
2 0 3 11321
3 0 4 74055
4 0 5 4982
5 0 6 50470
6 0 7 65401
7 0 8 54261
8 0 9 42931
9 0 10 1408
physicalDamageDealtToChampions physicalDamageTaken role \
0 4037 12174 DUO
1 11097 12771 NONE
2 1853 7961 DUO
3 9645 4401 CARRY
4 308 4507 SUPPORT
5 6457 9657 SOLO
6 4021 13572 NONE
7 11566 8719 SOLO
8 4176 6433 CARRY
9 194 5278 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 4 3 12 168
1 13 11 4 4 192
2 2 4 2 21 164
3 2 4 2 7 298
4 2 4 5 14 283
5 2 4 2 12 178
6 10 11 2 4 159
7 4 14 4 4 158
8 4 7 2 4 139
9 3 4 3 14 72
summonerName teamEarlySurrendered teamId teamPosition \
0 Coolgum15 False 100 TOP
1 Juror No 8 False 100 JUNGLE
2 sol enjoyer False 100 MIDDLE
3 Douman False 100 BOTTOM
4 Offícer Booty False 100 UTILITY
5 SpartaKingType2 False 200 TOP
6 Saint jax False 200 JUNGLE
7 HydroFall False 200 MIDDLE
8 2Jcp False 200 BOTTOM
9 TheSaddestSalad False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 18 1221 61787 8302
1 25 1221 91314 13439
2 42 1221 77144 17562
3 6 1221 75731 10710
4 13 1221 15864 2806
5 10 1221 64794 9042
6 9 1221 81830 5451
7 19 1221 60648 12799
8 0 1221 51268 6583
9 14 1221 13422 3071
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 15424 889 115 287
1 15304 7671 10 444
2 8901 423 113 239
3 6523 3094 158 19
4 7317 954 35 35
5 14239 3178 107 59
6 17208 7731 23 419
7 17449 727 105 75
8 12952 1623 114 0
9 9072 1969 5 123
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 111 1 2680
1 46 1 9674
2 51 1 7990
3 44 2 0
4 27 4 5617
5 99 1 3520
6 55 1 11563
7 210 1 1863
8 144 3 1907
9 95 4 372
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 914 1 1
1 1214 655 1 1
2 707 97 0 1
3 0 90 2 1
4 467 367 0 1
5 0 294 1 4
6 1429 498 0 4
7 323 890 0 4
8 0 393 0 4
9 372 312 0 4
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 6 0 0 4 True
1 24 5 5 5 True
2 12 0 2 6 True
3 9 1 0 6 True
4 26 3 3 10 True
5 18 1 0 7 False
6 17 6 2 7 False
7 11 2 1 7 False
8 6 0 1 6 False
9 14 0 0 8 False ,
assists baronKills bountyLevel champLevel championName \
0 7 0 0 14 Irelia
1 15 0 1 13 XinZhao
2 8 0 4 15 Syndra
3 11 0 4 14 Twitch
4 14 0 0 12 Alistar
5 4 0 0 14 Mordekaiser
6 8 0 0 13 Fizz
7 2 0 0 14 Yasuo
8 4 0 0 12 Vayne
9 14 0 0 12 Yuumi
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 1576 18903 1576
1 2268 21642 2268
2 1743 1743 1743
3 7850 17324 7850
4 441 441 441
5 2041 4703 2041
6 0 1336 0
7 538 3998 538
8 3301 3873 3301
9 424 424 424
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 2 0 False True
1 3 0 2 False False
2 3 3 0 False False
3 4 0 1 False False
4 8 3 0 False False
5 6 0 0 False False
6 6 3 1 False False
7 7 2 0 False False
8 10 4 0 False False
9 7 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False True False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 11535 TOP 0
1 False 8942 JUNGLE 1
2 False 9974 MIDDLE 1
3 False 14678 BOTTOM 0
4 False 7934 UTILITY 0
5 False 9847 TOP 0
6 False 8261 JUNGLE 0
7 False 10533 MIDDLE 0
8 False 10154 BOTTOM 0
9 False 6519 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 2033 0 3091 3153 3078 3111 3340
1 0 6692 2031 3111 3153 0 0 3340
2 0 1056 6655 3157 0 0 3020 3340
3 0 3135 3115 3006 4633 3089 1082 3340
4 0 3190 3860 3117 3050 3076 1028 3364
5 2 1054 3047 4633 4637 3076 1028 3363
6 2 4636 1001 3100 1052 0 0 3364
7 2 3031 3006 6673 1055 1053 1018 3340
8 2 6672 3006 3046 3155 0 0 3340
9 2 3853 4005 3504 1001 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 7 4 2
1 0 3 0 1
2 2 7 4 1
3 2 15 10 2
4 0 4 0 1
5 2 6 4 1
6 1 5 2 1
7 0 5 0 1
8 3 8 2 2
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 630 11617 4530
1 819 12856 500
2 601 80865 18971
3 774 41604 9848
4 381 13724 7365
5 654 72284 11520
6 534 40723 8204
7 465 2984 465
8 507 35 35
9 535 13358 11017
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 7402 4 0
1 5781 101 0
2 4870 12 0
3 6672 21 0
4 7658 4 0
5 9704 2 0
6 12491 86 1
7 8641 8 0
8 8764 7 0
9 4609 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 105950
1 0 2 95682
2 0 3 11867
3 0 4 51458
4 0 5 5313
5 0 6 14332
6 0 7 21564
7 0 8 124374
8 0 9 72763
9 0 10 941
physicalDamageDealtToChampions physicalDamageTaken role \
0 9782 12282 SOLO
1 10411 22790 NONE
2 1314 8134 SOLO
3 12584 8241 CARRY
4 1999 8480 SUPPORT
5 2351 10719 SOLO
6 2194 15163 NONE
7 8463 10796 SOLO
8 10784 10945 CARRY
9 567 5832 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 12 4 4 187
1 1 4 8 11 56
2 1 12 2 4 199
3 3 4 5 7 247
4 6 14 9 4 323
5 3 4 2 12 168
6 10 11 3 4 96
7 3 14 2 4 101
8 4 4 5 7 292
9 6 14 6 3 97
summonerName teamEarlySurrendered teamId teamPosition \
0 ZelfyBro47 False 100 TOP
1 FantasticlegendD False 100 JUNGLE
2 CodenameHydra False 100 MIDDLE
3 Fenikkusu False 100 BOTTOM
4 Ningoji False 100 UTILITY
5 Coolgum15 False 200 TOP
6 nkcrusher56 False 200 JUNGLE
7 fortnitegirl2007 False 200 MIDDLE
8 omgelenaa False 200 BOTTOM
9 PastaOnMyBalls False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 10 1611 125548 14313
1 13 1611 115989 11092
2 30 1611 97661 20436
3 9 1611 109894 29952
4 45 1611 24999 10298
5 7 1611 92792 15015
6 8 1611 68071 10734
7 14 1611 131778 9343
8 9 1611 96986 15024
9 22 1611 15362 12647
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 21246 3373 180 47
1 28977 16505 11 405
2 13680 1519 138 191
3 17669 6168 135 272
4 20900 7514 31 87
5 22115 4608 151 56
6 29490 8061 11 177
7 20256 3503 183 129
8 23011 4795 138 28
9 11578 5135 3 59
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 261 1 7980
1 97 1 7451
2 86 1 4928
3 67 5 16832
4 180 5 5961
5 194 1 6175
6 159 1 5783
7 189 1 4419
8 257 2 24187
9 146 5 1062
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 1561 2 2
1 180 404 0 2
2 150 675 0 2
3 7519 2755 4 2
4 934 4760 1 2
5 1142 1691 1 7
6 335 1836 0 7
7 414 818 0 7
8 4203 3301 1 7
9 1062 1136 0 7
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 20 2 0 9 True
1 17 0 1 8 True
2 18 3 1 10 True
3 17 0 4 7 True
4 37 3 6 13 True
5 12 0 2 6 False
6 9 3 2 5 False
7 17 2 1 10 False
8 22 4 1 12 False
9 35 1 0 15 False ,
assists baronKills bountyLevel champLevel championName \
0 1 0 0 9 Irelia
1 3 0 0 8 Sejuani
2 1 0 0 7 Braum
3 0 0 0 8 Jinx
4 0 0 1 10 Zyra
5 2 0 0 9 Taliyah
6 0 0 5 12 Teemo
7 4 0 0 10 Pantheon
8 3 0 3 9 Sivir
9 6 0 1 8 Senna
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 497 2558 497
1 0 4094 0
2 0 574 0
3 0 2100 0
4 728 838 728
5 538 5776 538
6 3334 3334 3334
7 529 1928 529
8 2029 2029 2029
9 950 950 950
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 1 0 False False
1 2 2 1 False False
2 3 2 0 False False
3 4 1 0 False False
4 3 3 0 False False
5 1 1 1 False False
6 3 0 0 False True
7 1 2 0 False False
8 0 2 0 False False
9 1 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 5297 TOP 0
1 True 4436 JUNGLE 0
2 True 2911 UTILITY 0
3 True 4822 BOTTOM 0
4 True 4731 MIDDLE 0
5 True 5834 JUNGLE 0
6 True 8186 TOP 0
7 True 4973 MIDDLE 0
8 True 5987 BOTTOM 0
9 True 4804 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 2033 1033 3153 1001 0 0 3340
1 0 3105 2031 6660 1001 0 0 3340
2 0 3859 1042 3047 0 0 0 3340
3 0 1055 6670 3006 1037 1018 0 3340
4 0 1056 1001 3802 3108 0 2055 3340
5 0 6656 2031 0 1052 3020 0 3340
6 0 6653 3115 0 3006 0 0 3340
7 0 3134 2033 2055 3111 1053 0 3340
8 0 0 3004 3158 1036 0 0 3340
9 0 3864 6692 2422 0 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 2 0 1
1 0 1 0 1
2 0 0 0 0
3 0 2 0 1
4 0 1 0 1
5 1 5 5 1
6 1 8 5 1
7 1 2 2 1
8 1 3 3 1
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 177 3206 995
1 508 14087 1130
2 465 2692 1618
3 278 692 201
4 277 29826 3860
5 842 50897 4339
6 207 41056 6521
7 632 677 57
8 0 0 0
9 447 0 0
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 6106 0 0
1 3971 60 0
2 897 0 0
3 100 0 0
4 1040 0 0
5 2424 68 0
6 1330 12 0
7 1945 0 0
8 641 0 0
9 2005 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 40448
1 0 2 20514
2 0 3 3163
3 0 4 36725
4 0 5 6379
5 0 6 8082
6 0 7 20897
7 0 8 31684
8 0 9 55213
9 0 10 10183
physicalDamageDealtToChampions physicalDamageTaken role \
0 2655 3891 SUPPORT
1 1599 5861 SUPPORT
2 398 5251 SUPPORT
3 4720 6990 SUPPORT
4 391 2449 SUPPORT
5 354 7160 SUPPORT
6 2857 4801 SUPPORT
7 3173 3464 SUPPORT
8 6805 3169 DUO
9 3652 2711 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 12 2 4 267
1 5 11 1 4 73
2 1 14 1 4 355
3 2 14 2 4 231
4 3 14 2 4 356
5 6 11 2 4 156
6 2 4 3 14 252
7 2 4 2 14 325
8 1 4 2 7 168
9 2 4 1 14 127
summonerName teamEarlySurrendered teamId teamPosition \
0 BorisBetrayedMe False 100 TOP
1 FleurDeMur False 100 JUNGLE
2 GrabErByTheSushi False 100 UTILITY
3 xSniffie False 100 BOTTOM
4 PlantsAreFriends False 100 MIDDLE
5 Kûsh False 200 JUNGLE
6 StalwartHide False 200 TOP
7 Rotome False 200 MIDDLE
8 Coolgum15 False 200 BOTTOM
9 Alece False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 5 916 46416 3650
1 9 916 37800 2909
2 9 916 9563 2042
3 10 916 44657 5171
4 10 916 36673 4719
5 5 916 62291 4897
6 13 916 62282 9707
7 8 916 32526 3395
8 0 916 55213 6805
9 21 916 10271 3740
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 10402 715 103 22
1 10036 4029 5 167
2 6149 399 17 43
3 7178 1147 97 42
4 3577 120 80 130
5 9954 5166 13 307
6 6202 230 106 165
7 5783 679 69 18
8 3811 1155 108 0
9 4827 2480 8 73
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 136 1 2762
1 37 2 3198
2 46 1 3707
3 72 1 7240
4 43 1 467
5 30 1 3312
6 41 1 328
7 27 1 164
8 0 2 0
9 14 2 88
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 404 0 2
1 180 204 0 2
2 26 0 0 2
3 250 88 0 2
4 467 88 0 2
5 204 369 0 0
6 328 70 1 0
7 164 374 0 0
8 0 0 0 0
9 88 110 1 0
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 9 2 1 5 False
1 15 2 2 7 False
2 13 2 1 8 False
3 10 1 1 5 False
4 15 4 2 7 False
5 11 1 3 6 True
6 7 0 0 4 True
7 12 3 2 4 True
8 10 2 0 5 True
9 13 0 3 7 True ,
assists baronKills bountyLevel champLevel championName \
0 7 0 6 18 Fiora
1 14 0 0 16 Vi
2 8 0 8 17 Ahri
3 11 0 0 15 Lucian
4 12 1 2 16 Leona
5 7 0 0 16 Ryze
6 7 0 0 15 MasterYi
7 11 0 0 15 Pantheon
8 7 0 0 15 Jinx
9 12 0 0 13 Lux
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 10058 15079 10058
1 733 19135 733
2 3947 11124 3947
3 4976 8313 4976
4 3428 11809 3428
5 1357 7745 1357
6 0 27874 0
7 784 5594 784
8 2713 9169 2713
9 316 2559 316
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 4 1 1 False False
1 8 1 2 False False
2 4 2 0 False True
3 7 0 0 False False
4 3 2 0 False False
5 7 7 0 False False
6 11 3 1 False False
7 9 2 0 False False
8 7 0 1 False False
9 4 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 True False False
3 False True False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 16522 TOP 1
1 False 11534 JUNGLE 0
2 False 15470 MIDDLE 0
3 False 12572 BOTTOM 1
4 False 11633 UTILITY 0
5 False 12272 TOP 0
6 False 14676 JUNGLE 0
7 False 11402 MIDDLE 0
8 False 12999 BOTTOM 0
9 False 8158 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 6631 3042 3047 6609 3748 3044 3340
1 0 6632 2031 3047 6333 3067 3133 3340
2 0 3020 6656 3157 4629 4630 1058 3340
3 0 1055 3508 6673 3006 3094 3086 3340
4 0 3857 3068 3050 3075 3047 0 3364
5 2 3040 3110 3047 6655 1011 1052 3364
6 2 6691 6675 3006 6676 1018 1038 3364
7 2 6692 3053 0 3111 3071 0 3363
8 2 1055 6672 3006 3085 3031 1038 3340
9 2 3853 6655 3020 3165 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 3 12 6 2
1 0 2 0 1
2 3 13 8 2
3 1 5 2 1
4 3 6 2 1
5 1 2 2 2
6 2 11 5 2
7 1 5 2 1
8 2 6 2 1
9 0 2 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 1088 3705 1664
1 571 9138 509
2 764 95788 17227
3 724 7544 2315
4 546 41737 6142
5 510 189925 15343
6 550 5235 0
7 420 2181 1417
8 696 517 307
9 753 37781 14100
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 8123 24 1
1 7385 158 1
2 4331 16 0
3 6462 4 0
4 7381 4 0
5 4530 28 0
6 9389 150 0
7 6458 8 0
8 7061 36 0
9 3054 3 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 182161
1 1 2 142367
2 0 3 21203
3 0 4 96924
4 1 5 15593
5 0 6 10757
6 0 7 179062
7 0 8 110204
8 0 9 188149
9 0 10 2674
physicalDamageDealtToChampions physicalDamageTaken role \
0 15656 15833 NONE
1 12156 19039 NONE
2 1286 13686 SOLO
3 10976 12865 CARRY
4 2464 12599 SUPPORT
5 451 12934 SOLO
6 14895 20639 NONE
7 16161 16908 SOLO
8 16365 9841 CARRY
9 753 5909 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 5 4 5 14 297
1 17 11 5 4 220
2 3 4 7 14 495
3 5 4 6 7 198
4 4 4 5 14 262
5 1 12 5 4 199
6 4 4 11 11 252
7 6 4 3 14 325
8 6 4 5 7 168
9 6 4 6 3 127
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 Derben False 100 TOP 9
1 NaughtButSocks False 100 JUNGLE 27
2 Ila False 100 MIDDLE 26
3 Pòppy False 100 BOTTOM 0
4 Mommy Leona False 100 UTILITY 45
5 BF109G False 200 TOP 18
6 StalwartHide False 200 JUNGLE 7
7 Rotome False 200 MIDDLE 21
8 Coolgum15 False 200 BOTTOM 12
9 Alece False 200 UTILITY 58
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 2127 206784 27143
1 2127 165898 13394
2 2127 168201 23934
3 2127 104469 13291
4 2127 65751 9812
5 2127 200690 15802
6 2127 202675 19126
7 2127 114232 18427
8 2127 204969 19253
9 2127 40455 14854
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 25564 12185 239 289
1 29136 9265 16 234
2 18974 4765 195 104
3 21022 5840 147 0
4 21045 3008 65 96
5 22557 3578 214 606
6 33857 11147 54 124
7 28400 5212 155 35
8 18757 2982 223 31
9 10331 411 15 251
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 174 6 20916
1 224 1 14393
2 113 1 51210
3 199 3 0
4 68 1 8420
5 223 1 7
6 380 1 18376
7 277 1 1846
8 167 3 16303
9 91 1 0
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 9822 1607 3 3
1 728 2711 1 3
2 5421 957 0 3
3 0 1694 3 3
4 1205 1064 3 3
5 7 5092 2 10
6 4230 3828 0 10
7 848 5033 0 10
8 2580 1855 1 10
9 0 1367 0 10
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 19 1 2 12 True
1 26 1 3 10 True
2 32 2 5 14 True
3 10 0 2 5 True
4 71 2 7 26 True
5 29 7 5 11 False
6 27 3 6 4 False
7 39 2 2 10 False
8 19 0 3 12 False
9 52 0 5 27 False ,
assists baronKills bountyLevel champLevel championName \
0 2 0 0 14 Quinn
1 6 0 0 14 Kayn
2 6 0 0 14 Yasuo
3 3 0 0 13 Samira
4 6 0 0 11 Ivern
5 6 0 5 18 Yone
6 22 0 0 16 Nunu
7 5 0 7 16 Kayle
8 3 0 1 12 Kaisa
9 14 0 1 13 Morgana
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 7562 7562 7562
1 0 16781 0
2 417 417 417
3 663 663 663
4 0 0 0
5 5015 9652 5015
6 2767 17523 2767
7 8968 14163 8968
8 2984 7880 2984
9 1532 4866 1532
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 12 0 0 False False
1 7 0 0 False True
2 8 1 0 False False
3 7 0 0 True False
4 7 6 0 True False
5 5 1 0 False False
6 2 0 3 False False
7 3 2 1 False False
8 3 0 0 False False
9 4 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 True False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 11519 TOP 0
1 False 9910 JUNGLE 0
2 False 9800 MIDDLE 0
3 False 9144 BOTTOM 0
4 False 7565 UTILITY 0
5 False 15863 TOP 0
6 False 11589 JUNGLE 0
7 False 13907 MIDDLE 0
8 False 10421 BOTTOM 2
9 False 7871 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 2 3153 6672 3006 6676 0 0 3340
1 2 6693 1036 3158 3179 3134 1028 3363
2 2 3031 3006 6673 0 0 1055 3340
3 2 1055 6673 3006 6676 3123 0 3340
4 2 6617 3853 3158 6616 1052 0 3364
5 0 1055 3072 3006 6673 3031 1036 3340
6 0 3068 3742 3047 3076 1028 0 3340
7 0 1054 3006 3115 4633 1082 3191 3363
8 0 6671 1055 3006 6676 3086 1042 3363
9 0 3853 3020 6653 3191 1052 2424 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 6 2 1
1 1 3 2 2
2 1 2 2 1
3 0 3 0 1
4 1 3 2 1
5 3 15 6 1
6 1 2 2 1
7 3 13 7 4
8 2 8 4 2
9 1 3 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 409 77 77
1 657 8629 1989
2 805 13526 1637
3 656 8177 2779
4 667 5437 4232
5 384 33683 7285
6 728 62361 9545
7 823 102752 14108
8 936 8124 3128
9 655 28022 8997
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 9043 0 0
1 8086 139 0
2 10608 8 0
3 11421 0 0
4 6911 0 0
5 1940 32 0
6 4988 124 0
7 1712 16 0
8 2198 4 0
9 2081 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 125711
1 0 2 130015
2 0 3 120924
3 0 4 71895
4 0 5 4128
5 0 6 190222
6 0 7 26498
7 0 8 39222
8 0 9 75177
9 0 10 2695
physicalDamageDealtToChampions physicalDamageTaken role \
0 14640 14530 SOLO
1 11017 18019 NONE
2 13864 12873 SOLO
3 13581 10636 CARRY
4 2692 8932 SUPPORT
5 26533 20923 DUO
6 2355 25540 NONE
7 4734 14991 DUO
8 9609 10664 CARRY
9 1055 7482 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 5 14 4 4 190
1 15 11 4 4 75
2 7 14 5 4 169
3 3 4 5 7 210
4 5 4 5 3 110
5 4 4 6 14 251
6 2 4 19 11 168
7 4 4 3 12 324
8 1 7 2 4 63
9 5 14 3 4 158
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 Bueno Brian False 100 TOP 22
1 RexTheLord False 100 JUNGLE 8
2 wildlion1 False 100 MIDDLE 20
3 TrollKing023 False 100 BOTTOM 0
4 PatimusGG False 100 UTILITY 40
5 StalwartHide False 200 TOP 22
6 Coolgum15 False 200 JUNGLE 32
7 Rotome False 200 MIDDLE 9
8 Dublaiar False 200 BOTTOM 1
9 AlexAve False 200 UTILITY 37
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1743 146911 16884
1 1743 152837 13530
2 1743 138309 16974
3 1743 88828 16360
4 1743 9955 7175
5 1743 239076 38730
6 1743 149968 12560
7 1743 144076 19643
8 1743 83825 12923
9 1743 31183 10518
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 25872 2776 186 100
1 28109 11028 43 234
2 25073 5523 177 111
3 22790 5133 151 0
4 16241 2090 8 149
5 23595 6685 221 121
6 31269 20620 32 330
7 18663 7111 212 337
8 13225 4141 135 23
9 10184 1840 8 58
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 379 1 21122
1 208 1 14192
2 268 1 3858
3 219 2 8755
4 212 5 390
5 169 1 15170
6 67 1 61108
7 120 5 2100
8 79 2 522
9 128 5 466
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 2166 2299 2 9
1 524 2003 0 9
2 1473 1590 0 9
3 0 732 0 9
4 250 397 0 9
5 4910 731 2 3
6 660 740 1 3
7 801 1958 5 3
8 184 362 1 3
9 466 620 0 3
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 12 0 1 6 False
1 19 0 8 1 False
2 23 2 2 9 False
3 15 0 3 8 False
4 48 6 5 19 False
5 12 1 1 10 True
6 15 0 2 7 True
7 14 3 1 10 True
8 15 0 0 9 True
9 29 0 1 12 True ,
assists baronKills bountyLevel champLevel championName \
0 3 0 0 16 Sett
1 9 0 0 14 Nunu
2 4 0 0 16 Kayle
3 8 0 0 14 Jhin
4 4 0 2 13 Lulu
5 11 0 0 16 Aatrox
6 5 1 0 15 MasterYi
7 5 0 0 16 Cassiopeia
8 6 0 0 16 Kaisa
9 10 0 1 13 Thresh
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2592 5465 2592
1 263 13662 263
2 3432 7822 3432
3 0 1101 0
4 0 0 0
5 4016 9624 4016
6 2314 24177 2314
7 2415 3264 2415
8 6601 26224 6601
9 491 1692 491
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 1 0 False False
1 9 1 0 True False
2 6 1 1 False True
3 5 0 0 False False
4 8 0 0 False False
5 3 5 1 False False
6 8 2 3 False False
7 8 2 0 False False
8 2 1 0 False False
9 3 3 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 13220 TOP 0
1 False 9361 JUNGLE 0
2 False 15259 MIDDLE 0
3 False 7797 BOTTOM 0
4 False 7898 UTILITY 0
5 False 10833 TOP 1
6 False 14076 JUNGLE 0
7 False 12896 MIDDLE 1
8 False 15576 BOTTOM 0
9 False 8377 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 2 1055 6693 6676 3006 3072 1038 3340
1 2 3068 2031 3111 3075 3066 0 3340
2 2 3089 3157 3006 4633 3115 0 3363
3 2 6671 3009 1018 3134 1037 1055 3340
4 2 3853 6617 3158 6616 3114 0 3364
5 0 6630 1054 3053 3047 3211 1028 3364
6 0 6691 3006 6676 3153 1031 3133 3340
7 0 3157 1058 1058 3116 6655 3070 3340
8 0 6671 2420 3046 3031 3006 6676 3363
9 0 3857 3190 3050 3117 3067 2055 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 4 10 3 1
1 0 0 0 0
2 5 11 3 2
3 0 0 0 0
4 1 3 2 1
5 0 1 0 1
6 5 15 4 2
7 2 6 2 2
8 1 10 9 2
9 0 3 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 536 447 0
1 419 63986 7485
2 702 100282 16054
3 895 1560 959
4 375 22598 5235
5 786 0 0
6 452 4783 124
7 494 124622 26535
8 1841 15886 7276
9 846 8560 3986
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 5699 8 0
1 9488 130 0
2 13684 16 0
3 4833 4 0
4 5897 0 0
5 4171 4 0
6 6310 144 0
7 11015 12 0
8 5839 23 0
9 4941 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 133191
1 0 2 25545
2 0 3 35550
3 0 4 60269
4 0 5 3584
5 0 6 108110
6 0 7 137946
7 0 8 8760
8 0 9 186391
9 0 10 7114
physicalDamageDealtToChampions physicalDamageTaken role \
0 28500 22927 SOLO
1 1019 28354 NONE
2 3933 11234 SOLO
3 6429 7571 CARRY
4 1060 11457 SUPPORT
5 11140 18725 SOLO
6 21237 21292 NONE
7 854 13716 SOLO
8 18873 10810 CARRY
9 1147 6953 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 5 4 6 14 251
1 3 4 20 11 168
2 4 4 4 12 324
3 3 7 3 4 63
4 5 4 4 14 127
5 3 12 3 4 288
6 18 11 7 14 355
7 6 6 5 4 57
8 4 7 3 4 267
9 3 4 4 14 96
summonerName teamEarlySurrendered teamId teamPosition \
0 StalwartHide False 100 TOP
1 Coolgum15 False 100 JUNGLE
2 Rotome False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 Alece False 100 UTILITY
5 LiNKLANDiN False 200 TOP
6 3l Vato False 200 JUNGLE
7 iNNovationGecko False 200 MIDDLE
8 Thea ssaulterqfe False 200 BOTTOM
9 Carol19 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 27 2000 141161 31092
1 27 2000 157564 8980
2 8 2000 138153 20687
3 24 2000 62088 7449
4 29 2000 33246 6689
5 13 2000 117725 11140
6 6 2000 166045 26410
7 54 2000 133602 27507
8 2 2000 205732 26517
9 23 2000 20391 5613
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 30138 7492 154 208
1 39992 16675 23 338
2 25465 7861 203 343
3 13358 1838 112 91
4 18207 2544 29 289
5 24127 5531 168 120
6 29707 12632 17 102
7 25032 6954 191 599
8 18025 8940 235 46
9 12107 537 27 60
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 272 1 7521
1 258 1 68033
2 193 5 2321
3 88 2 258
4 228 5 7064
5 116 1 9615
6 236 1 23315
7 231 1 220
8 50 2 3455
9 98 4 4716
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 2592 1511 1 10
1 476 2149 0 10
2 699 546 0 10
3 60 953 0 10
4 394 852 0 10
5 0 1230 1 2
6 5048 2103 0 2
7 118 299 1 2
8 367 1376 2 2
9 480 211 1 2
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 30 1 4 12 False
1 23 1 2 9 False
2 19 1 2 8 False
3 16 0 1 8 False
4 36 0 5 15 False
5 32 5 7 10 True
6 27 2 2 12 True
7 27 2 2 11 True
8 23 2 1 9 True
9 55 4 2 23 True ,
assists baronKills bountyLevel champLevel championName \
0 7 0 0 17 Teemo
1 4 0 0 15 Sion
2 6 0 0 16 Annie
3 3 0 0 14 Kaisa
4 6 0 0 14 Zyra
5 9 0 6 18 Ryze
6 19 0 0 18 Nunu
7 7 0 3 18 Talon
8 7 1 3 16 Jhin
9 23 0 1 16 Maokai
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2976 4665 2976
1 777 16368 777
2 796 10499 796
3 2778 4325 2778
4 1039 2408 1039
5 4702 36407 4702
6 2366 20970 2366
7 6109 19483 6109
8 5244 13704 5244
9 1423 4756 1423
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 11 1 0 False False
1 6 2 0 False False
2 14 0 0 False False
3 9 1 0 False False
4 10 0 0 False False
5 6 0 0 False False
6 5 0 4 True False
7 3 0 1 False True
8 5 0 0 False False
9 8 5 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 True False False
7 False False False
8 True False False
9 False True False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 13050 TOP 0
1 False 11999 JUNGLE 0
2 False 13687 MIDDLE 0
3 False 10579 BOTTOM 0
4 False 10048 UTILITY 0
5 False 16871 TOP 0
6 False 14587 JUNGLE 0
7 False 15566 MIDDLE 0
8 False 15793 BOTTOM 0
9 False 11295 UTILITY 1
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 6653 2033 3020 4637 3089 3916 3340
1 1 6662 3142 0 3111 3076 6676 3340
2 1 3020 6655 2420 3135 3089 3108 3364
3 1 1055 3006 6676 6672 3086 1036 3340
4 1 3853 6653 3116 3158 1011 1052 3364
5 0 3040 6656 1058 3158 4629 3102 3364
6 0 3111 4401 3068 3001 3742 1028 3340
7 0 6693 3142 3111 3814 6694 3077 3340
8 0 6671 3009 6676 3094 3036 1031 3340
9 0 4005 3857 3020 4637 2055 4401 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 7 3 1
1 2 6 3 2
2 1 7 3 2
3 0 3 0 1
4 1 4 3 1
5 2 11 6 2
6 0 4 0 1
7 3 14 5 1
8 4 18 6 2
9 0 3 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 655 120998 34122
1 709 41741 2452
2 365 121204 23877
3 486 5724 2224
4 424 68647 29427
5 674 282709 32607
6 583 84295 9878
7 1336 0 0
8 663 6422 2524
9 498 47875 17753
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 20579 9 0
1 16641 137 0
2 10348 18 0
3 6433 3 0
4 11227 4 0
5 21785 30 0
6 19122 147 0
7 14918 4 0
8 18107 12 0
9 21617 4 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 29851
1 0 2 152730
2 0 3 9773
3 0 4 112410
4 0 5 2732
5 0 6 13756
6 0 7 31395
7 0 8 159548
8 0 9 102115
9 0 10 8756
physicalDamageDealtToChampions physicalDamageTaken role \
0 3539 11801 SOLO
1 13029 20621 DUO
2 815 16882 DUO
3 9208 13495 DUO
4 862 9428 DUO
5 897 10518 SOLO
6 1935 29238 NONE
7 27409 7416 SOLO
8 20755 4011 CARRY
9 1753 15816 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 5 4 7 14 247
1 13 11 2 4 264
2 5 14 4 4 182
3 2 4 2 7 120
4 4 4 5 14 178
5 5 4 6 12 251
6 2 4 22 11 168
7 4 4 8 14 126
8 4 7 3 4 63
9 5 4 4 14 324
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 Jobili False 100 TOP 45
1 theRytex False 100 JUNGLE 34
2 guacqt False 100 MIDDLE 26
3 Fledge8 False 100 BOTTOM 0
4 lalaland1121 False 100 UTILITY 66
5 StalwartHide False 200 TOP 37
6 Coolgum15 False 200 JUNGLE 29
7 Alece False 200 MIDDLE 3
8 Dublaiar False 200 BOTTOM 19
9 Rotome False 200 UTILITY 81
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 2246 155256 39683
1 2246 205981 16568
2 2246 133764 25998
3 2246 125979 11875
4 2246 72356 31265
5 2246 301001 34538
6 2246 202123 12214
7 2246 172116 28087
8 2246 110001 24328
9 2246 61717 19891
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 32976 4247 194 488
1 38292 8016 49 1157
2 27846 930 180 202
3 20657 3845 180 0
4 21231 2324 44 246
5 34587 7696 240 114
6 49835 30052 54 380
7 22840 5311 191 173
8 22337 6945 134 112
9 38783 13480 42 380
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 485 1 4407
1 151 1 11510
2 499 1 2786
3 256 2 7844
4 304 1 976
5 225 1 4534
6 147 1 86433
7 139 1 12567
8 199 3 1463
9 220 5 5085
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 2022 595 0 9
1 1086 1030 2 9
2 1306 615 1 9
3 442 728 0 9
4 976 575 0 9
5 1034 2284 2 3
6 400 1474 2 3
7 677 505 3 3
8 1048 218 0 3
9 384 1350 2 3
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 21 1 1 9 False
1 42 3 0 13 False
2 15 0 0 8 False
3 20 1 2 10 False
4 64 0 2 31 False
5 11 0 0 2 True
6 22 0 1 9 True
7 17 0 1 10 True
8 17 0 3 9 True
9 55 6 4 23 True ,
assists baronKills bountyLevel champLevel championName \
0 9 0 0 15 Gangplank
1 4 1 3 14 MasterYi
2 12 0 13 17 TwistedFate
3 13 0 1 13 Ashe
4 14 0 7 13 Seraphine
5 3 0 0 14 Alistar
6 5 0 0 13 Sejuani
7 4 0 0 14 Talon
8 4 0 0 13 Jhin
9 5 0 0 11 Maokai
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2986 9199 2986
1 4698 51917 4698
2 6214 8491 6214
3 8069 15550 8069
4 1362 7681 1362
5 0 2532 0
6 0 2955 0
7 0 0 0
8 0 245 0
9 0 372 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 0 0 False False
1 6 0 2 False False
2 1 1 0 False True
3 4 0 1 False False
4 0 0 1 False False
5 6 2 0 False False
6 6 1 0 False False
7 8 0 0 False False
8 7 0 0 False False
9 9 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False True False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 10804 TOP 1
1 True 11750 JUNGLE 0
2 True 15467 MIDDLE 0
3 True 11022 BOTTOM 1
4 True 10266 UTILITY 0
5 True 8147 TOP 0
6 True 10401 JUNGLE 0
7 True 8912 MIDDLE 0
8 True 7692 BOTTOM 0
9 True 6224 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 2033 3508 3047 6673 1037 2055 3340
1 0 6672 3153 6677 3006 1042 1018 3340
2 0 6656 3157 3100 3158 3041 2015 3340
3 0 6672 3006 3046 3035 0 0 3363
4 0 3853 6617 3158 6616 3011 3114 3364
5 2 3068 2033 1029 3047 0 3075 3340
6 2 3068 3801 3111 3075 3067 1011 3340
7 2 6693 3111 2031 3814 3134 0 3340
8 2 6671 3009 1018 3134 1037 1055 3340
9 2 4005 3853 3158 2055 1052 1011 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 2 0 1
1 2 8 3 2
2 1 14 13 2
3 1 5 3 2
4 1 7 7 2
5 1 3 2 1
6 3 7 2 1
7 1 3 2 1
8 0 1 0 1
9 0 2 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 474 4618 4198
1 367 6080 155
2 352 117025 24589
3 702 1430 1430
4 0 36003 8019
5 886 67365 10715
6 498 53898 5416
7 375 0 0
8 684 2048 401
9 529 26183 9736
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 9519 8 0
1 4307 136 0
2 6409 44 0
3 5136 18 0
4 3785 23 0
5 9234 6 0
6 9701 120 0
7 7798 4 0
8 3999 0 0
9 9671 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 129947
1 0 2 147027
2 0 3 20564
3 0 4 87331
4 0 5 7484
5 0 6 15757
6 0 7 69035
7 0 8 112321
8 0 9 76142
9 0 10 1914
physicalDamageDealtToChampions physicalDamageTaken role \
0 13912 12234 SOLO
1 10887 18987 NONE
2 1899 9730 SOLO
3 11606 9005 CARRY
4 1145 4592 SUPPORT
5 3063 14330 SOLO
6 7011 19859 NONE
7 11182 9630 SOLO
8 4303 7377 CARRY
9 514 8654 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 5 4 2 12 160
1 4 4 14 11 120
2 5 14 4 4 272
3 2 4 3 7 128
4 0 4 2 14 86
5 4 4 3 12 251
6 4 4 16 11 168
7 4 4 5 14 126
8 2 7 2 4 63
9 2 4 4 3 324
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 Okamakiri False 100 TOP 10
1 Ganjaseed False 100 JUNGLE 6
2 ExcuseMyLag False 100 MIDDLE 55
3 Masaomi False 100 BOTTOM 32
4 Arizhomango False 100 UTILITY 21
5 StalwartHide False 200 TOP 45
6 Coolgum15 False 200 JUNGLE 28
7 Alece False 200 MIDDLE 2
8 Dublaiar False 200 BOTTOM 13
9 Rotome False 200 UTILITY 41
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1747 154142 21198
1 1747 188525 17625
2 1747 141717 27167
3 1747 96238 14727
4 1747 44419 9656
5 1747 85508 13778
6 1747 131144 13806
7 1747 113666 12227
8 1747 91751 4705
9 1747 28544 10697
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 22549 7325 168 239
1 23610 9334 28 183
2 17280 6215 150 214
3 14598 2520 124 514
4 8541 8816 13 149
5 27931 6914 123 207
6 33657 8246 18 323
7 18733 871 175 187
8 12785 1690 153 70
9 19678 1947 12 280
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 168 1 19576
1 159 1 35418
2 16 1 4127
3 133 2 7476
4 0 5 932
5 191 5 2385
6 151 5 8210
7 208 1 1345
8 178 2 13560
9 250 1 447
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 3086 795 0 0
1 6582 315 2 0
2 678 1139 2 0
3 1690 456 5 0
4 492 162 0 0
5 0 4366 0 10
6 1378 4096 0 10
7 1045 1304 0 10
8 0 1409 0 10
9 447 1352 0 10
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 11 3 0 7 True
1 11 0 0 4 True
2 28 1 2 10 True
3 15 0 1 7 True
4 32 0 3 14 True
5 16 2 0 11 False
6 24 1 1 7 False
7 16 0 1 9 False
8 11 0 0 8 False
9 23 4 2 11 False ,
assists baronKills bountyLevel champLevel championName \
0 10 1 4 18 Urgot
1 12 0 1 18 Vi
2 11 0 0 18 Kayle
3 10 0 0 18 Jhin
4 11 0 3 18 Brand
5 19 1 0 18 Nunu
6 14 0 0 18 Gnar
7 12 0 0 18 Velkoz
8 13 0 0 17 MissFortune
9 21 0 0 17 Karma
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 5525 24903 5525
1 423 24280 423
2 12297 33133 12297
3 2032 5531 2032
4 1257 8579 1257
5 573 23693 573
6 4515 10316 4515
7 1504 10551 1504
8 2028 7278 2028
9 975 1999 975
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 2 0 False False
1 9 1 2 False False
2 7 1 0 False False
3 8 1 0 False False
4 10 1 1 False False
5 9 0 3 False False
6 6 1 0 False True
7 7 3 0 False False
8 12 1 1 False False
9 12 4 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False True False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 20514 TOP 3
1 False 17533 JUNGLE 0
2 False 16758 MIDDLE 1
3 False 17421 BOTTOM 0
4 False 14087 UTILITY 0
5 False 16536 JUNGLE 0
6 False 19145 TOP 0
7 False 15412 MIDDLE 0
8 False 14004 BOTTOM 0
9 False 9895 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3075 6631 3053 3748 3071 3047 3340
1 0 3078 6333 3077 3053 3071 3047 3364
2 0 3089 3006 3115 4633 4632 3165 3363
3 0 3009 6671 6676 3094 3031 3033 3340
4 0 3853 3157 3111 3165 6653 1011 3364
5 4 3068 3742 3047 3075 3065 3105 3364
6 4 3071 3047 6631 3742 3053 3075 3340
7 4 4629 6653 3011 3158 3070 4637 3363
8 4 6671 3123 3009 6676 3036 1038 3363
9 4 3853 6617 6616 3158 3504 2055 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 7 4 1
1 2 10 3 2
2 2 6 3 1
3 3 12 3 2
4 2 11 3 3
5 3 13 6 1
6 4 15 7 2
7 2 6 3 3
8 2 6 3 3
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 427 5268 962
1 843 8664 0
2 860 195867 20749
3 1039 10986 4415
4 556 87684 38332
5 632 99993 22094
6 805 22471 7348
7 537 207113 28790
8 538 5442 2283
9 695 43138 11586
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 18695 44 0
1 17507 190 0
2 10859 42 0
3 13833 0 0
4 12872 4 0
5 20113 129 0
6 13946 6 0
7 9603 11 0
8 12971 16 0
9 11336 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 302598
1 0 2 217961
2 0 3 48640
3 0 4 130661
4 0 5 3084
5 0 6 30453
6 0 7 202845
7 0 8 16051
8 0 9 162913
9 0 10 4418
physicalDamageDealtToChampions physicalDamageTaken role \
0 35310 25914 SOLO
1 37425 26432 NONE
2 4468 13870 SOLO
3 27769 12645 CARRY
4 873 11794 SUPPORT
5 3675 44795 NONE
6 35017 37575 SOLO
7 764 15545 SOLO
8 23211 23402 CARRY
9 493 16016 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 6 12 6 4 235
1 7 4 25 11 250
2 6 4 5 12 323
3 5 7 5 4 158
4 6 4 4 14 167
5 5 4 18 11 122
6 6 12 6 4 213
7 6 4 8 3 366
8 4 4 8 7 127
9 6 14 6 4 226
summonerName teamEarlySurrendered teamId teamPosition \
0 Kid Renny False 100 TOP
1 StalwartHide False 100 JUNGLE
2 Rotome False 100 MIDDLE
3 AlexAve False 100 BOTTOM
4 Coolgum15 False 100 UTILITY
5 Ir0nRang3r False 200 JUNGLE
6 Turtlesrcooler False 200 TOP
7 Chızuru Mizuhara False 200 MIDDLE
8 jjja380 False 200 BOTTOM
9 yujb False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 34 2556 317472 40915
1 51 2556 239567 40167
2 7 2556 264931 26191
3 31 2556 145807 33027
4 28 2556 98234 44732
5 60 2556 199887 26404
6 70 2556 236901 43565
7 43 2556 255027 37479
8 10 2556 177114 26149
9 24 2556 48778 13301
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 48274 9504 294 350
1 47493 15358 35 406
2 27379 12296 227 312
3 27194 6505 180 137
4 26080 2468 55 48
5 69376 30958 60 541
6 56362 15897 234 759
7 26301 4242 252 355
8 39020 12607 213 168
9 28973 7150 45 171
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 258 1 9605
1 421 1 12942
2 307 5 20423
3 389 4 4159
4 388 1 7465
5 358 1 69440
6 320 1 11584
7 244 1 31863
8 437 4 8759
9 451 5 1222
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 4642 3664 3 5
1 2741 3552 1 5
2 972 2649 4 5
3 842 714 1 5
4 5525 1413 0 5
5 634 4467 0 11
6 1200 4839 1 11
7 7925 1151 1 11
8 653 2645 0 11
9 1222 1619 1 11
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 34 2 3 15 True
1 31 1 8 2 True
2 29 1 5 11 True
3 16 2 1 9 True
4 72 1 8 29 True
5 19 0 2 6 False
6 21 1 0 13 False
7 41 4 2 14 False
8 33 1 2 14 False
9 74 5 4 41 False ,
assists baronKills bountyLevel champLevel championName \
0 4 0 2 14 Sett
1 11 0 0 13 Karthus
2 7 1 3 14 Azir
3 5 0 4 12 Vayne
4 16 0 0 11 Sona
5 4 0 0 11 Rell
6 3 0 0 11 Warwick
7 1 0 0 13 Kayle
8 2 0 0 11 Jhin
9 5 0 0 10 Rammus
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 9261 10941 9261
1 0 21822 0
2 5961 16505 5961
3 6813 19495 6813
4 1347 3110 1347
5 0 3217 0
6 0 2576 0
7 1099 1099 1099
8 0 416 0
9 318 318 318
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 3 1 0 False False
1 1 1 3 True False
2 1 2 0 False False
3 1 1 1 False True
4 4 3 0 True False
5 5 0 0 False False
6 5 0 0 False False
7 4 0 0 False False
8 3 3 0 False False
9 5 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 9939 TOP 0
1 False 9307 JUNGLE 0
2 False 9543 MIDDLE 1
3 False 10618 BOTTOM 1
4 False 7125 UTILITY 0
5 False 5873 TOP 0
6 False 6202 JUNGLE 0
7 False 9219 MIDDLE 0
8 False 6311 BOTTOM 0
9 False 5350 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3153 6029 0 1055 3111 3742 3364
1 0 6653 2031 3020 4637 1026 0 3340
2 0 1056 1052 3020 6653 2003 3157 3340
3 0 1055 0 1018 3046 3006 6672 3363
4 0 3158 2031 3853 6617 3114 1057 3364
5 2 1056 4629 1052 1058 1001 3070 3340
6 2 3077 3047 3044 3067 3057 0 3340
7 2 1054 3115 3006 4633 2055 1058 3340
8 2 1055 6671 2031 3009 3134 0 3340
9 2 6664 3076 3857 0 0 3111 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 5 2 1
1 1 3 3 1
2 2 5 3 1
3 2 8 4 4
4 0 1 0 1
5 1 2 2 1
6 0 1 0 1
7 1 4 2 2
8 0 2 0 1
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 456 399 145
1 1368 125992 8042
2 742 85048 13221
3 1096 240 61
4 583 7937 4285
5 453 30040 5962
6 565 26953 1773
7 658 53259 7892
8 600 2607 280
9 610 9209 4265
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 7564 10 0
1 5690 160 0
2 3305 4 0
3 3905 10 0
4 3373 0 0
5 3134 4 0
6 6682 80 0
7 9345 0 0
8 4407 0 0
9 3671 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 93318
1 0 2 5509
2 0 3 10240
3 0 4 73508
4 0 5 2490
5 0 6 9725
6 0 7 39535
7 0 8 23474
8 0 9 41275
9 0 10 4667
physicalDamageDealtToChampions physicalDamageTaken role \
0 11841 11047 NONE
1 93 15010 NONE
2 184 3031 SOLO
3 11645 5672 CARRY
4 982 7023 SUPPORT
5 364 9413 SOLO
6 1305 14018 NONE
7 1722 3261 SOLO
8 6264 4563 CARRY
9 1005 7892 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 12 3 4 428
1 2 4 12 11 208
2 2 12 3 4 223
3 3 7 3 4 615
4 3 4 5 14 524
5 2 4 2 14 250
6 4 4 14 11 167
7 1 4 2 12 323
8 4 7 3 4 158
9 3 4 4 14 183
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 TRUTANK False 100 TOP 19
1 KingCharles66 False 100 JUNGLE 4
2 Drago2706 False 100 MIDDLE 9
3 August Mesto False 100 BOTTOM 5
4 GnarlyCarly False 100 UTILITY 10
5 StalwartHide False 200 TOP 9
6 Coolgum15 False 200 JUNGLE 13
7 Rotome False 200 MIDDLE 7
8 AlexAve False 200 BOTTOM 11
9 ForlornTimbal False 200 UTILITY 27
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1390 105492 13063
1 1390 141824 8315
2 1390 98808 13406
3 1390 93333 15248
4 1390 11088 5928
5 1390 42231 6672
6 1390 74264 3406
7 1390 78448 9791
8 1390 47403 6545
9 1390 19910 5902
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 18888 3970 131 143
1 20753 12333 11 119
2 6336 569 161 125
3 10328 4721 145 18
4 10798 6713 2 23
5 13750 734 85 47
6 21889 10187 18 222
7 12771 2339 172 267
8 9590 2212 109 49
9 13847 707 39 389
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 84 1 11774
1 0 1 10321
2 30 1 3520
3 33 2 19583
4 63 5 660
5 118 2 2465
6 100 1 7774
7 104 5 1715
8 33 3 3520
9 102 5 6032
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1076 276 2 0
1 178 52 1 0
2 0 0 2 0
3 3542 749 4 0
4 660 402 0 0
5 346 1202 0 9
6 326 1188 0 9
7 175 165 0 9
8 0 618 0 9
9 632 2283 1 9
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 11 1 0 7 True
1 25 1 1 7 True
2 20 2 1 9 True
3 21 1 3 8 True
4 45 3 1 19 True
5 10 0 0 7 False
6 12 0 0 7 False
7 1 1 0 1 False
8 15 4 0 9 False
9 35 0 9 12 False ,
assists baronKills bountyLevel champLevel championName \
0 5 0 0 14 Poppy
1 3 0 0 13 Viego
2 7 0 0 15 Neeko
3 2 0 1 14 Viktor
4 6 0 0 13 Thresh
5 4 1 2 18 Nasus
6 12 0 0 15 Warwick
7 10 0 9 17 Kayle
8 16 0 8 15 Jhin
9 11 0 0 15 Pyke
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 251 251 251
1 0 8329 0
2 2362 2362 2362
3 1919 3854 1919
4 553 553 553
5 8120 35915 8120
6 5206 25639 5206
7 7966 14492 7966
8 2156 9791 2156
9 2367 6584 2367
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 0 0 False False
1 10 2 1 True False
2 6 0 0 False False
3 6 0 0 True False
4 8 2 0 False True
5 2 0 0 False False
6 5 1 2 False False
7 2 3 0 False False
8 1 0 1 False False
9 4 0 1 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 True False False
6 False True False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 7923 TOP 0
1 False 10425 JUNGLE 0
2 False 9068 MIDDLE 0
3 False 13366 BOTTOM 0
4 False 6864 UTILITY 0
5 False 15592 TOP 1
6 False 11413 JUNGLE 0
7 False 15541 MIDDLE 2
8 False 12650 BOTTOM 0
9 False 12775 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 3 2033 3075 3047 6662 1029 1029 3340
1 3 3153 6672 3047 3123 1031 1036 3364
2 3 6655 1056 3020 4628 4632 0 3340
3 3 3040 3108 3020 6655 3100 3067 3340
4 3 3857 3190 3067 3117 3024 0 3364
5 0 1055 6692 3009 3181 3072 3074 3340
6 0 6632 2031 3077 3047 3211 3067 3340
7 0 3089 3191 3006 3115 4633 3041 3363
8 0 6671 1055 3009 6676 3094 1018 3340
9 0 3857 6693 3117 3179 3814 3134 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 0 0 0
1 2 5 2 2
2 1 3 2 1
3 2 5 2 2
4 0 1 0 1
5 2 7 4 2
6 1 3 2 1
7 1 10 9 2
8 1 8 8 3
9 2 9 6 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 485 25171 2793
1 580 12212 1601
2 442 121967 14826
3 872 185668 27376
4 879 12011 3037
5 658 11910 2646
6 720 40378 4496
7 385 154678 18434
8 1033 10242 1926
9 770 0 0
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 5411 0 0
1 9761 100 0
2 5323 0 0
3 3260 4 0
4 4887 0 0
5 9198 72 0
6 13015 124 0
7 7243 48 0
8 5181 4 0
9 17658 4 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 59626
1 0 2 95754
2 0 3 11708
3 0 4 17713
4 0 5 7356
5 0 6 262845
6 0 7 71342
7 0 8 46178
8 0 9 98557
9 0 10 27284
physicalDamageDealtToChampions physicalDamageTaken role \
0 5998 17129 SOLO
1 10078 21441 NONE
2 995 9892 SOLO
3 968 11410 CARRY
4 227 15047 SUPPORT
5 14491 13392 SOLO
6 4200 18246 NONE
7 4076 6345 SOLO
8 16525 2515 CARRY
9 10989 5028 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 2 12 18
1 14 11 4 4 10
2 6 14 4 4 127
3 4 4 4 7 26
4 2 4 0 14 26
5 4 4 3 12 13
6 15 11 3 4 21
7 3 4 2 12 21
8 1 7 1 4 62
9 3 4 5 14 167
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 TheBonzerBunny False 100 TOP 23
1 3sinks False 100 JUNGLE 14
2 mommy machine False 100 MIDDLE 50
3 hømosexual False 100 BOTTOM 21
4 Riley Jareid False 100 UTILITY 16
5 RyeBreadPitt False 200 TOP 11
6 No377D False 200 JUNGLE 28
7 KidNolke False 200 MIDDLE 6
8 Dublaiar False 200 BOTTOM 31
9 Coolgum15 False 200 UTILITY 36
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1861 87403 8791
1 1861 118134 12883
2 1861 138086 16882
3 1861 203382 28344
4 1861 23309 3265
5 1861 276476 17137
6 1861 126171 9478
7 1861 209179 23684
8 1861 110912 18633
9 1861 38408 14577
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 23241 2481 145 782
1 32737 9847 50 256
2 16274 3060 166 269
3 15392 4965 258 443
4 21644 1166 43 49
5 22830 7571 229 84
6 32409 17759 34 246
7 14131 8873 226 342
8 7875 3602 151 152
9 22842 6539 36 154
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 220 1 2605
1 311 2 10167
2 166 1 4410
3 175 2 0
4 238 5 3942
5 77 1 1720
6 146 1 14450
7 51 5 8320
8 27 2 2111
9 90 1 11124
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 700 1 11
1 1203 1535 0 11
2 1060 1058 0 11
3 0 722 1 11
4 0 1708 0 11
5 0 239 3 2
6 782 1147 3 2
7 1174 542 4 2
8 181 178 1 2
9 3588 155 0 2
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 6 0 0 4 False
1 22 3 7 4 False
2 15 0 1 9 False
3 13 0 0 9 False
4 14 2 1 8 False
5 15 0 0 10 True
6 29 1 1 9 True
7 20 3 0 9 True
8 17 0 2 10 True
9 23 0 1 13 True ,
assists baronKills bountyLevel champLevel championName \
0 3 0 0 12 Aatrox
1 3 0 0 12 Kayn
2 9 0 2 13 Sion
3 4 0 0 12 Tristana
4 19 0 2 12 Zyra
5 2 0 0 14 Kayle
6 2 0 0 11 Yone
7 1 0 0 11 Ryze
8 4 0 0 9 Jhin
9 3 0 0 10 Nautilus
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 1988 5404 1988
1 151 19696 151
2 7382 11804 7382
3 9994 12527 9994
4 3162 5449 3162
5 604 604 604
6 0 6720 0
7 137 137 137
8 2129 2219 2129
9 1298 1376 1298
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 4 0 0 False False
1 5 2 0 False False
2 1 1 1 False False
3 4 1 0 True False
4 3 1 0 False True
5 4 1 0 False False
6 6 1 1 False False
7 9 1 0 False False
8 7 0 0 False False
9 8 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 True False False
3 False True False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 5824 TOP 0
1 False 7437 JUNGLE 1
2 False 10975 MIDDLE 0
3 False 10209 BOTTOM 0
4 False 9927 UTILITY 0
5 False 9644 TOP 0
6 False 7754 JUNGLE 0
7 False 4723 MIDDLE 0
8 False 5311 BOTTOM 0
9 False 5652 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1054 2003 6630 1029 3111 0 3340
1 0 2031 6693 3134 3158 3134 1036 3363
2 0 1054 3047 3181 6693 3134 1036 3340
3 0 6671 1055 3006 3046 1038 1037 3340
4 0 3853 3165 0 6653 3020 0 3364
5 1 1056 3115 3006 4633 2055 3191 3340
6 1 6673 2031 1018 3006 1038 0 3364
7 1 3070 3157 0 3802 2422 0 3340
8 1 6671 1055 3009 1036 0 0 3340
9 1 3859 1001 3190 3067 1029 0 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 0 0 0 0
1 1 4 3 2
2 2 13 11 4
3 4 10 4 2
4 3 7 2 1
5 3 9 3 1
6 2 6 3 1
7 0 0 0 0
8 0 0 0 0
9 0 2 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 675 0 0
1 307 8557 1058
2 998 10294 1895
3 565 16009 2195
4 542 52663 21287
5 764 55112 15874
6 492 17172 1778
7 350 41500 4514
8 359 1008 136
9 276 11288 3102
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 7228 0 0
1 6888 120 0
2 6990 31 0
3 2971 16 0
4 3527 0 0
5 6223 0 0
6 6450 84 0
7 5183 0 0
8 4371 0 0
9 5950 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 43872
1 0 2 108282
2 0 3 90753
3 0 4 77898
4 0 5 4902
5 0 6 24702
6 0 7 59100
7 0 8 6888
8 0 9 36848
9 0 10 4749
physicalDamageDealtToChampions physicalDamageTaken role \
0 1714 5585 NONE
1 8324 16884 NONE
2 15550 6477 SOLO
3 8776 9463 SOLO
4 1912 6465 SOLO
5 5506 10688 SOLO
6 5888 11757 NONE
7 85 10875 SOLO
8 2595 6415 CARRY
9 1127 8723 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 0 4 2 12 12
1 13 11 4 4 26
2 3 4 5 14 26
3 3 7 3 4 28
4 3 4 4 14 19
5 2 4 1 12 20
6 4 4 12 11 13
7 2 12 4 4 21
8 2 7 2 4 62
9 4 4 4 14 167
summonerName teamEarlySurrendered teamId teamPosition \
0 VengfulBlue False 100 TOP
1 sneakyskid False 100 JUNGLE
2 redmoonbella False 100 MIDDLE
3 o ReGuLaToR o False 100 BOTTOM
4 celestialcat123 False 100 UTILITY
5 KidNolke False 200 TOP
6 RyeBreadPitt False 200 JUNGLE
7 SoldOrgansForLPs False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 Coolgum15 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 3 1268 52022 1714
1 7 1268 127844 10057
2 46 1268 102198 18278
3 2 1268 94140 11101
4 56 1268 57841 23475
5 9 1268 80544 22036
6 14 1268 81939 9239
7 9 1268 48389 4600
8 10 1268 37856 2732
9 29 1268 21000 5095
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 13212 1501 94 43
1 25347 13007 8 222
2 14345 431 102 425
3 12844 5386 109 27
4 10827 2695 32 217
5 17356 6239 145 227
6 18525 6029 17 239
7 16900 108 79 56
8 10836 1454 84 53
9 14934 319 26 228
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 98 1 8150
1 91 1 11005
2 38 1 1149
3 115 2 232
4 67 1 276
5 108 4 729
6 134 1 5666
7 228 1 0
8 133 2 0
9 133 5 4962
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 398 0 1
1 674 1573 2 1
2 831 878 1 1
3 130 408 5 1
4 276 834 0 1
5 655 444 0 8
6 1572 317 0 8
7 0 841 0 8
8 0 50 1 8
9 866 260 0 8
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 1 0 0 1 True
1 14 2 1 4 True
2 16 1 1 6 True
3 13 1 2 7 True
4 44 2 2 16 True
5 11 2 2 5 False
6 16 1 2 3 False
7 9 1 0 6 False
8 6 0 0 5 False
9 11 1 1 7 False ,
assists baronKills bountyLevel champLevel championName \
0 0 0 2 11 Garen
1 1 0 1 9 MasterYi
2 0 0 6 11 Pantheon
3 5 0 7 9 Jhin
4 9 0 0 9 Thresh
5 1 0 0 9 Aatrox
6 3 0 0 7 Twitch
7 0 0 0 9 Ryze
8 1 0 0 8 Ahri
9 2 0 0 7 Malphite
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2556 2556 2556
1 0 20751 0
2 1532 1532 1532
3 2610 3523 2610
4 859 859 859
5 1040 1040 1040
6 0 1117 0
7 213 213 213
8 0 0 0
9 0 0 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 1 0 0 False False
1 1 1 2 False False
2 2 0 0 False True
3 0 0 0 True False
4 1 0 0 True False
5 5 1 0 False False
6 4 0 0 False False
7 7 0 0 False False
8 5 0 0 False False
9 5 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False True False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 5705 TOP 0
1 True 5661 JUNGLE 0
2 True 7788 MIDDLE 0
3 True 7056 BOTTOM 0
4 True 4979 UTILITY 0
5 True 4270 TOP 0
6 True 3722 JUNGLE 0
7 True 4245 MIDDLE 0
8 True 3579 BOTTOM 0
9 True 3463 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1054 6029 2055 3047 1036 3123 3340
1 0 6691 2031 3006 1036 2055 0 3364
2 0 2033 6692 2010 3111 3134 1029 3340
3 0 6671 0 0 3009 0 1055 3340
4 0 3855 3190 3024 3158 0 0 3340
5 0 1055 6029 3044 1001 0 0 3340
6 0 6670 1018 1042 1001 0 0 3340
7 0 3070 2031 1082 1001 3802 1026 3340
8 0 1056 3802 1026 0 0 0 3340
9 0 1026 3145 1082 1001 0 3851 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 1 3 2 1
1 1 4 3 1
2 2 10 6 1
3 1 7 7 1
4 1 2 2 1
5 0 1 0 1
6 0 1 0 1
7 0 2 0 1
8 0 1 0 1
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 562 0 0
1 614 3262 0
2 377 92 92
3 0 2814 176
4 875 7062 3643
5 223 0 0
6 463 2208 0
7 201 30079 6450
8 337 6193 1891
9 476 9018 4742
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 0 0 0
1 1218 88 0
2 5669 8 0
3 3123 4 0
4 3607 0 0
5 0 0 0
6 1111 30 0
7 441 0 0
8 1285 0 0
9 1702 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 35053
1 0 2 62441
2 0 3 57102
3 0 4 43394
4 0 5 3414
5 0 6 26818
6 0 7 19721
7 0 8 3855
8 0 9 7315
9 0 10 1884
physicalDamageDealtToChampions physicalDamageTaken role \
0 4333 7872 SUPPORT
1 3728 8388 SUPPORT
2 12777 4468 SUPPORT
3 6326 1764 SUPPORT
4 1008 1853 SUPPORT
5 6414 8754 DUO
6 1530 9470 SUPPORT
7 666 10476 SUPPORT
8 475 4396 SUPPORT
9 912 4843 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 1 4 3 14 20
1 2 4 7 11 13
2 4 14 2 4 22
3 2 7 2 4 61
4 2 4 4 14 167
5 2 12 2 4 29
6 2 4 8 11 26
7 3 6 3 4 26
8 2 4 0 3 29
9 0 4 3 14 18
summonerName teamEarlySurrendered teamId teamPosition \
0 KidNolke False 100 TOP
1 RyeBreadPitt False 100 JUNGLE
2 TrevyBih False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 Coolgum15 False 100 UTILITY
5 burgerkingsucks False 200 TOP
6 Shaguar False 200 JUNGLE
7 LordyGG False 200 MIDDLE
8 Misoonji False 200 BOTTOM
9 IEatFrisbees False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 17 913 36065 5344
1 1 913 77042 4530
2 17 913 60145 13435
3 9 913 46209 6503
4 25 913 14478 4935
5 8 913 26818 6414
6 1 913 27181 1923
7 14 913 33934 7116
8 8 913 22410 3033
9 17 913 11244 5997
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 7911 1028 92 36
1 9759 5632 6 133
2 10294 3562 95 21
3 5344 1997 104 59
4 6057 871 22 53
5 9977 2736 61 177
6 11038 2980 2 124
7 11343 717 55 23
8 6152 84 43 22
9 6635 0 15 179
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 21 1 1011
1 21 1 11338
2 27 1 2951
3 0 1 0
4 30 4 4001
5 109 1 0
6 68 1 5251
7 114 1 0
8 51 1 8901
9 88 0 342
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1011 39 1 0
1 802 153 0 0
2 566 157 0 0
3 0 456 1 0
4 284 595 0 0
5 0 1222 0 2
6 393 456 0 2
7 0 425 0 2
8 666 471 0 2
9 342 89 0 2
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 3 3 0 2 True
1 13 2 1 2 True
2 6 0 1 5 True
3 6 0 1 3 True
4 11 0 0 6 True
5 7 1 0 5 False
6 5 0 0 4 False
7 5 0 0 4 False
8 0 0 0 0 False
9 9 0 0 8 False ,
assists baronKills bountyLevel champLevel championName \
0 3 0 2 13 Mordekaiser
1 4 0 1 12 Rengar
2 3 0 1 12 Ryze
3 2 0 0 11 KogMaw
4 5 0 1 10 Xerath
5 1 0 0 12 Riven
6 4 0 0 9 Shaco
7 1 0 0 12 Veigar
8 4 0 0 11 Ezreal
9 4 0 0 10 Karma
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2574 3536 2574
1 797 10428 797
2 316 4591 316
3 1872 3334 1872
4 458 1556 458
5 1040 1040 1040
6 0 7801 0
7 474 474 474
8 0 0 0
9 0 0 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 3 0 0 False True
1 5 1 2 True False
2 1 2 1 True False
3 3 2 0 False False
4 3 5 0 False False
5 4 1 0 False False
6 5 3 0 False False
7 5 2 0 False False
8 3 0 0 False False
9 5 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 8417 TOP 0
1 True 9335 JUNGLE 0
2 True 6471 MIDDLE 0
3 True 6834 BOTTOM 0
4 True 6286 UTILITY 0
5 True 6541 TOP 0
6 True 6120 JUNGLE 0
7 True 7280 MIDDLE 0
8 True 6764 BOTTOM 0
9 True 5585 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1056 4633 3047 1052 1026 1011 3340
1 0 2031 3142 3117 6691 1036 1028 3364
2 0 3070 2031 3158 6656 0 0 3340
3 0 1054 6672 3006 2031 0 1018 3340
4 0 3020 3853 0 3802 1026 1082 3364
5 0 6630 3158 0 1055 3133 0 3340
6 0 2031 6691 1042 1001 0 0 3364
7 0 3191 0 6655 2421 3020 0 3340
8 0 1055 1053 3158 3508 3133 3070 3340
9 0 3853 2055 2031 6617 3158 3916 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 5 2 1
1 1 10 8 2
2 0 2 0 1
3 1 2 2 1
4 0 3 0 1
5 1 2 2 1
6 1 3 2 1
7 1 4 2 1
8 1 4 3 1
9 0 2 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 526 68368 11457
1 547 23074 418
2 493 47633 4800
3 556 13086 2789
4 539 28385 11170
5 455 0 0
6 533 18801 3117
7 427 56438 7596
8 588 4337 2621
9 311 10759 3938
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 4904 0 0
1 4488 96 0
2 2243 4 0
3 3754 0 0
4 2639 0 0
5 9378 0 0
6 4308 71 0
7 6682 0 0
8 5207 0 0
9 5967 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 9055
1 0 2 66707
2 0 3 9284
3 0 4 42419
4 0 5 2270
5 0 6 51887
6 0 7 24715
7 0 8 4150
8 0 9 54306
9 0 10 2022
physicalDamageDealtToChampions physicalDamageTaken role \
0 1849 10849 NONE
1 12423 17681 NONE
2 443 4902 SOLO
3 2089 3383 CARRY
4 577 3372 SUPPORT
5 8294 5265 SOLO
6 4234 10939 NONE
7 266 3473 SOLO
8 4403 4112 CARRY
9 799 4314 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 2 12 167
1 3 4 11 11 326
2 2 4 2 6 161
3 2 4 2 7 294
4 3 4 3 14 217
5 3 4 2 12 300
6 3 14 13 11 332
7 3 4 3 12 194
8 2 4 4 7 214
9 2 14 3 4 378
summonerName teamEarlySurrendered teamId teamPosition \
0 Coolgum15 False 100 TOP
1 EX3DZ False 100 JUNGLE
2 LemonLime63 False 100 MIDDLE
3 Duelers False 100 BOTTOM
4 AceTurtle False 100 UTILITY
5 Imoonity False 200 TOP
6 Gray Senpai False 200 JUNGLE
7 s0ccerj0sh False 200 MIDDLE
8 l Equilibrium l False 200 BOTTOM
9 IFeehaI False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 6 1253 80815 13628
1 6 1253 96494 13316
2 10 1253 62626 5412
3 2 1253 71311 5303
4 26 1253 31625 12373
5 18 1253 60297 8294
6 15 1253 53831 8414
7 9 1253 60589 7863
8 0 1253 58643 7025
9 12 1253 12975 4932
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 16134 5669 127 56
1 22683 11364 11 186
2 7235 1615 116 28
3 7242 1597 124 43
4 6180 10 19 146
5 14906 1859 122 57
6 15833 5815 6 428
7 10463 956 123 23
8 9923 1874 123 0
9 10537 877 16 60
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 92 1 3391
1 126 1 6712
2 16 1 5708
3 59 2 15805
4 78 1 969
5 117 1 8410
6 79 1 10314
7 122 1 0
8 37 2 0
9 117 2 194
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 320 380 1 0
1 474 514 0 0
2 168 90 0 0
3 425 104 1 0
4 625 168 0 0
5 0 261 0 2
6 1062 585 0 2
7 0 307 0 2
8 0 603 0 2
9 194 255 0 2
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 6 0 1 3 True
1 24 1 2 7 True
2 16 2 2 8 True
3 16 2 4 7 True
4 37 5 5 21 True
5 12 1 0 5 False
6 16 3 3 4 False
7 12 2 2 8 False
8 11 0 3 6 False
9 32 2 5 13 False ,
assists baronKills bountyLevel champLevel championName \
0 8 0 0 14 Mordekaiser
1 10 0 8 14 Nasus
2 8 0 2 15 Draven
3 7 0 3 13 Aphelios
4 12 0 0 12 Pyke
5 1 0 0 14 Sion
6 6 0 0 11 Udyr
7 3 0 0 12 Corki
8 6 0 0 12 Ashe
9 14 0 0 12 Senna
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3778 7145 3778
1 2205 3827 2205
2 6824 13134 6824
3 7553 9774 7553
4 0 0 0
5 2653 5668 2653
6 151 13092 151
7 0 953 0
8 1783 8982 1783
9 1515 2524 1515
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 4 0 1 False False
1 0 1 0 False False
2 2 0 0 False True
3 6 1 0 False False
4 9 1 0 False False
5 6 0 0 False False
6 9 0 1 False False
7 7 1 0 False False
8 9 1 1 False False
9 9 3 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False True False
9 True False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 10394 TOP 1
1 True 9967 JUNGLE 0
2 True 14929 MIDDLE 0
3 True 9721 BOTTOM 0
4 True 8746 UTILITY 0
5 True 8329 TOP 0
6 True 7499 JUNGLE 0
7 True 8303 MIDDLE 0
8 True 11037 BOTTOM 0
9 True 8623 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 0 2421 3047 4637 4633 1026 3340
1 0 6632 3047 3110 1029 0 2031 3340
2 0 1055 6676 6673 3006 3031 1033 3363
3 0 1055 2031 6672 3006 3134 1037 3363
4 0 6693 3855 3179 3117 1028 0 3364
5 1 1054 3068 3111 1011 3077 0 3340
6 1 6664 2031 3066 3111 1028 1031 3364
7 1 1055 6653 3020 4628 0 0 3340
8 1 3006 6672 3140 3085 1037 1018 3363
9 1 3124 3864 2055 3009 6672 1036 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 6 4 2
1 1 8 8 3
2 3 12 8 2
3 3 9 3 2
4 1 5 2 1
5 0 4 0 1
6 0 4 0 1
7 0 3 0 1
8 1 7 3 1
9 0 3 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 558 92074 16105
1 0 19087 2691
2 1160 0 0
3 536 1332 250
4 264 0 0
5 522 35131 5801
6 518 35402 2669
7 468 65728 12391
8 455 1713 1113
9 668 0 0
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 5859 7 0
1 6770 108 1
2 7611 12 0
3 1376 0 0
4 2901 0 0
5 10615 0 0
6 5803 96 0
7 2036 3 0
8 1473 8 0
9 1157 4 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 10263
1 0 2 74920
2 1 3 149408
3 0 4 57871
4 0 5 12861
5 0 6 64802
6 0 7 40107
7 0 8 7711
8 0 9 64282
9 0 10 33931
physicalDamageDealtToChampions physicalDamageTaken role \
0 2832 14541 SOLO
1 9820 15827 NONE
2 27775 14292 SOLO
3 11905 12098 CARRY
4 8747 12740 SUPPORT
5 10323 21322 SOLO
6 4534 26332 NONE
7 301 10821 SOLO
8 13215 13707 CARRY
9 16580 14295 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 2 12 167
1 3 6 11 11 254
2 4 21 4 4 483
3 3 4 5 7 156
4 4 4 4 14 167
5 4 7 2 12 256
6 15 11 3 4 97
7 2 14 4 4 271
8 3 7 4 4 257
9 4 4 6 3 326
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 Coolgum15 False 100 TOP 5
1 katykate36 False 100 JUNGLE 8
2 Sapphire Blue False 100 MIDDLE 15
3 guubbb False 100 BOTTOM 6
4 Obfusca7e False 100 UTILITY 24
5 Shadowd20 False 200 TOP 62
6 Supermau07 False 200 JUNGLE 23
7 Melo15247 False 200 MIDDLE 1
8 bluestar227 False 200 BOTTOM 38
9 Walternator False 200 UTILITY 37
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1499 104410 19816
1 1499 99568 13320
2 1499 152859 28670
3 1499 69099 13399
4 1499 17047 9908
5 1499 106661 16125
6 1499 84383 8124
7 1499 81103 13059
8 1499 70788 15191
9 1499 36235 17911
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 21521 6807 138 33
1 22841 8934 11 347
2 22591 6743 192 129
3 14204 3577 99 45
4 16342 2069 20 94
5 33394 4744 146 602
6 33152 9660 5 179
7 13267 1445 121 11
8 16042 1937 127 459
9 16695 6738 35 153
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 110 1 2073
1 0 1 5560
2 86 1 3451
3 139 2 9895
4 227 1 4186
5 176 2 6727
6 224 1 8873
7 187 1 7663
8 220 2 4792
9 228 4 2304
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 878 1121 0 2
1 808 242 1 2
2 894 686 2 2
3 1243 728 3 2
4 1160 701 0 2
5 0 1456 1 7
6 920 1015 0 7
7 366 409 0 7
8 862 861 1 7
9 1331 1242 0 7
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 7 0 1 4 True
1 25 1 1 8 True
2 11 0 0 6 True
3 17 1 0 8 True
4 33 1 4 19 True
5 12 0 2 5 False
6 12 1 3 4 False
7 13 1 2 8 False
8 17 1 1 7 False
9 41 4 10 13 False ,
assists baronKills bountyLevel champLevel championName \
0 8 0 2 17 Gnar
1 10 0 0 16 Graves
2 8 0 0 17 Syndra
3 8 0 0 16 Jhin
4 12 0 0 14 Swain
5 2 0 5 18 Mordekaiser
6 14 0 0 15 Amumu
7 14 0 0 17 Ryze
8 19 0 0 15 Shaco
9 15 0 0 16 LeeSin
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 4011 6469 4011
1 0 6250 0
2 777 1275 777
3 319 319 319
4 50 396 50
5 6908 14166 6908
6 596 22049 596
7 5659 14426 5659
8 1781 3163 1781
9 7338 11217 7338
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 13 0 0 False False
1 8 1 0 False True
2 10 0 0 True False
3 9 2 0 False False
4 15 0 0 False False
5 6 1 0 False False
6 10 0 4 False False
7 10 0 0 False False
8 8 1 0 False False
9 6 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 True False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 13436 TOP 0
1 False 13386 JUNGLE 0
2 False 14412 MIDDLE 0
3 False 12918 BOTTOM 0
4 False 9118 UTILITY 0
5 False 17106 TOP 1
6 False 11474 JUNGLE 0
7 False 13831 MIDDLE 0
8 False 13208 UTILITY 0
9 False 14033 BOTTOM 2
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 3 6631 3111 3053 4401 1053 1043 3363
1 3 3006 6676 6671 3072 1038 1018 3340
2 3 1056 6655 3020 3165 3089 3102 3340
3 3 3009 6676 6671 3031 0 0 3363
4 3 3853 3157 3111 3916 6653 1028 3364
5 0 3116 3157 3047 4637 4633 3076 3340
6 0 3068 2031 3047 4637 3001 3076 3340
7 0 3157 3020 3070 4629 6655 1052 3340
8 0 3157 3853 4643 3165 6653 3020 3364
9 0 6692 3074 3047 3071 1037 3134 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 2 8 2 1
1 1 5 4 1
2 3 14 4 1
3 4 10 2 2
4 0 3 0 1
5 3 17 7 4
6 2 6 2 1
7 3 9 3 2
8 3 11 3 3
9 2 12 8 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 211 13476 3835
1 961 11663 2345
2 518 126612 36871
3 479 10121 1776
4 257 43834 15623
5 754 187802 28641
6 351 97230 11938
7 298 193002 30984
8 453 62543 24354
9 766 21780 4471
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 30015 13 0
1 16312 149 0
2 22640 0 0
3 14776 0 0
4 17607 0 0
5 12848 21 0
6 12171 117 0
7 17870 5 0
8 7720 4 0
9 10977 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 160376
1 0 2 199412
2 0 3 12705
3 0 4 120533
4 0 5 3298
5 0 6 19708
6 0 7 19998
7 0 8 5969
8 0 9 7943
9 0 10 84144
physicalDamageDealtToChampions physicalDamageTaken role \
0 32796 17215 SOLO
1 14495 12063 NONE
2 1459 5160 SOLO
3 14707 11212 CARRY
4 833 12555 SUPPORT
5 3512 28256 CARRY
6 2139 22737 SUPPORT
7 572 14991 SOLO
8 1266 11292 SUPPORT
9 24076 13480 CARRY
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 12 6 4 220
1 18 11 4 4 298
2 7 14 5 4 91
3 5 4 6 7 95
4 9 14 6 4 204
5 6 4 4 12 167
6 5 4 17 11 141
7 6 4 8 14 126
8 5 4 6 14 175
9 5 4 6 14 300
summonerName teamEarlySurrendered teamId teamPosition \
0 league evan False 100 TOP
1 NuthinButNut False 100 JUNGLE
2 LeagueAlexandra False 100 MIDDLE
3 Deathbooms False 100 BOTTOM
4 I Clyde I False 100 UTILITY
5 Coolgum15 False 200 TOP
6 bom tombadil False 200 JUNGLE
7 CoolRona Virus False 200 MIDDLE
8 Shapooopy False 200 UTILITY
9 DamianRayBrown False 200 BOTTOM
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 71 2117 173853 36631
1 24 2117 222961 17249
2 57 2117 142785 39257
3 35 2117 130758 16588
4 43 2117 49494 18483
5 16 2117 212256 34187
6 44 2117 137539 16456
7 22 2117 202406 33257
8 37 2117 72074 26694
9 14 2117 107459 29763
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 50714 9742 158 676
1 30141 8731 71 527
2 29142 4483 154 276
3 26610 7126 174 151
4 31353 3994 31 192
5 41318 16471 215 267
6 35342 9798 24 165
7 33693 8526 194 35
8 20052 1298 46 404
9 25404 8627 109 100
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 460 1 0
1 284 1 11885
2 334 1 3467
3 280 3 104
4 445 1 2362
5 223 1 4746
6 313 6 20310
7 360 1 3433
8 219 1 1587
9 190 1 1534
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 3484 1 10
1 408 1765 0 10
2 926 1340 0 10
3 104 621 0 10
4 2026 1190 0 10
5 2033 213 2 1
6 2378 433 0 1
7 1700 831 3 1
8 1072 1039 2 1
9 1215 946 2 1
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 25 0 0 11 False
1 26 1 3 7 False
2 12 0 0 7 False
3 23 2 3 10 False
4 50 0 2 24 False
5 26 1 6 10 True
6 20 0 1 10 True
7 15 0 1 11 True
8 51 1 2 23 True
9 14 0 2 8 True ,
assists baronKills bountyLevel champLevel championName \
0 3 0 0 15 Mordekaiser
1 5 0 0 12 Teemo
2 3 0 0 14 Viktor
3 5 0 0 13 Caitlyn
4 3 0 0 11 Lux
5 7 0 3 15 Gnar
6 17 1 1 13 Nunu
7 12 0 0 15 Sion
8 7 0 7 15 Samira
9 21 0 0 13 Rell
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2076 6684 2076
1 1810 25100 1810
2 1483 2942 1483
3 612 938 612
4 794 1525 794
5 9419 16450 9419
6 569 11896 569
7 2136 3730 2136
8 8661 21207 8661
9 1263 1687 1263
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 1 1 False False
1 6 1 0 False False
2 6 3 0 False False
3 8 1 0 False False
4 9 3 0 False False
5 1 0 0 False False
6 5 2 3 False False
7 3 2 0 False False
8 1 0 0 True False
9 3 3 0 False True
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 True False False
1 False True False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 11799 TOP 0
1 True 9324 JUNGLE 0
2 True 8296 MIDDLE 0
3 True 8449 BOTTOM 0
4 True 6605 UTILITY 0
5 True 9440 TOP 0
6 True 8763 JUNGLE 1
7 True 10868 MIDDLE 0
8 True 15771 BOTTOM 0
9 True 9905 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 1056 3157 4633 4637 3111 1052 3340
1 1 6653 2031 3115 3020 1028 0 3364
2 1 1056 3020 6655 3057 1026 3113 3340
3 1 6672 3006 3094 1055 0 0 3340
4 1 3853 6655 1028 0 0 3020 3364
5 0 1055 6631 4401 3066 3111 0 3340
6 0 3068 2031 3111 3076 1011 0 3364
7 0 3065 6662 3111 3075 0 0 3340
8 0 6676 1055 6671 3111 3074 0 3363
9 0 3190 0 3860 3075 3024 3047 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 6 2 1
1 1 3 2 2
2 0 2 0 1
3 0 0 0 0
4 0 2 0 1
5 1 3 3 1
6 1 3 2 1
7 3 8 4 2
8 2 18 11 5
9 2 4 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 812 107341 22556
1 986 73412 13028
2 587 88300 14273
3 386 1462 363
4 384 21798 6275
5 253 10215 1089
6 533 33432 5174
7 747 26481 4314
8 1428 10163 2951
9 794 15898 6654
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 5116 12 0
1 4248 92 0
2 4911 0 0
3 4139 8 0
4 2598 0 0
5 10545 7 0
6 14420 87 0
7 17123 2 0
8 9417 18 0
9 8532 4 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 13324
1 0 2 30414
2 0 3 12259
3 0 4 106561
4 0 5 1879
5 0 6 110857
6 0 7 17263
7 0 8 66045
8 0 9 126996
9 0 10 6300
physicalDamageDealtToChampions physicalDamageTaken role \
0 2292 24025 SOLO
1 2377 15581 NONE
2 997 9499 SOLO
3 10587 9490 CARRY
4 259 8353 SUPPORT
5 8943 7719 SOLO
6 997 17126 NONE
7 13008 13827 SOLO
8 21961 8486 CARRY
9 1620 5144 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 2 12 167
1 3 4 6 11 81
2 3 4 4 14 214
3 4 7 3 4 285
4 3 14 4 4 202
5 2 4 4 12 65
6 17 11 4 4 181
7 3 4 3 12 177
8 5 7 4 4 316
9 5 14 3 4 263
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 Coolgum15 False 100 TOP 10
1 SkillfulFalcon False 100 JUNGLE 35
2 DJBoobySweat False 100 MIDDLE 28
3 de Battousai False 100 BOTTOM 22
4 BabyBemmy False 100 UTILITY 41
5 shaun48 False 200 TOP 24
6 SwedishSupport False 200 JUNGLE 19
7 Cosmik False 200 MIDDLE 40
8 PayneGaming False 200 BOTTOM 6
9 Tilt Thûndêr False 200 UTILITY 26
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1689 127671 27892
1 1689 117204 15863
2 1689 101563 16014
3 1689 113984 11829
4 1689 24017 6875
5 1689 126916 10032
6 1689 79393 6592
7 1689 94751 17961
8 1689 143524 25465
9 1689 29151 8813
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 30134 8864 175 59
1 20031 6449 40 564
2 14738 108 142 336
3 14080 1437 165 39
4 11127 422 18 204
5 18717 6795 144 470
6 32482 17496 18 221
7 33458 6328 141 681
8 18563 11216 186 44
9 14585 3358 37 48
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 237 1 7006
1 177 1 13376
2 179 1 1003
3 176 2 5960
4 185 1 340
5 12 1 5843
6 126 5 28698
7 111 1 2224
8 43 2 6364
9 105 5 6952
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 3043 992 1 7
1 458 202 2 7
2 743 326 0 7
3 879 450 0 7
4 340 176 0 7
5 0 452 2 3
6 420 934 1 3
7 638 2508 1 3
8 552 659 3 3
9 538 908 0 3
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 22 1 2 9 False
1 24 1 6 4 False
2 23 3 3 10 False
3 16 1 0 9 False
4 47 3 4 22 False
5 11 0 0 8 True
6 21 2 6 6 True
7 15 2 1 11 True
8 16 0 3 6 True
9 49 3 4 24 True ,
assists baronKills bountyLevel champLevel championName \
0 2 0 0 16 Yone
1 10 0 0 13 Nunu
2 6 0 0 14 Katarina
3 7 0 0 12 Sivir
4 12 0 0 12 Seraphine
5 6 0 3 17 Mordekaiser
6 12 0 3 15 Ekko
7 6 0 0 16 Viego
8 9 0 5 15 Kaisa
9 14 0 1 13 Lulu
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 4519 4519 4519
1 30 30292 30
2 1493 1493 1493
3 2204 3705 2204
4 515 784 515
5 7013 7013 7013
6 2004 10986 2004
7 30 12316 30
8 8379 10517 8379
9 449 890 449
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 0 0 False False
1 8 1 1 False False
2 9 0 0 False False
3 11 1 0 False False
4 8 1 0 False False
5 3 0 0 False False
6 2 4 2 False False
7 8 4 1 False True
8 5 2 0 False False
9 6 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False True False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 8828 TOP 0
1 True 9723 JUNGLE 0
2 True 13652 MIDDLE 0
3 True 9531 BOTTOM 0
4 True 8057 UTILITY 0
5 True 13809 TOP 0
6 True 10909 JUNGLE 0
7 True 14651 MIDDLE 0
8 True 12745 BOTTOM 0
9 True 6935 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1055 3006 6673 3046 3123 0 3340
1 0 1011 2031 6664 3047 3065 3076 3340
2 0 3113 3157 3115 3020 3916 4633 3340
3 0 3070 6691 3006 6676 2015 1018 3340
4 0 3158 3853 6617 3041 3916 1026 3364
5 0 4637 2421 3111 4633 3916 3108 3340
6 0 3020 2420 1082 4636 3100 0 3364
7 0 1028 3153 6672 3111 3044 6676 3340
8 0 1055 6671 3006 6676 3086 3123 3340
9 0 6617 3117 1052 3859 3114 0 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 0 3 0 1
1 0 3 0 1
2 3 9 3 2
3 2 6 3 2
4 1 3 2 1
5 2 6 3 1
6 3 7 3 1
7 3 17 10 3
8 3 12 5 2
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 496 13381 2476
1 459 75743 10330
2 432 81728 20348
3 452 265 105
4 479 23600 9214
5 960 151420 21424
6 737 109815 13112
7 647 7097 4175
8 441 12733 7504
9 589 7938 1638
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 15719 0 0
1 10715 137 0
2 9451 4 0
3 6656 0 0
4 6113 0 0
5 6034 4 0
6 8478 133 0
7 15716 20 0
8 7963 16 0
9 7202 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 95156
1 0 2 23981
2 0 3 16701
3 0 4 89690
4 0 5 3719
5 0 6 19870
6 0 7 25304
7 0 8 123342
8 0 9 107680
9 0 10 6113
physicalDamageDealtToChampions physicalDamageTaken role \
0 9078 8767 SOLO
1 1388 28166 NONE
2 1805 15805 SOLO
3 17404 12634 CARRY
4 1745 7544 SUPPORT
5 2680 17899 SOLO
6 2508 18093 NONE
7 26165 18243 SOLO
8 16310 10587 CARRY
9 426 5191 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 12 1 14 135
1 19 11 4 4 43
2 6 14 4 4 139
3 6 7 5 4 240
4 8 14 5 4 324
5 3 4 3 12 167
6 3 4 14 11 225
7 7 14 5 4 33
8 6 7 4 4 96
9 3 4 0 14 21
summonerName teamEarlySurrendered teamId teamPosition \
0 papaganjaa False 100 TOP
1 Dr Juney False 100 JUNGLE
2 UncleSäm False 100 MIDDLE
3 TheMasterBaiterr False 100 BOTTOM
4 Nammyboy False 100 UTILITY
5 Coolgum15 False 200 TOP
6 LosTheGoat False 200 JUNGLE
7 Bhavik Jarvis False 200 MIDDLE
8 wuhan reformed False 200 BOTTOM
9 ProfessorBK False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 19 1755 121429 13426
1 36 1755 162541 12599
2 0 1755 101522 23297
3 1 1755 90452 17725
4 21 1755 28470 12109
5 8 1755 173647 24753
6 20 1755 142755 16319
7 20 1755 138500 33934
8 0 1755 129587 24119
9 15 1755 17735 2065
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 25107 6696 141 98
1 40313 18623 22 474
2 26903 6947 142 1
3 20211 3647 113 20
4 14283 4412 18 151
5 25928 9960 250 49
6 27256 14177 17 371
7 35717 13517 130 86
8 18779 7493 157 27
9 12990 1550 31 87
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 205 1 12891
1 242 1 62817
2 273 1 3092
3 277 2 496
4 175 5 1150
5 127 1 2356
6 67 1 7636
7 298 2 8061
8 132 4 9174
9 176 4 3683
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1871 620 1 7
1 880 1430 1 7
2 1142 1646 1 7
3 216 921 0 7
4 1150 625 1 7
5 649 1995 4 5
6 698 684 0 5
7 3593 1757 0 5
8 304 227 2 5
9 0 596 1 5
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 6 0 0 4 False
1 26 1 2 10 False
2 11 0 2 5 False
3 20 1 2 10 False
4 58 1 2 26 False
5 12 0 0 8 True
6 21 4 1 5 True
7 25 9 3 12 True
8 17 2 0 11 True
9 2 0 0 1 True ,
assists baronKills bountyLevel champLevel championName \
0 1 0 3 11 Mordekaiser
1 6 0 1 9 Twitch
2 2 0 1 11 Zed
3 3 0 7 10 Varus
4 4 0 0 7 Pantheon
5 0 0 0 9 Volibear
6 0 0 0 9 Nidalee
7 1 0 0 9 Ekko
8 2 0 0 8 Tristana
9 2 0 0 7 Swain
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2264 2264 2264
1 954 6192 954
2 1176 1176 1176
3 6933 9355 6933
4 921 921 921
5 354 354 354
6 0 0 0
7 331 331 331
8 811 811 811
9 0 75 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 2 1 0 False False
1 1 0 1 False False
2 2 1 0 True False
3 0 0 0 True False
4 1 0 0 False True
5 3 0 0 False False
6 4 0 0 False False
7 2 2 0 False False
8 7 0 0 False False
9 7 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 6427 TOP 0
1 True 5272 JUNGLE 0
2 True 6495 MIDDLE 0
3 True 7919 BOTTOM 0
4 True 4896 UTILITY 0
5 True 3734 TOP 0
6 True 5944 JUNGLE 0
7 True 3845 MIDDLE 0
8 True 3404 BOTTOM 0
9 True 3089 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1056 4633 0 1001 0 0 3340
1 0 6672 1042 2422 2031 0 0 3340
2 0 6693 2031 3158 3134 0 0 3364
3 0 1055 6673 3070 3006 3133 1036 3340
4 0 3855 3153 0 0 1001 1036 3364
5 0 6664 0 0 1001 0 0 3340
6 0 4636 2031 3158 3108 0 0 3340
7 0 0 1001 2033 3145 1026 1028 3340
8 0 1055 6670 1037 1001 1042 0 3340
9 0 3851 1027 2424 3191 3108 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 6 3 1
1 1 3 2 1
2 1 4 2 1
3 1 7 7 2
4 1 3 3 1
5 0 1 0 1
6 1 5 3 1
7 0 0 0 0
8 0 0 0 0
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 461 42653 8278
1 546 2804 0
2 425 3290 288
3 0 3261 1057
4 778 576 0
5 482 16828 1806
6 547 41698 5341
7 464 31818 2105
8 283 8335 650
9 255 8922 1541
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 3028 0 0
1 2325 56 0
2 2644 4 0
3 2017 4 0
4 2484 0 0
5 5000 0 0
6 1372 68 0
7 634 0 0
8 1115 0 0
9 2215 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 7371
1 0 2 32943
2 0 3 57918
3 0 4 59395
4 0 5 16931
5 0 6 11912
6 0 7 7781
7 0 8 6409
8 0 9 15709
9 0 10 2712
physicalDamageDealtToChampions physicalDamageTaken role \
0 1725 5925 SUPPORT
1 4045 6704 SUPPORT
2 6778 3128 SUPPORT
3 4852 2367 SUPPORT
4 3834 3411 SUPPORT
5 2887 3025 SUPPORT
6 238 11245 SUPPORT
7 896 5784 DUO
8 2668 6580 SUPPORT
9 715 5335 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 4 2 12 167
1 8 11 3 14 228
2 1 4 2 14 310
3 3 7 3 4 156
4 3 14 3 4 188
5 1 4 2 12 141
6 2 4 9 11 205
7 2 14 1 4 44
8 2 4 3 7 139
9 3 4 3 14 159
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 Coolgum15 False 100 TOP 2
1 nobanrat False 100 JUNGLE 4
2 Venjí False 100 MIDDLE 2
3 kittytush False 100 BOTTOM 3
4 OC Alagaii False 100 UTILITY 10
5 P00PWIZARD False 200 TOP 9
6 ThatGnome False 200 JUNGLE 1
7 Hamid NA False 200 MIDDLE 7
8 FOOTBALLJOHN99 False 200 BOTTOM 0
9 Scuump420 False 200 UTILITY 12
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 912 50436 10118
1 912 44332 4945
2 912 61425 7283
3 912 65598 5989
4 912 22431 4280
5 912 28741 4694
6 912 54966 5651
7 912 41782 3382
8 912 28030 3319
9 912 12041 2663
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 9161 3672 97 22
1 9074 4105 2 210
2 6073 268 118 47
3 4604 1960 120 75
4 5981 552 28 19
5 8138 1184 56 129
6 13325 5237 11 101
7 6778 903 74 140
8 8057 819 57 7
9 7767 377 10 75
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 42 1 412
1 16 1 8584
2 51 1 216
3 0 2 2941
4 21 1 4923
5 50 1 0
6 108 1 5486
7 39 1 3555
8 70 2 3985
9 89 1 406
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 114 208 0 0
1 900 44 1 0
2 216 300 1 0
3 80 220 1 0
4 445 86 0 0
5 0 112 0 3
6 72 707 0 3
7 380 359 0 3
8 0 360 0 3
9 406 216 0 3
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 5 1 0 4 True
1 8 0 1 4 True
2 9 1 0 1 True
3 7 0 0 5 True
4 8 0 0 5 True
5 1 0 0 1 False
6 11 0 1 3 False
7 2 2 0 3 False
8 1 0 0 1 False
9 8 0 0 5 False ,
assists baronKills bountyLevel champLevel championName \
0 1 0 0 11 Garen
1 0 0 0 10 Graves
2 1 0 0 11 Sylas
3 0 0 0 9 Ashe
4 0 0 0 8 Pantheon
5 0 0 0 12 Mordekaiser
6 0 0 2 10 Udyr
7 1 0 3 12 Yone
8 2 0 3 9 KogMaw
9 5 0 0 9 Yuumi
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 0 0 0
1 0 4049 0
2 212 212 212
3 1118 1118 1118
4 655 655 655
5 0 0 0
6 157 17130 157
7 444 3794 444
8 1563 1563 1563
9 630 630 630
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 2 0 0 False False
1 1 2 0 False False
2 3 1 0 False False
3 3 0 0 False False
4 1 0 0 False False
5 2 0 0 False False
6 0 1 2 False False
7 0 1 0 False True
8 0 1 0 False False
9 0 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 4096 TOP 0
1 True 5490 JUNGLE 0
2 True 4403 MIDDLE 0
3 True 4975 BOTTOM 0
4 True 3267 UTILITY 0
5 True 5151 TOP 0
6 True 5717 JUNGLE 0
7 True 6291 MIDDLE 0
8 True 5864 BOTTOM 0
9 True 3977 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1054 3051 3067 1001 0 0 3340
1 0 6673 3006 0 0 0 0 3364
2 0 1056 3158 3802 3108 0 0 3340
3 0 1055 6672 0 0 1001 1042 3340
4 0 3855 1053 3009 1036 1036 2055 3364
5 0 1056 4633 1001 1052 0 0 3340
6 0 6664 2031 3057 3047 0 0 3364
7 0 1055 3006 3033 1053 0 0 3340
8 0 1055 3006 6673 0 0 0 3340
9 0 3851 4642 1057 3114 1004 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 0 0 0
1 1 2 2 1
2 0 0 0 0
3 0 0 0 0
4 0 0 0 0
5 1 2 2 1
6 1 2 2 1
7 1 3 3 1
8 1 3 3 2
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 684 0 0
1 967 6816 293
2 418 32532 3789
3 553 367 367
4 715 1074 141
5 518 41396 10186
6 0 32636 1169
7 0 5737 984
8 0 10296 3597
9 0 3601 2675
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 7856 0 0
1 3747 82 0
2 1814 0 0
3 2851 0 0
4 3472 0 0
5 736 0 0
6 2186 104 0
7 2965 0 0
8 412 0 0
9 33 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 29053
1 0 2 66817
2 0 3 9401
3 0 4 37151
4 0 5 7629
5 0 6 8980
6 0 7 38704
7 0 8 52218
8 0 9 34575
9 0 10 736
physicalDamageDealtToChampions physicalDamageTaken role \
0 3019 2293 SUPPORT
1 5254 5901 SUPPORT
2 97 4731 SUPPORT
3 4548 3911 DUO
4 2182 2129 SUPPORT
5 1534 7404 SUPPORT
6 1296 9617 SUPPORT
7 3038 2486 SUPPORT
8 4123 8305 SUPPORT
9 370 869 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 7 1 4 34
1 10 11 3 4 215
2 2 14 1 4 247
3 2 4 3 7 288
4 2 4 2 3 68
5 2 4 2 12 167
6 2 4 9 11 158
7 1 4 3 14 217
8 3 4 4 21 277
9 4 14 4 3 155
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 Fidaverinnia False 100 TOP 17
1 Seak False 100 JUNGLE 12
2 MitchyC False 100 MIDDLE 6
3 LeSaintPère False 100 BOTTOM 22
4 trey3minator False 100 UTILITY 7
5 Coolgum15 False 200 TOP 3
6 Toxic Worst False 200 JUNGLE 10
7 spectregloom False 200 MIDDLE 7
8 ParryFate False 200 BOTTOM 3
9 DarkertfkX False 200 UTILITY 8
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1015 31106 3503
1 1015 81821 6168
2 1015 42123 4076
3 1015 41419 5011
4 1015 12691 2452
5 1015 50377 11721
6 1015 85239 2881
7 1015 66057 5078
8 1015 49861 7721
9 1015 4911 3620
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 10150 573 70 54
1 10126 4672 28 444
2 7621 938 92 184
3 7061 1826 123 335
4 5796 219 22 15
5 9086 1990 113 22
6 12050 7465 12 127
7 5595 2163 118 70
8 8900 2085 112 75
9 902 2857 1 27
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 62 1 2053
1 32 1 8186
2 76 1 190
3 37 2 3901
4 16 1 3987
5 56 1 0
6 0 1 13899
7 0 1 8100
8 0 1 4990
9 0 1 574
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 483 0 0 0
1 620 478 0 0
2 190 1075 0 0
3 95 298 0 0
4 129 194 0 0
5 0 945 0 0
6 416 247 0 0
7 1055 144 0 0
8 0 182 0 0
9 574 0 0 0
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 6 0 0 4 False
1 17 2 1 5 False
2 8 1 0 6 False
3 13 0 3 4 False
4 13 1 2 7 False
5 7 0 0 5 True
6 10 1 1 3 True
7 11 1 2 6 True
8 8 1 1 6 True
9 19 2 0 9 True ,
assists baronKills bountyLevel champLevel championName \
0 1 0 5 12 Mordekaiser
1 3 0 2 9 Ekko
2 4 0 0 11 Fiora
3 6 0 0 9 Twitch
4 3 0 0 9 Swain
5 0 0 0 10 Gangplank
6 1 0 1 9 FiddleSticks
7 1 0 0 11 Vladimir
8 1 0 1 9 Tristana
9 3 0 0 8 Senna
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2601 2964 2601
1 0 14815 0
2 1121 1121 1121
3 2292 2292 2292
4 189 1508 189
5 0 0 0
6 0 1269 0
7 120 120 120
8 2380 2380 2380
9 507 507 507
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 0 0 0 False False
1 1 0 1 False False
2 2 0 0 False False
3 4 0 0 False False
4 1 0 0 False False
5 3 0 0 False False
6 2 0 0 False False
7 6 0 0 False False
8 3 1 0 False True
9 5 2 0 True False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 7267 TOP 0
1 True 6295 JUNGLE 0
2 True 5614 MIDDLE 0
3 True 4893 BOTTOM 0
4 True 5931 UTILITY 0
5 True 3708 TOP 0
6 True 5315 JUNGLE 0
7 True 4834 MIDDLE 0
8 True 5799 BOTTOM 0
9 True 5228 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1056 4633 1001 1026 1052 0 3340
1 0 3152 0 2031 3111 1052 0 3340
2 0 2031 3123 3508 1036 1055 1001 3340
3 0 1055 3006 6670 1037 0 0 3340
4 0 3851 6653 1001 1029 1052 0 3364
5 0 2033 3133 1001 3057 1018 0 3340
6 0 2055 2424 2031 3145 3020 1026 3330
7 0 1082 3152 3108 0 0 2422 3340
8 0 6672 2031 1055 1001 1042 0 3340
9 0 3863 3508 6670 2422 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 5 5 1
1 2 6 4 1
2 1 2 2 1
3 0 1 0 1
4 1 5 5 2
5 0 0 0 0
6 0 1 0 1
7 0 2 0 1
8 1 4 2 1
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 0 57661 7164
1 809 47466 3523
2 669 795 245
3 262 0 0
4 818 23998 6264
5 497 1547 667
6 259 56449 3891
7 280 22570 6117
8 352 9569 954
9 342 0 0
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 1686 5 0
1 3310 80 0
2 5808 0 0
3 109 0 0
4 1552 0 0
5 5037 0 0
6 4249 87 0
7 2806 0 0
8 3182 0 0
9 3934 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 10055
1 0 2 15586
2 0 3 35782
3 0 4 32843
4 0 5 3637
5 0 6 33185
6 0 7 7009
7 0 8 8804
8 0 9 44069
9 0 10 13275
physicalDamageDealtToChampions physicalDamageTaken role \
0 1426 6369 SUPPORT
1 1228 11411 SUPPORT
2 5292 2559 DUO
3 4825 7460 SUPPORT
4 870 6480 SUPPORT
5 2977 3082 SUPPORT
6 306 9631 SUPPORT
7 453 6124 SUPPORT
8 6385 4469 DUO
9 4719 3552 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 4 1 12 167
1 1 4 5 11 197
2 4 14 2 4 135
3 4 3 4 7 91
4 4 14 3 4 108
5 2 4 2 14 110
6 2 4 9 11 123
7 2 4 3 14 177
8 2 7 2 4 326
9 2 4 2 3 181
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 Coolgum15 False 100 TOP 6
1 Serial Kayler False 100 JUNGLE 8
2 Top Percent False 100 MIDDLE 4
3 Slakr4Life247 False 100 BOTTOM 5
4 dragonborn212 False 100 UTILITY 24
5 Benjammu False 200 TOP 1
6 gnu21XXI False 200 JUNGLE 15
7 SolarPlasma False 200 MIDDLE 1
8 wings to fly False 200 BOTTOM 1
9 MetalBar02 False 200 UTILITY 16
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 991 69731 8786
1 991 71612 4775
2 991 38246 7207
3 991 38054 5685
4 991 27969 7468
5 991 44007 4144
6 991 67128 4592
7 991 31558 6755
8 991 57485 7534
9 991 13275 4719
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 8600 3940 116 56
1 14940 9341 4 328
2 8653 2539 97 32
3 7667 2082 63 135
4 8156 2559 32 123
5 8144 2670 66 147
6 14552 8964 12 442
7 10174 3238 84 24
8 8361 1527 94 9
9 7920 3089 20 69
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 0 1 2013
1 27 1 8560
2 65 3 1669
3 73 2 5211
4 30 1 334
5 72 1 9274
6 26 1 3670
7 141 1 184
8 54 2 3846
9 63 3 0
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 194 545 1 0
1 24 219 0 0
2 1669 286 0 0
3 860 97 1 0
4 334 123 0 0
5 499 24 0 2
6 394 671 0 2
7 184 1242 0 2
8 194 710 0 2
9 0 434 0 2
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 5 0 0 4 True
1 10 0 1 4 True
2 1 0 0 1 True
3 3 0 0 2 True
4 14 0 2 7 True
5 0 0 0 1 False
6 14 1 0 0 False
7 4 0 0 3 False
8 5 1 0 4 False
9 15 2 1 7 False ,
assists baronKills bountyLevel champLevel championName \
0 0 0 0 12 Gnar
1 2 0 0 10 Lillia
2 2 0 0 11 Anivia
3 2 0 0 10 Twitch
4 1 0 1 9 Swain
5 1 0 2 14 Mordekaiser
6 4 0 0 11 Kindred
7 0 0 5 13 Corki
8 4 0 0 9 Lucian
9 2 0 3 10 Senna
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 0 0 0
1 0 1934 0
2 2178 2178 2178
3 508 508 508
4 199 321 199
5 2033 2033 2033
6 724 7780 724
7 3339 3339 3339
8 1932 1932 1932
9 1243 1243 1243
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 1 0 False False
1 5 3 0 False False
2 1 1 0 False False
3 4 2 0 True False
4 3 1 0 False True
5 1 1 0 False False
6 4 0 1 False False
7 1 0 0 False False
8 2 0 0 False False
9 0 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False True False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 5658 TOP 0
1 True 5342 JUNGLE 0
2 True 6109 MIDDLE 0
3 True 5921 BOTTOM 0
4 True 5591 UTILITY 0
5 True 7878 TOP 0
6 True 7327 JUNGLE 0
7 True 9190 MIDDLE 0
8 True 4524 BOTTOM 0
9 True 5795 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 6631 3047 1055 1055 0 0 3340
1 0 3108 2031 3158 3802 1082 2055 3364
2 0 2055 0 3020 6653 3070 1056 3340
3 0 1055 6672 3006 0 1042 1082 3340
4 0 2424 1001 3853 6653 0 0 3340
5 0 4633 3111 1028 1056 0 0 3340
6 0 3153 2031 3006 6670 0 0 3340
7 0 3042 1083 6673 3020 2031 0 3340
8 0 1055 3153 0 1001 0 0 3340
9 0 3863 3006 6672 0 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 1 0 1
1 0 1 0 1
2 1 2 2 1
3 0 1 0 1
4 1 3 2 1
5 2 5 3 1
6 2 5 2 1
7 1 5 5 1
8 0 0 0 0
9 1 3 3 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 346 1845 607
1 479 55537 1916
2 579 52913 5369
3 373 14 0
4 571 17644 6751
5 821 61314 9382
6 559 12815 1202
7 228 88926 8856
8 375 3402 522
9 0 0 0
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 9200 0 0
1 5298 98 0
2 5664 0 0
3 1671 0 0
4 1210 4 0
5 960 0 0
6 5458 92 0
7 5551 5 0
8 2919 0 0
9 1277 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 52238
1 0 2 11003
2 0 3 5161
3 0 4 40135
4 0 5 2309
5 0 6 12111
6 0 7 50715
7 0 8 14850
8 0 9 27872
9 0 10 22500
physicalDamageDealtToChampions physicalDamageTaken role \
0 8225 2608 SUPPORT
1 46 14056 SUPPORT
2 541 2452 SUPPORT
3 2762 5515 SUPPORT
4 777 7214 SUPPORT
5 1265 10129 SUPPORT
6 5739 7034 SUPPORT
7 1301 2598 DUO
8 2731 3365 SUPPORT
9 4529 1734 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 1 4 2 12 148
1 3 4 12 11 237
2 2 4 2 12 132
3 3 7 2 4 122
4 3 4 4 14 118
5 2 4 1 12 167
6 2 4 10 11 211
7 3 4 2 12 123
8 3 7 3 4 162
9 1 4 2 3 70
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 bisonmoose False 100 TOP 17
1 L3vin False 100 JUNGLE 3
2 gaytrapboi False 100 MIDDLE 14
3 ImBlack999 False 100 BOTTOM 3
4 Alryotec False 100 UTILITY 25
5 Coolgum15 False 200 TOP 4
6 God Émpress False 200 JUNGLE 4
7 Cream filled False 200 MIDDLE 0
8 sWET Wizard False 200 BOTTOM 0
9 Axorus False 200 UTILITY 13
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1115 54083 8833
1 1115 82121 2918
2 1115 60858 6199
3 1115 45226 3476
4 1115 20503 8077
5 1115 73893 10693
6 1115 68534 7317
7 1115 110180 10158
8 1115 31274 3253
9 1115 24638 4529
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 11886 1630 119 275
1 19450 7181 5 275
2 8117 412 116 730
3 7276 1940 122 53
4 8582 1725 15 162
5 11171 5381 151 52
6 13465 5933 9 136
7 8705 661 172 85
8 6982 1266 60 0
9 3212 2146 56 56
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 101 1 0
1 74 1 15580
2 27 1 2783
3 89 2 5076
4 64 1 549
5 35 1 467
6 67 4 5003
7 12 1 6403
8 22 2 0
9 0 3 2138
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 77 0 3
1 955 96 0 3
2 288 0 0 3
3 713 90 0 3
4 549 158 0 3
5 45 81 1 0
6 376 971 1 0
7 0 555 1 0
8 0 698 0 0
9 0 200 0 0
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 7 1 0 5 False
1 17 4 2 6 False
2 8 2 0 5 False
3 11 2 0 7 False
4 11 1 0 7 False
5 13 1 0 6 True
6 13 0 2 4 True
7 3 0 0 3 True
8 6 0 1 5 True
9 10 1 3 5 True ,
assists baronKills bountyLevel champLevel championName \
0 0 0 0 9 Yorick
1 2 0 3 7 Nidalee
2 2 0 4 9 Talon
3 2 0 3 7 Garen
4 2 0 2 8 Xerath
5 0 0 1 9 Jax
6 0 0 0 5 LeeSin
7 0 0 0 8 Yone
8 0 0 0 6 Malzahar
9 0 0 0 6 Shaco
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 1808 1808 1808
1 0 4000 0
2 753 1506 753
3 1113 1113 1113
4 665 1299 665
5 816 816 816
6 0 0 0
7 0 0 0
8 0 0 0
9 0 0 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 1 0 0 False False
1 0 1 0 False False
2 0 2 1 False True
3 0 0 0 False False
4 0 0 0 False False
5 0 0 0 False False
6 4 0 0 False False
7 4 0 0 False False
8 2 0 0 False False
9 2 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 3615 TOP 0
1 True 3521 JUNGLE 0
2 True 4712 MIDDLE 0
3 True 4109 BOTTOM 0
4 True 4021 UTILITY 0
5 True 3687 TOP 0
6 True 2521 JUNGLE 0
7 True 2849 MIDDLE 0
8 True 2686 BOTTOM 0
9 True 2539 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 2033 3057 3044 1028 0 0 3340
1 0 0 2031 3145 1001 0 0 3340
2 0 3134 2031 0 3158 3070 3133 3340
3 0 1054 3111 1042 1036 1036 0 3340
4 0 3802 1001 3853 0 0 0 3340
5 0 1055 1053 1042 1001 1042 1037 3340
6 0 2031 3134 1036 0 0 0 3340
7 0 1055 6670 1042 0 1001 2055 3340
8 0 1056 3020 1052 0 0 0 3340
9 0 3851 2031 3802 1001 0 0 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 0 0 0 0
1 1 3 3 1
2 1 4 4 1
3 1 3 3 2
4 1 2 2 1
5 0 1 0 1
6 0 0 0 0
7 0 0 0 0
8 0 0 0 0
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 515 3446 920
1 0 23836 2225
2 0 0 0
3 0 0 0
4 0 19111 3637
5 0 6368 1283
6 263 5604 500
7 241 3813 370
8 411 10424 1194
9 397 7016 3076
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 1283 0 0
1 1323 48 0
2 446 8 0
3 2844 0 0
4 1502 0 0
5 920 0 0
6 2187 40 0
7 740 0 0
8 1785 0 0
9 1783 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 26258
1 0 2 6619
2 0 3 39580
3 0 4 22117
4 0 5 3701
5 0 6 30382
6 0 7 15418
7 0 8 21633
8 0 9 8358
9 0 10 1701
physicalDamageDealtToChampions physicalDamageTaken role \
0 2321 3506 SUPPORT
1 355 7104 SUPPORT
2 5285 3595 SUPPORT
3 2031 1749 SUPPORT
4 1119 1016 SUPPORT
5 2465 4289 DUO
6 1133 4686 SUPPORT
7 1477 5528 SUPPORT
8 826 1652 SUPPORT
9 287 2001 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 0 4 1 12 167
1 1 4 6 11 131
2 1 4 3 14 113
3 1 4 2 6 95
4 1 3 1 4 203
5 1 4 1 12 218
6 6 11 1 4 67
7 1 4 2 12 90
8 1 7 1 4 162
9 1 4 1 14 106
summonerName teamEarlySurrendered teamId teamPosition \
0 Coolgum15 False 100 TOP
1 GaryBirch False 100 JUNGLE
2 NotWhiff False 100 MIDDLE
3 ghost12388 False 100 BOTTOM
4 TheChilledWolf False 100 UTILITY
5 Captin Crackers False 200 TOP
6 Klitchx False 200 JUNGLE
7 PhxFr False 200 MIDDLE
8 QuaBoiPlayBoi False 200 BOTTOM
9 Sleepybungolist False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1 663 31245 3241
1 1 663 34340 2682
2 2 663 40262 5653
3 9 663 22418 2333
4 8 663 22900 4843
5 2 663 39755 3749
6 4 663 23363 1747
7 1 663 25610 2010
8 3 663 21622 2020
9 13 663 8838 3484
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 4789 1297 79 27
1 8451 5669 2 80
2 4271 281 73 103
3 4737 725 53 44
4 2519 258 22 63
5 5209 1062 72 27
6 6952 2122 1 120
7 6677 810 55 36
8 3478 454 47 12
9 4117 394 10 96
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 21 1 1540
1 0 1 3884
2 0 1 682
3 0 1 301
4 0 1 87
5 0 1 3005
6 50 1 2340
7 43 1 163
8 28 2 2840
9 30 1 120
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 0 0 0
1 102 24 0 0
2 368 229 0 0
3 301 144 0 0
4 87 0 0 0
5 0 0 0 0
6 114 78 0 0
7 163 408 0 0
8 0 40 0 0
9 120 331 0 0
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 0 0 0 0 True
1 8 1 0 4 True
2 8 2 1 5 True
3 3 0 0 2 True
4 9 0 0 5 True
5 3 0 0 3 False
6 4 0 0 2 False
7 4 1 1 2 False
8 0 0 0 0 False
9 2 0 0 2 False ,
assists baronKills bountyLevel champLevel championName \
0 2 0 1 15 Illaoi
1 7 1 3 15 Kayn
2 3 0 13 17 Yone
3 10 0 5 15 Jhin
4 10 0 0 12 Thresh
5 3 0 0 13 Volibear
6 5 0 0 11 Lillia
7 4 0 0 14 Pantheon
8 4 0 0 13 Senna
9 4 0 0 12 Lux
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 8178 8178 8178
1 1742 31603 1742
2 4212 18362 4212
3 2945 8897 2945
4 483 2608 483
5 1474 1618 1474
6 1026 9465 1026
7 0 2042 0
8 1316 2813 1316
9 1288 1583 1288
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 2 0 0 False False
1 4 1 2 False False
2 0 2 0 False False
3 1 1 0 False False
4 5 6 0 False False
5 4 1 0 False True
6 12 1 1 True False
7 6 2 0 True False
8 2 0 1 False False
9 3 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 11232 TOP 0
1 False 11241 JUNGLE 0
2 False 15389 MIDDLE 1
3 False 10672 BOTTOM 1
4 False 6813 UTILITY 0
5 False 7367 TOP 0
6 False 7564 JUNGLE 0
7 False 8630 MIDDLE 0
8 False 9745 BOTTOM 0
9 False 7232 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 2033 6630 6333 3053 0 0 3340
1 0 6695 6693 3042 1036 3158 0 3340
2 0 1054 3006 6673 3031 6333 1053 3340
3 0 1055 6671 3009 6676 1037 2055 3363
4 0 3857 3190 3067 3117 3024 0 3364
5 2 6664 3047 1011 1054 3076 1029 3340
6 2 0 3157 6653 3158 0 0 3340
7 2 2033 6692 3047 3071 0 0 3340
8 2 3094 6672 3009 3124 0 0 3340
9 2 3853 3020 6655 3916 2055 1026 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 3 0 1
1 2 6 3 2
2 1 13 13 2
3 1 5 5 1
4 0 0 0 0
5 0 2 0 1
6 0 1 0 1
7 1 3 2 1
8 2 4 2 1
9 1 2 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 790 119 61
1 805 9000 1163
2 0 26624 4657
3 1069 2052 1790
4 507 8400 3506
5 777 41042 6355
6 517 67184 5509
7 509 4438 422
8 1090 229 229
9 1069 41657 5764
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 4852 0 0
1 5155 162 0
2 3321 47 0
3 3221 0 0
4 5086 0 0
5 3294 0 0
6 6247 96 0
7 2200 4 0
8 802 4 0
9 1361 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 136411
1 0 2 159957
2 0 3 175493
3 0 4 102675
4 0 5 4716
5 0 6 30856
6 0 7 14543
7 0 8 78466
8 0 9 105268
9 0 10 3144
physicalDamageDealtToChampions physicalDamageTaken role \
0 14432 9805 SOLO
1 11135 22896 NONE
2 14001 17998 SOLO
3 14561 6931 CARRY
4 333 9647 SUPPORT
5 6767 23881 SOLO
6 402 24069 NONE
7 10590 14021 SOLO
8 17887 7996 CARRY
9 475 5179 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 4 2 12 167
1 4 4 14 11 138
2 4 14 4 4 189
3 3 7 3 4 120
4 4 4 4 3 114
5 2 12 3 4 116
6 3 4 16 11 168
7 3 14 3 4 149
8 4 7 4 4 295
9 3 4 3 14 90
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 Coolgum15 False 100 TOP 1
1 Multip1ex False 100 JUNGLE 6
2 Yuta Ôkkotsu False 100 MIDDLE 23
3 SnacPak22 False 100 BOTTOM 25
4 Horisan TFT False 100 UTILITY 21
5 zionwang False 200 TOP 30
6 slapback False 200 JUNGLE 16
7 JyroSphere False 200 MIDDLE 17
8 LostShin False 200 BOTTOM 48
9 Aphie1021 False 200 UTILITY 34
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1747 139251 14493
1 1747 181572 12779
2 1747 218840 22284
3 1747 104727 16352
4 1747 17165 3840
5 1747 73945 13159
6 1747 106576 8399
7 1747 88946 11657
8 1747 118707 20782
9 1747 45361 6799
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 16414 3601 192 16
1 29258 16958 22 249
2 23644 10618 211 228
3 11206 4540 166 48
4 15835 2028 30 68
5 28199 2994 122 184
6 31369 7148 35 258
7 17779 2535 146 30
8 9208 7350 175 143
9 6605 114 42 165
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 70 1 2720
1 121 1 12614
2 0 1 16723
3 33 2 0
4 126 4 4048
5 106 1 2046
6 357 1 24847
7 159 1 6042
8 74 5 13208
9 110 1 559
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 1755 5 0
1 480 1206 2 0
2 3625 2325 2 0
3 0 1053 1 0
4 0 1101 0 0
5 36 1023 0 10
6 2487 1053 0 10
7 644 1557 0 10
8 2664 408 0 10
9 559 64 0 10
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 14 0 1 9 True
1 24 1 0 10 True
2 21 2 1 8 True
3 12 2 4 4 True
4 63 6 7 22 True
5 24 1 2 9 False
6 16 1 1 7 False
7 15 2 0 11 False
8 14 0 2 8 False
9 32 3 3 15 False ,
assists baronKills bountyLevel champLevel championName \
0 9 0 2 16 Chogath
1 12 0 1 14 Sion
2 3 0 0 13 Pyke
3 14 0 7 15 Kaisa
4 12 0 0 12 Rell
5 2 0 0 15 Illaoi
6 5 0 0 12 Jax
7 5 0 0 14 Ekko
8 4 0 0 12 Vayne
9 11 0 0 12 Blitzcrank
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3765 12150 3765
1 1309 18302 1309
2 1428 4913 1428
3 2318 21155 2318
4 817 1254 817
5 4288 4288 4288
6 457 19289 457
7 4520 6338 4520
8 2709 6028 2709
9 0 198 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 1 1 2 False True
1 5 3 2 True False
2 7 0 0 False False
3 2 1 0 False False
4 3 0 0 False False
5 4 0 0 False False
6 5 0 1 False False
7 5 1 0 False False
8 10 0 0 False False
9 6 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 11045 TOP 0
1 True 11318 JUNGLE 0
2 True 10334 MIDDLE 0
3 True 13688 BOTTOM 0
4 True 8079 UTILITY 0
5 True 9158 TOP 0
6 True 10438 JUNGLE 0
7 True 11097 MIDDLE 0
8 True 11553 BOTTOM 0
9 True 6697 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3075 3082 3068 3047 3067 1029 3340
1 0 6662 2031 0 3748 3075 3009 3364
2 0 3044 3142 6693 2031 3111 1037 3340
3 0 1042 6671 6676 3085 3006 3123 3340
4 0 3190 3047 3860 3050 0 0 3364
5 0 2033 6630 3111 3053 1031 0 3340
6 0 3078 3006 3074 1037 1053 0 3340
7 0 2033 3020 3100 3152 3165 1052 3340
8 0 1055 3006 6672 3046 3153 1036 3340
9 0 3050 6664 3117 0 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 6 4 2
1 0 4 0 1
2 3 8 3 2
3 2 10 7 2
4 0 2 0 1
5 0 0 0 0
6 2 5 2 1
7 2 6 3 1
8 3 7 3 2
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 1638 96903 14282
1 640 44172 5039
2 344 0 0
3 588 13148 4964
4 777 15046 5767
5 941 64 52
6 666 18236 1703
7 681 90880 14307
8 275 46 46
9 429 12130 6887
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 5694 16 0
1 6179 118 0
2 7859 2 0
3 2920 24 0
4 1607 0 0
5 10413 0 0
6 6352 128 0
7 4798 8 0
8 4917 15 0
9 5203 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 28776
1 0 2 116258
2 0 3 34594
3 0 4 144690
4 0 5 6433
5 0 6 151970
6 0 7 101132
7 0 8 18048
8 0 9 92921
9 0 10 6393
physicalDamageDealtToChampions physicalDamageTaken role \
0 2760 17899 SOLO
1 7080 19575 NONE
2 9442 13832 SOLO
3 16045 14092 CARRY
4 958 9590 SUPPORT
5 19354 9138 SOLO
6 9056 14101 NONE
7 1791 10839 SOLO
8 15089 14709 CARRY
9 2621 10932 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 4 12 264
1 3 4 16 11 115
2 4 14 5 4 118
3 3 4 4 7 84
4 4 4 6 14 410
5 4 4 4 12 166
6 3 4 14 11 123
7 5 14 4 4 295
8 4 7 5 4 112
9 0 4 6 3 121
summonerName teamEarlySurrendered teamId teamPosition \
0 GalaxyGonX False 100 TOP
1 Pa1rickF0x False 100 JUNGLE
2 TXIC Chaos False 100 MIDDLE
3 HoneyDrewThePoo False 100 BOTTOM
4 Mirage of Dreams False 100 UTILITY
5 Coolgum15 False 200 TOP
6 Smootherrivers False 200 JUNGLE
7 StockSoul False 200 MIDDLE
8 asuperman80 False 200 BOTTOM
9 HermanvEmJ False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 76 1787 134357 19036
1 21 1787 168441 12722
2 36 1787 39450 12390
3 0 1787 159601 21248
4 37 1787 28143 7848
5 1 1787 154004 19407
6 14 1787 130151 10919
7 26 1787 110337 17206
8 10 1787 116742 23487
9 48 1787 23838 9509
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 23686 11556 175 720
1 29441 9597 55 926
2 23402 6122 82 175
3 18658 9217 177 44
4 13681 4014 49 78
5 20381 6795 196 24
6 21925 8939 19 156
7 17533 3943 132 238
8 21244 7737 155 49
9 17227 1750 36 110
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 49 1 8677
1 140 3 8010
2 195 1 4855
3 37 2 1762
4 73 5 6663
5 67 1 1970
6 175 1 10782
7 190 1 1408
8 207 2 23774
9 128 4 5315
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1993 92 1 5
1 602 3687 1 5
2 2947 1710 1 5
3 238 1645 0 5
4 1122 2484 0 5
5 0 829 2 3
6 160 1470 1 3
7 1108 1895 1 3
8 8351 1617 1 3
9 0 1091 0 3
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 18 1 1 9 True
1 21 3 4 4 True
2 16 0 0 10 True
3 26 1 0 10 True
4 29 0 3 11 True
5 14 0 1 8 False
6 19 0 0 10 False
7 12 3 0 7 False
8 13 0 1 8 False
9 36 0 1 16 False ,
assists baronKills bountyLevel champLevel championName \
0 1 0 1 14 Pantheon
1 5 0 0 14 FiddleSticks
2 2 0 1 15 Zyra
3 5 0 1 13 Jinx
4 4 0 1 13 Thresh
5 5 0 3 17 Nasus
6 7 0 1 15 Jax
7 2 0 0 14 Akali
8 9 0 0 14 Jhin
9 10 0 0 14 Karma
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 135 4722 135
1 0 13118 0
2 761 1232 761
3 1164 1164 1164
4 678 1101 678
5 8146 23733 8146
6 491 19061 491
7 373 2732 373
8 3845 6889 3845
9 1431 3349 1431
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 6 2 0 False True
1 6 0 1 False False
2 6 0 0 True False
3 6 0 0 False False
4 3 2 0 False False
5 5 1 0 False False
6 1 1 1 False False
7 5 1 0 False False
8 4 0 1 False False
9 3 3 1 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 True False False
6 False True False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 11524 TOP 0
1 True 9361 JUNGLE 0
2 True 10095 MIDDLE 0
3 True 8101 BOTTOM 0
4 True 6928 UTILITY 0
5 True 14175 TOP 1
6 True 11086 JUNGLE 0
7 True 9460 MIDDLE 0
8 True 10847 BOTTOM 0
9 True 9858 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 6692 6609 3047 0 3071 0 3340
1 1 3152 2031 3020 4637 3191 1052 3330
2 1 1056 3157 3020 1082 6655 1011 3340
3 1 1055 6672 3006 1042 1042 1018 3340
4 1 3190 3857 3047 3076 3801 3067 3340
5 0 1054 6632 3047 3075 3065 0 3340
6 0 3111 3748 3078 1053 0 0 3364
7 0 4637 4633 3111 0 2031 3191 3340
8 0 3009 6671 6676 3094 1031 0 3340
9 0 3020 1058 3853 6617 4628 1058 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 9 6 1
1 0 2 0 1
2 1 5 2 1
3 0 1 0 1
4 0 1 0 1
5 2 6 3 2
6 1 3 2 2
7 2 7 3 2
8 1 4 3 2
9 1 7 7 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 881 1201 429
1 1001 131880 11545
2 676 113131 26399
3 994 1276 506
4 1181 21184 5940
5 457 35627 7455
6 1377 28923 1939
7 492 54887 9098
8 1169 9111 2665
9 1076 45973 19836
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 5552 1 0
1 9184 131 0
2 8602 0 0
3 10988 0 0
4 8635 0 0
5 13999 40 0
6 4390 145 0
7 12165 0 0
8 8325 20 1
9 6775 19 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 104891
1 0 2 7709
2 0 3 14609
3 0 4 62553
4 0 5 7112
5 0 6 192015
6 0 7 140455
7 0 8 10083
8 0 9 116495
9 0 10 3616
physicalDamageDealtToChampions physicalDamageTaken role \
0 20305 17435 SOLO
1 0 25869 NONE
2 1509 6079 SOLO
3 5945 6146 CARRY
4 1092 9019 SUPPORT
5 15774 21823 SOLO
6 8966 21650 NONE
7 1894 8161 SOLO
8 11297 5557 CARRY
9 1049 5725 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 8 14 322
1 14 11 4 4 134
2 6 14 3 4 190
3 4 4 5 7 125
4 4 4 5 14 166
5 3 12 4 4 353
6 17 11 4 4 215
7 3 14 3 4 229
8 3 7 3 4 106
9 6 14 7 4 407
summonerName teamEarlySurrendered teamId teamPosition \
0 Rotome False 100 TOP
1 SlothoftheAbyss False 100 JUNGLE
2 MoistureCreature False 100 MIDDLE
3 Alece False 100 BOTTOM
4 Coolgum15 False 100 UTILITY
5 Thunderguy5767 False 200 TOP
6 Kyllen False 200 JUNGLE
7 Wavrynn False 200 MIDDLE
8 GregThePanda222 False 200 BOTTOM
9 TaIking Tree False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 25 1907 109747 22033
1 24 1907 147792 12100
2 57 1907 132638 29631
3 12 1907 67275 7257
4 32 1907 33568 7983
5 18 1907 227643 23229
6 14 1907 185127 11842
7 0 1907 66965 11386
8 37 1907 139572 14073
9 38 1907 50802 22029
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 23705 3641 156 44
1 35711 19332 33 666
2 15081 248 142 375
3 17591 3764 142 37
4 18010 1881 51 148
5 37786 4407 202 125
6 26442 14692 44 302
7 22045 6542 129 30
8 14177 4818 171 142
9 13453 6125 30 216
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 235 1 3654
1 215 1 8202
2 228 1 4897
3 203 3 3444
4 109 2 5271
5 105 1 0
6 37 1 15748
7 169 1 1994
8 90 3 13965
9 35 5 1212
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1298 716 0 6
1 554 657 0 6
2 1722 399 1 6
3 804 455 0 6
4 950 355 0 6
5 0 1962 3 1
6 936 401 2 1
7 394 1718 0 1
8 110 294 0 1
9 1143 952 1 1
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 9 2 1 7 False
1 23 0 1 1 False
2 15 0 1 11 False
3 15 0 2 9 False
4 20 2 0 9 False
5 27 2 2 8 True
6 24 1 3 3 True
7 13 1 2 6 True
8 16 0 0 9 True
9 51 3 4 19 True ,
assists baronKills bountyLevel champLevel championName \
0 8 0 0 17 Pantheon
1 4 0 0 15 MasterYi
2 3 0 0 15 Akali
3 20 0 1 14 Jinx
4 14 0 1 14 Thresh
5 9 0 0 16 Riven
6 14 0 1 18 Udyr
7 11 0 1 15 Leblanc
8 13 1 0 17 Sivir
9 6 0 0 16 Pyke
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 1045 9596 1045
1 1743 4632 1743
2 1828 1994 1828
3 3454 5593 3454
4 1011 2259 1011
5 5845 9263 5845
6 3801 39234 3801
7 3623 7800 3623
8 6167 22390 6167
9 2834 9009 2834
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 6 1 1 False False
1 10 0 0 False False
2 9 0 0 False False
3 10 0 0 True False
4 8 2 0 False True
5 5 0 0 False False
6 3 1 3 False False
7 8 1 0 False False
8 11 4 0 False False
9 12 0 1 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 True False False
9 False True False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 15853 TOP 0
1 False 11329 JUNGLE 0
2 False 11487 MIDDLE 0
3 False 11511 BOTTOM 0
4 False 9029 UTILITY 0
5 False 11467 TOP 0
6 False 15600 JUNGLE 1
7 False 10768 MIDDLE 1
8 False 16320 BOTTOM 0
9 False 19267 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 2 6692 3074 3047 3814 3071 1031 3340
1 2 6672 3006 3153 1037 3133 1031 3340
2 2 4636 3100 3157 3020 1052 1054 3340
3 2 6672 3006 3085 3031 1018 0 3340
4 2 3857 3190 3109 3117 3067 1029 3364
5 0 3071 6630 3158 3133 1053 3077 3340
6 0 3047 3075 6664 3742 3091 1029 3364
7 0 3158 3157 3165 6655 1052 0 3340
8 0 3123 6691 3042 3158 6694 3814 3363
9 0 3181 3142 3117 3179 3814 6691 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 4 15 6 3
1 2 6 2 2
2 3 9 3 1
3 0 4 0 1
4 1 5 3 1
5 1 3 2 1
6 3 9 3 1
7 1 4 2 1
8 1 6 3 3
9 4 21 6 4
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 877 5265 825
1 428 3978 177
2 638 74778 14165
3 687 1359 287
4 704 25506 11088
5 602 0 0
6 632 128175 8000
7 437 60286 15985
8 257 0 0
9 392 0 0
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 4661 16 0
1 6865 96 0
2 8239 0 0
3 2693 0 0
4 2501 0 0
5 3799 4 0
6 6879 152 0
7 6201 8 0
8 6789 50 0
9 5354 4 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 148963
1 0 2 132129
2 0 3 14011
3 0 4 112637
4 0 5 6602
5 0 6 93264
6 0 7 70065
7 0 8 16827
8 0 9 226597
9 0 10 40006
physicalDamageDealtToChampions physicalDamageTaken role \
0 39005 21517 SOLO
1 12285 22038 NONE
2 2034 17763 SOLO
3 17455 20746 CARRY
4 1725 16457 SUPPORT
5 9888 19217 SOLO
6 7118 26078 NONE
7 1619 13707 SOLO
8 32060 23496 NONE
9 21220 20434 SOLO
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 6 14 322
1 14 11 3 4 190
2 3 21 4 4 134
3 6 4 7 7 125
4 4 4 9 14 166
5 5 4 2 12 239
6 20 11 5 4 331
7 6 14 6 4 168
8 5 4 6 7 149
9 5 4 8 3 281
summonerName teamEarlySurrendered teamId teamPosition \
0 Rotome False 100 TOP
1 MoistureCreature False 100 JUNGLE
2 SlothoftheAbyss False 100 MIDDLE
3 Alece False 100 BOTTOM
4 Coolgum15 False 100 UTILITY
5 jeff66613 False 200 TOP
6 Gongzilla False 200 JUNGLE
7 bidule c moi False 200 MIDDLE
8 ptitbat False 200 BOTTOM
9 Patnais support False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 32 2044 167530 40869
1 1 2044 156859 17513
2 1 2044 88789 16200
3 19 2044 129975 19350
4 55 2044 38382 14090
5 21 2044 104340 9943
6 37 2044 216462 17594
7 14 2044 80744 18741
8 2 2044 249624 32775
9 40 2044 52584 27732
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 29154 7097 191 55
1 30479 10239 87 110
2 27720 4917 135 38
3 24504 6186 174 68
4 22672 754 33 224
5 24481 4707 148 84
6 36146 20304 80 277
7 20622 3566 107 18
8 31565 9961 203 45
9 28115 6397 35 158
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 227 1 13302
1 337 1 20751
2 317 1 0
3 291 3 15979
4 264 5 6273
5 167 1 11075
6 112 1 18221
7 271 1 3631
8 287 4 23026
9 310 1 12578
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1038 2975 0 10
1 5050 1574 1 10
2 0 1717 0 10
3 1608 1064 1 10
4 1276 3713 0 10
5 55 1463 2 3
6 2475 3189 3 3
7 1136 713 1 3
8 714 1280 2 3
9 6512 2326 2 3
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 13 1 0 10 False
1 19 0 1 10 False
2 10 0 2 5 False
3 13 0 3 7 False
4 39 2 2 19 False
5 14 0 0 9 True
6 27 1 6 2 True
7 25 1 0 12 True
8 25 4 1 15 True
9 45 0 8 15 True ,
assists baronKills bountyLevel champLevel championName \
0 3 0 0 17 Garen
1 6 0 0 15 Taliyah
2 3 0 0 15 Malphite
3 5 0 0 14 Ezreal
4 7 0 0 13 Brand
5 4 0 1 17 Poppy
6 10 2 1 18 Hecarim
7 8 0 6 18 Diana
8 11 0 4 16 Vayne
9 24 0 0 15 Seraphine
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 5913 6676 5913
1 0 11600 0
2 0 0 0
3 2586 4473 2586
4 160 1715 160
5 3145 11089 3145
6 2182 28271 2182
7 7296 8997 7296
8 3058 29673 3058
9 2703 6496 2703
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 1 2 0 False True
1 9 0 1 False False
2 7 0 0 False False
3 9 2 0 False False
4 12 2 0 False False
5 3 1 0 False False
6 4 11 3 False False
7 2 1 0 False False
8 6 0 1 False False
9 5 3 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 14103 TOP 0
1 False 11416 JUNGLE 0
2 False 11192 MIDDLE 0
3 False 10255 BOTTOM 0
4 False 8170 UTILITY 0
5 False 8838 TOP 0
6 False 16528 JUNGLE 0
7 False 17217 MIDDLE 0
8 False 15370 BOTTOM 1
9 False 10405 UTILITY 1
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 2 3066 6631 3006 3053 3123 6694 3340
1 2 3020 2031 3157 6655 3165 1052 3340
2 2 1056 3020 6655 4628 4629 0 3363
3 2 6632 3042 3077 3158 3133 1036 3340
4 2 3853 3020 6653 1026 1052 1011 3364
5 0 3742 3047 3068 0 0 0 3340
6 0 6632 3111 0 3053 3742 6333 3364
7 0 1058 3020 3157 3100 3041 4636 3340
8 0 1055 6672 3153 3006 3026 3046 3340
9 0 3853 6617 3158 6616 3011 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 6 6 1
1 1 5 3 1
2 1 4 2 1
3 0 3 0 1
4 0 2 0 1
5 0 1 0 1
6 3 12 4 2
7 3 14 6 3
8 3 10 4 2
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 1574 0 0
1 577 149598 9253
2 556 83386 13877
3 434 17834 3831
4 275 48076 21529
5 272 21041 1862
6 610 22121 2569
7 1216 192380 27086
8 462 281 281
9 802 43412 10878
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 7848 10 0
1 11174 164 0
2 7932 2 0
3 8380 0 0
4 9433 0 0
5 4260 0 0
6 15315 199 0
7 10254 32 0
8 13045 24 0
9 11371 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 168784
1 0 2 10734
2 0 3 27643
3 0 4 112119
4 0 5 1648
5 0 6 68315
6 0 7 199114
7 0 8 36489
8 0 9 129118
9 0 10 4705
physicalDamageDealtToChampions physicalDamageTaken role \
0 12527 14322 SOLO
1 336 18864 NONE
2 1995 7394 SOLO
3 7165 11176 CARRY
4 554 9101 SUPPORT
5 3910 10451 SOLO
6 15202 28015 NONE
7 2483 9267 SOLO
8 14450 12102 CARRY
9 1414 4950 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 6 14 322
1 13 11 4 4 134
2 4 4 7 14 166
3 4 7 3 4 190
4 7 14 3 4 158
5 2 12 3 4 97
6 17 11 6 6 65
7 2 4 5 12 221
8 5 7 4 4 52
9 7 3 7 4 210
summonerName teamEarlySurrendered teamId teamPosition \
0 Rotome False 100 TOP
1 SlothoftheAbyss False 100 JUNGLE
2 Coolgum15 False 100 MIDDLE
3 MoistureCreature False 100 BOTTOM
4 AlexAve False 100 UTILITY
5 Dwight False 200 TOP
6 Im not Miyami False 200 JUNGLE
7 ys4play False 200 MIDDLE
8 7Dead False 200 BOTTOM
9 Monosyte False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 43 2098 174724 16084
1 9 2098 170178 10060
2 29 2098 131309 16953
3 0 2098 131464 10996
4 16 2098 50795 23155
5 16 2098 106689 5961
6 22 2098 236227 18839
7 5 2098 231589 29570
8 9 2098 168820 19352
9 36 2098 48118 12293
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 25240 2138 253 252
1 31207 9155 11 408
2 16023 166 150 695
3 20031 3817 158 0
4 19002 1792 29 27
5 16412 2604 108 318
6 46909 27447 51 329
7 20771 5741 222 50
8 26055 10295 170 76
9 16681 9722 37 307
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 49 1 5939
1 363 1 9844
2 273 1 20279
3 270 3 1510
4 350 1 1070
5 58 1 17332
6 144 1 14991
7 93 1 2720
8 177 4 39421
9 151 5 0
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 3556 3069 2 11
1 471 1168 0 11
2 1081 697 0 11
3 0 474 1 11
4 1070 467 0 11
5 187 1701 1 3
6 1068 3577 0 3
7 0 1249 4 3
8 4621 907 1 3
9 0 359 3 3
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 20 2 1 12 False
1 17 0 2 8 False
2 14 0 0 9 False
3 25 2 4 11 False
4 44 4 3 19 False
5 24 1 3 12 True
6 39 11 6 13 True
7 37 2 4 12 True
8 12 2 2 5 True
9 92 3 9 33 True ,
assists baronKills bountyLevel champLevel championName \
0 0 0 0 7 Zac
1 1 0 0 10 Sejuani
2 1 0 0 10 Elise
3 1 0 1 9 Jhin
4 4 0 0 9 Ezreal
5 1 0 7 13 Mordekaiser
6 3 0 6 11 Chogath
7 4 0 0 10 Qiyana
8 4 0 0 10 Vayne
9 3 0 1 8 Yuumi
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 0 0 0
1 1351 9819 1351
2 2403 2403 2403
3 0 0 0
4 0 0 0
5 4153 5644 4153
6 1494 12607 1494
7 2571 2571 2571
8 3041 4442 3041
9 536 536 536
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 0 0 False False
1 4 0 1 False False
2 7 0 0 False False
3 4 1 0 False False
4 4 2 0 False False
5 1 1 0 False False
6 1 0 1 False False
7 5 0 0 False False
8 2 1 0 False True
9 1 1 0 True False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False True False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 3155 TOP 0
1 True 6648 JUNGLE 0
2 True 5739 MIDDLE 0
3 True 6160 BOTTOM 0
4 True 4237 UTILITY 0
5 True 8445 TOP 0
6 True 7951 JUNGLE 0
7 True 6992 MIDDLE 0
8 True 6449 BOTTOM 0
9 True 5225 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1001 3140 1028 1028 0 0 3340
1 0 3068 2031 3067 1011 1001 3801 3340
2 0 1056 3108 6656 1028 0 0 3340
3 0 6671 1055 2055 3009 1036 0 3340
4 0 3802 3020 3853 1026 0 0 3340
5 0 1054 4633 4637 3111 1052 0 3363
6 0 6664 2031 3111 3077 1028 0 3340
7 0 6693 2031 3155 3158 3133 0 3340
8 0 1055 6672 2031 1001 0 1042 3340
9 0 4642 3853 2055 3504 3067 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 1 0 1
1 1 3 2 1
2 0 2 0 1
3 1 4 2 1
4 0 0 0 0
5 1 8 7 2
6 1 6 6 1
7 1 6 4 1
8 1 2 2 1
9 0 2 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 321 6698 1323
1 722 28602 2125
2 408 39165 7703
3 442 1406 238
4 318 4192 2270
5 324 58212 9826
6 215 48507 4323
7 575 2560 789
8 282 189 8
9 568 5640 4417
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 6426 0 0
1 3669 67 0
2 5397 4 0
3 2894 0 0
4 1810 0 0
5 4428 4 0
6 3078 85 0
7 4558 0 0
8 1113 0 0
9 996 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 2803
1 0 2 52225
2 0 3 12862
3 0 4 49028
4 0 5 4981
5 0 6 13025
6 0 7 21638
7 0 8 37797
8 0 9 51431
9 0 10 1624
physicalDamageDealtToChampions physicalDamageTaken role \
0 550 2354 SUPPORT
1 3851 11917 SUPPORT
2 1513 6521 DUO
3 7516 5458 DUO
4 3168 3785 SUPPORT
5 2142 7375 SUPPORT
6 1815 12731 SUPPORT
7 8300 6701 SUPPORT
8 6221 8923 SUPPORT
9 882 3075 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 2 12 132
1 3 4 11 11 166
2 4 14 3 4 73
3 2 4 3 7 273
4 4 3 2 4 409
5 1 12 3 4 94
6 2 4 10 11 216
7 4 4 4 14 250
8 3 7 2 4 549
9 2 3 3 14 270
summonerName teamEarlySurrendered teamId teamPosition \
0 Bmonster7 False 100 TOP
1 Coolgum15 False 100 JUNGLE
2 FatAnimeTidd1es False 100 MIDDLE
3 Creatureface False 100 BOTTOM
4 KrugsAreßadMkay False 100 UTILITY
5 TheRealNovaWolf False 200 TOP
6 Hasanaki False 200 JUNGLE
7 CataclysmicWolf False 200 MIDDLE
8 tapioca pearlz False 200 BOTTOM
9 Magsca False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 6 1109 12199 2076
1 12 1109 87096 6525
2 23 1109 52324 9513
3 11 1109 50434 7755
4 1 1109 9174 5439
5 2 1109 74690 12899
6 41 1109 86049 9663
7 14 1109 42248 9410
8 6 1109 58121 7532
9 5 1109 7463 5498
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 10232 3547 18 61
1 17435 5166 47 302
2 13451 2133 100 45
3 9808 2099 112 54
4 5844 122 8 11
5 12032 4317 107 28
6 16006 7611 26 705
7 11591 1127 72 60
8 10036 3378 111 7
9 4159 3208 8 26
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 74 1 2697
1 121 1 6268
2 182 1 296
3 97 2 0
4 53 1 0
5 16 1 3452
6 10 1 15902
7 120 1 1890
8 26 3 6500
9 14 2 198
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 202 1450 0 4
1 548 1848 0 4
2 296 1532 0 4
3 0 1456 0 4
4 0 249 0 4
5 929 228 1 0
6 3524 196 1 0
7 320 332 1 0
8 1302 0 1 0
9 198 88 0 0
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 2 0 0 3 False
1 3 0 0 2 False
2 8 0 0 5 False
3 5 3 0 4 False
4 9 2 1 7 False
5 19 2 0 4 True
6 12 0 0 6 True
7 8 0 0 5 True
8 10 1 1 6 True
9 20 3 4 6 True ,
assists baronKills bountyLevel champLevel championName \
0 7 0 3 14 Camille
1 6 0 0 11 Nocturne
2 5 0 5 14 Neeko
3 3 0 2 11 Jhin
4 5 0 0 11 Brand
5 3 0 0 13 Gnar
6 4 0 0 11 Warwick
7 3 0 0 13 Viego
8 2 0 0 11 Vayne
9 10 0 0 11 Soraka
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2503 10379 2503
1 0 13098 0
2 3870 6187 3870
3 1312 3794 1312
4 801 1232 801
5 129 2652 129
6 159 5199 159
7 1774 1774 1774
8 2919 4300 2919
9 713 1424 713
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 3 1 0 False False
1 6 1 2 True False
2 4 0 0 False True
3 3 1 0 False False
4 3 4 0 False False
5 5 3 0 False False
6 5 0 1 False False
7 5 2 0 False False
8 6 1 0 False False
9 4 5 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 True False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 11932 TOP 0
1 True 7617 JUNGLE 0
2 True 11432 MIDDLE 0
3 True 7314 BOTTOM 0
4 True 5293 UTILITY 0
5 True 6338 TOP 0
6 True 7389 JUNGLE 0
7 True 9506 MIDDLE 0
8 True 8592 BOTTOM 0
9 True 6242 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3078 3074 3047 6609 1055 0 3340
1 0 3044 6631 3047 3076 0 0 3340
2 0 1056 3152 3157 3020 3165 0 3340
3 0 1055 6673 3009 3123 0 0 3340
4 0 3853 3020 3802 3108 0 0 3364
5 0 6631 2055 1031 0 0 3047 3364
6 0 3111 3078 3077 1011 0 2031 3340
7 0 6672 3047 3153 1028 1036 0 3340
8 0 1055 6672 3006 3046 0 0 3340
9 0 0 3158 3853 3114 6617 1052 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 3 10 4 2
1 0 3 0 1
2 3 10 5 2
3 1 2 2 1
4 0 0 0 0
5 0 1 0 1
6 1 3 2 1
7 1 7 6 2
8 2 7 2 2
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 831 1250 1250
1 536 6689 643
2 502 77737 17862
3 530 1832 180
4 374 12021 4093
5 487 3746 1094
6 779 29139 4460
7 489 3677 2287
8 526 0 0
9 912 15377 7033
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 3550 4 0
1 5077 111 0
2 2979 0 0
3 3083 4 0
4 1939 0 0
5 4887 8 0
6 3898 88 0
7 7874 12 0
8 5763 4 0
9 2916 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 71917
1 0 2 83243
2 0 3 13590
3 0 4 72856
4 0 5 2061
5 0 6 62044
6 0 7 41475
7 0 8 73661
8 0 9 56693
9 0 10 2465
physicalDamageDealtToChampions physicalDamageTaken role \
0 18371 12553 SOLO
1 7572 17964 NONE
2 1614 6189 SOLO
3 4256 4017 CARRY
4 137 2907 SUPPORT
5 5104 7432 SOLO
6 2919 17824 NONE
7 9479 10039 SOLO
8 6419 6667 CARRY
9 343 6725 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 12 4 14 201
1 4 4 15 11 166
2 3 4 4 14 419
3 1 4 2 7 73
4 1 4 1 14 53
5 2 12 4 4 68
6 3 4 11 11 102
7 3 4 2 12 136
8 2 4 1 7 148
9 4 21 3 4 470
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 TW1CE Sana False 100 TOP 24
1 Coolgum15 False 100 JUNGLE 116
2 Pringles Can False 100 MIDDLE 28
3 Void Community False 100 BOTTOM 6
4 panickingasian False 100 UTILITY 2
5 AngelHokori False 200 TOP 18
6 VastNexus False 200 JUNGLE 17
7 Deathshiro False 200 MIDDLE 16
8 keasbey1212 False 200 BOTTOM 10
9 CR NOVA False 200 UTILITY 40
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1413 95872 28237
1 1413 102010 8840
2 1413 114016 20656
3 1413 74688 4436
4 1413 14395 4543
5 1413 66094 6289
6 1413 75937 8058
7 1413 79334 12559
8 1413 68672 7954
9 1413 17999 7376
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 17211 6107 148 120
1 23606 11074 5 409
2 9930 1502 144 118
3 7437 1922 135 41
4 5171 89 15 4
5 13987 1208 95 282
6 24380 11564 14 306
7 22624 4875 136 104
8 13847 2325 135 40
9 9922 9772 10 183
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 111 1 22704
1 168 1 12077
2 130 1 22688
3 64 2 0
4 47 1 312
5 113 1 304
6 125 1 5322
7 98 1 1995
8 135 1 11979
9 131 5 156
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 8615 1107 1 2
1 625 565 0 2
2 1178 760 1 2
3 0 336 1 2
4 312 324 0 2
5 90 1667 0 3
6 678 2656 0 3
7 791 4709 2 3
8 1535 1416 0 3
9 0 281 0 3
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 14 1 2 6 True
1 18 1 2 8 True
2 11 0 2 6 True
3 9 1 1 6 True
4 33 4 5 16 True
5 14 5 2 7 False
6 8 0 0 4 False
7 16 2 2 8 False
8 13 1 1 8 False
9 43 5 4 22 False ,
assists baronKills bountyLevel champLevel championName \
0 6 0 0 16 Darius
1 3 0 0 15 Rengar
2 6 0 0 18 Kayle
3 12 0 0 15 Kaisa
4 11 0 0 14 Swain
5 10 0 8 18 Nasus
6 12 0 1 16 Vi
7 12 0 0 17 Nocturne
8 14 0 0 16 Viktor
9 21 0 0 15 Karma
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 4197 11351 4197
1 0 14543 0
2 1158 4513 1158
3 1680 5582 1680
4 1284 3448 1284
5 12100 24415 12100
6 0 20541 0
7 3880 3880 3880
8 1079 2261 1079
9 1504 2360 1504
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 8 2 0 False False
1 11 1 2 False False
2 6 0 0 False False
3 10 1 0 True False
4 8 3 1 False True
5 5 0 1 False False
6 7 2 2 False False
7 7 1 0 False False
8 7 0 0 False False
9 6 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 True False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 14992 TOP 0
1 True 12382 JUNGLE 0
2 True 15599 MIDDLE 0
3 True 13281 BOTTOM 0
4 True 9218 UTILITY 0
5 True 19410 TOP 1
6 True 13062 JUNGLE 0
7 True 16508 MIDDLE 0
8 True 10361 BOTTOM 0
9 True 10252 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 1011 3068 3111 3071 3053 3076 3340
1 1 6691 3508 3077 3158 3036 0 3340
2 1 1033 3115 3006 4633 3089 3116 3363
3 1 3035 6672 3006 6676 3085 0 3363
4 1 3853 3157 6653 3020 1052 1028 3364
5 0 6333 6632 3047 3110 3065 6609 3340
6 0 3078 3047 3053 6609 3133 0 3364
7 0 6631 1011 3047 3053 3071 3026 3340
8 0 3108 2421 3100 3191 6662 3020 3340
9 0 3853 3117 6617 6616 3011 3067 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 3 11 3 1
1 0 4 0 1
2 3 10 4 2
3 1 4 2 1
4 1 3 2 1
5 3 17 8 2
6 2 7 4 2
7 6 14 3 2
8 0 2 0 1
9 0 3 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 641 26072 3908
1 514 21915 1137
2 645 149412 31546
3 567 17767 5562
4 358 37497 19948
5 833 43273 12474
6 632 10371 0
7 565 3283 2460
8 559 102417 21231
9 627 34603 12714
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 14646 15 0
1 9078 148 0
2 6770 30 0
3 9030 24 0
4 12685 8 0
5 16606 36 0
6 10570 180 0
7 17838 26 0
8 11302 0 0
9 8409 8 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 129834
1 0 2 160643
2 0 3 47592
3 0 4 151814
4 0 5 2733
5 0 6 232723
6 0 7 192703
7 0 8 159290
8 0 9 13934
9 0 10 5594
physicalDamageDealtToChampions physicalDamageTaken role \
0 24506 35902 NONE
1 12381 35557 NONE
2 4701 17938 SOLO
3 17658 19372 CARRY
4 850 12708 SUPPORT
5 39294 31741 SOLO
6 20129 21089 NONE
7 27655 14452 SOLO
8 1338 10467 CARRY
9 1004 9976 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 6 4 7 6 92
1 4 4 21 11 166
2 4 4 1 12 322
3 5 4 5 7 436
4 6 14 4 4 157
5 11 4 6 12 233
6 4 4 20 11 159
7 3 4 1 12 263
8 7 7 5 4 357
9 4 4 7 14 136
summonerName teamEarlySurrendered teamId teamPosition \
0 GingerBurst False 100 TOP
1 Coolgum15 False 100 JUNGLE
2 Rotome False 100 MIDDLE
3 Chapood False 100 BOTTOM
4 AlexAve False 100 UTILITY
5 ll Hiro ll False 200 TOP
6 JOEMYBRO False 200 JUNGLE
7 Counter Time False 200 MIDDLE
8 xxXTinyHippoXxx False 200 BOTTOM
9 Slushi Simcambi False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 45 2199 162117 34354
1 13 2199 192851 14199
2 13 2199 212783 37540
3 4 2199 186593 26716
4 37 2199 41519 22087
5 21 2199 284502 53002
6 32 2199 213968 20971
7 226 2199 173636 30251
8 34 2199 118692 22569
9 25 2199 44638 14634
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 51707 15641 175 194
1 45222 19563 63 262
2 25384 9735 235 319
3 28736 7626 208 77
4 25767 5999 24 171
5 55285 10697 220 1341
6 33063 10302 30 341
7 35053 8341 190 588
8 22923 2859 163 1147
9 19067 6862 38 186
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 272 1 6209
1 348 1 10292
2 228 5 15778
3 375 5 17010
4 210 1 1288
5 157 1 8505
6 257 1 10893
7 263 1 11062
8 224 3 2340
9 152 5 4441
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 5939 1158 1 7
1 680 586 0 7
2 1292 676 0 7
3 3496 334 0 7
4 1288 373 2 7
5 1234 6937 4 3
6 841 1402 0 3
7 136 2762 2 3
8 0 1153 0 3
9 916 681 1 3
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 20 2 0 14 False
1 25 1 1 9 False
2 22 1 2 8 False
3 17 1 1 10 False
4 52 3 5 19 False
5 17 0 1 9 True
6 30 2 6 2 True
7 21 1 0 12 True
8 19 0 1 12 True
9 85 2 7 33 True ,
assists baronKills bountyLevel champLevel championName \
0 2 0 8 18 Darius
1 17 0 1 17 JarvanIV
2 8 1 2 18 Ryze
3 6 0 0 16 Ezreal
4 8 0 0 14 Thresh
5 14 0 0 16 Karma
6 8 0 0 16 Chogath
7 3 0 0 18 Sion
8 8 0 0 15 Xayah
9 13 0 0 15 Zyra
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 17453 32624 17453
1 1064 16127 1064
2 4378 24832 4378
3 2168 12103 2168
4 968 3236 968
5 2846 3008 2846
6 918 5651 918
7 6358 8822 6358
8 1953 4665 1953
9 1031 1335 1031
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 1 0 False False
1 4 6 1 False False
2 3 2 0 False False
3 7 0 1 False False
4 7 2 1 False False
5 9 0 0 True False
6 8 0 1 False True
7 6 4 0 False False
8 10 3 0 False False
9 5 5 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 22884 TOP 1
1 False 14077 JUNGLE 0
2 False 15204 MIDDLE 1
3 False 13817 BOTTOM 0
4 False 8942 UTILITY 0
5 False 9482 TOP 0
6 False 13968 JUNGLE 0
7 False 18570 MIDDLE 0
8 False 12820 BOTTOM 0
9 False 9316 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3031 3142 6691 3072 3009 6676 3340
1 0 3111 6631 3053 3075 1033 0 3364
2 0 3040 3158 6653 4629 3135 1052 3363
3 0 3042 3508 3158 6691 3036 0 3340
4 0 3857 3190 3050 3117 3067 3076 3364
5 2 3070 4633 3047 4637 1052 1058 3340
6 2 4636 4629 3157 3020 3066 1028 3364
7 2 3075 6631 3111 3748 3053 3181 3364
8 2 6671 3006 1037 1031 3153 3085 3363
9 2 3853 3157 3020 6653 3916 2055 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 4 23 8 4
1 1 5 3 2
2 1 2 2 1
3 2 7 3 1
4 0 1 0 1
5 0 0 0 0
6 2 8 2 2
7 3 12 5 2
8 1 4 2 1
9 1 2 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 604 0 0
1 607 25802 1177
2 736 307238 21167
3 549 24234 9277
4 536 22345 4036
5 693 74915 15501
6 614 178599 18228
7 597 26904 2637
8 487 2460 1852
9 547 59787 19483
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 13280 24 0
1 13231 159 0
2 10319 47 0
3 9537 14 0
4 13071 4 0
5 7512 0 0
6 15981 161 0
7 6626 6 0
8 2973 8 0
9 4953 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 326643
1 0 2 143669
2 0 3 14928
3 0 4 161964
4 0 5 8535
5 0 6 18232
6 0 7 31789
7 0 8 255475
8 0 9 161693
9 0 10 2275
physicalDamageDealtToChampions physicalDamageTaken role \
0 52323 17334 SOLO
1 12965 23914 NONE
2 1105 10930 SOLO
3 20883 6922 CARRY
4 530 9666 SUPPORT
5 1649 17949 SOLO
6 2310 31758 NONE
7 22975 39529 SOLO
8 10496 20807 CARRY
9 365 7412 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 6 4 9 6 249
1 7 6 10 11 275
2 5 12 5 4 227
3 4 4 1 12 168
4 2 4 2 14 165
5 5 4 1 12 197
6 22 11 6 4 314
7 4 4 3 12 573
8 4 4 7 7 324
9 4 4 3 14 57
summonerName teamEarlySurrendered teamId teamPosition \
0 StalwartHide False 100 TOP
1 Err0r9703 False 100 JUNGLE
2 OneEyed Ace False 100 MIDDLE
3 Cheeky Lotus False 100 BOTTOM
4 Coolgum15 False 100 UTILITY
5 Pointnab False 200 TOP
6 MasterMavis False 200 JUNGLE
7 BillNyeDaSionGuy False 200 MIDDLE
8 THEscubaSTEVE False 200 BOTTOM
9 Hex Offender False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 33 2242 342882 62855
1 26 2242 175805 14789
2 25 2242 322166 22273
3 0 2242 193799 30161
4 23 2242 34713 4815
5 36 2242 102310 17475
6 63 2242 231888 24100
7 51 2242 283331 25684
8 8 2242 170981 12348
9 50 2242 62339 20125
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 31536 12005 268 418
1 38696 18294 32 808
2 21856 10748 289 67
3 16935 2367 212 4
4 23417 2764 51 148
5 28957 5428 138 308
6 49690 20833 64 1143
7 49250 5839 314 940
8 25535 3338 224 21
9 13497 1413 36 191
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 196 1 16239
1 136 1 6335
2 103 1 0
3 239 1 7600
4 232 5 3832
5 259 1 9163
6 254 1 21500
7 228 1 952
8 328 2 6828
9 110 1 276
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 10532 921 7 5
1 646 1550 2 5
2 0 606 0 5
3 0 475 1 5
4 248 679 0 5
5 324 3496 2 10
6 3561 1950 0 10
7 72 3093 3 10
8 0 1755 0 10
9 276 1130 0 10
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 31 1 2 14 True
1 40 6 9 6 True
2 42 2 4 14 True
3 12 0 1 10 True
4 52 2 9 24 True
5 16 0 0 11 False
6 20 0 2 8 False
7 24 4 6 8 False
8 30 6 2 13 False
9 76 6 7 30 False ,
assists baronKills bountyLevel champLevel championName \
0 10 0 0 15 Tryndamere
1 15 1 1 14 DrMundo
2 3 0 5 14 Lucian
3 10 0 0 11 Senna
4 12 0 0 12 Rell
5 2 0 0 12 Garen
6 3 0 0 13 MasterYi
7 10 0 0 13 Lissandra
8 7 0 0 11 Caitlyn
9 13 0 0 11 Sona
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 9096 21425 9096
1 1675 23030 1675
2 5406 13498 5406
3 1823 7218 1823
4 179 1020 179
5 1815 1815 1815
6 0 18994 0
7 334 2852 334
8 1001 2810 1001
9 443 906 443
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 2 1 0 False False
1 3 3 2 False False
2 9 0 0 False False
3 4 1 0 False True
4 5 0 0 True False
5 7 0 0 False False
6 4 1 2 False False
7 9 1 0 False False
8 3 0 0 False False
9 5 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 12297 TOP 0
1 False 9191 JUNGLE 1
2 False 12262 MIDDLE 0
3 False 8477 BOTTOM 0
4 False 7191 UTILITY 0
5 False 7629 TOP 0
6 False 11259 JUNGLE 0
7 False 7769 MIDDLE 0
8 False 7793 BOTTOM 0
9 False 5589 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 6672 3006 6675 1038 1037 1018 3340
1 0 6664 0 3075 3047 1029 1029 3340
2 0 1055 6672 3006 3508 1036 0 3340
3 0 1055 3124 3006 6672 2015 0 3340
4 0 3860 3190 3047 3801 3067 3076 3364
5 1 6693 1055 3047 3044 1028 1037 3340
6 1 6672 3153 3047 3124 0 0 3364
7 1 1056 2421 3020 3191 3108 6655 3340
8 1 6672 2031 3006 1053 1018 0 3340
9 1 3853 6617 3158 3114 1052 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 7 7 3
1 0 3 0 1
2 3 13 5 3
3 1 2 2 1
4 1 3 3 3
5 2 5 2 2
6 1 12 11 4
7 0 3 0 1
8 1 3 2 1
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 1041 0 0
1 571 68979 4706
2 290 4218 1215
3 808 0 0
4 696 9404 5724
5 334 68 68
6 989 3849 44
7 269 68503 10769
8 678 590 279
9 572 8029 4730
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 2334 12 0
1 3315 129 0
2 5619 8 0
3 3920 16 0
4 3399 0 0
5 3566 3 0
6 3670 104 0
7 2123 0 0
8 1312 4 0
9 2237 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 133363
1 0 2 47539
2 0 3 88776
3 0 4 71618
4 0 5 5283
5 0 6 49703
6 0 7 99047
7 0 8 9166
8 0 9 82899
9 0 10 1954
physicalDamageDealtToChampions physicalDamageTaken role \
0 11718 15304 SOLO
1 5083 15529 NONE
2 15656 10557 SOLO
3 9316 9454 CARRY
4 989 10467 SUPPORT
5 10115 14450 SOLO
6 13731 14725 NONE
7 615 12641 SOLO
8 10205 6467 CARRY
9 1131 8976 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 6 2 4 34
1 14 11 2 4 106
2 4 4 5 14 140
3 4 7 2 4 182
4 5 4 4 14 222
5 2 14 3 4 280
6 3 4 14 11 249
7 3 4 2 12 168
8 4 4 5 7 256
9 4 4 5 3 165
summonerName teamEarlySurrendered teamId teamPosition \
0 D3fused False 100 TOP
1 PIZZACUTTERTHIEF False 100 JUNGLE
2 WooWuWoo False 100 MIDDLE
3 IINJAG False 100 BOTTOM
4 shuo zai False 100 UTILITY
5 Reoga False 200 TOP
6 StalwartHide False 200 JUNGLE
7 Cheeky Lotus False 200 MIDDLE
8 Black Pendragon False 200 BOTTOM
9 Coolgum15 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 2 1474 147321 12828
1 9 1474 125853 10470
2 1 1474 101244 18430
3 31 1474 78017 10060
4 26 1474 21786 7215
5 20 1474 51143 11554
6 5 1474 121705 18534
7 27 1474 82960 11714
8 27 1474 92251 11658
9 14 1474 9984 5861
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 18395 8201 168 38
1 20496 18077 24 270
2 18512 1696 119 19
3 13982 8173 117 159
4 16147 2062 35 49
5 19308 1922 87 54
6 19317 8482 32 176
7 16315 3 122 145
8 8170 1070 144 42
9 11653 6061 13 29
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 61 1 13957
1 77 1 9334
2 270 1 8250
3 114 5 6399
4 135 3 7097
5 206 1 1370
6 134 1 18808
7 232 1 5289
8 71 2 8760
9 96 5 0
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1109 756 2 0
1 680 1651 4 0
2 1557 2335 2 0
3 743 607 0 0
4 501 2280 0 0
5 1370 1291 0 8
6 4758 921 0 8
7 329 1550 0 8
8 1173 390 0 8
9 0 439 0 8
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 15 1 0 8 True
1 26 4 1 11 True
2 13 0 0 7 True
3 11 1 1 7 True
4 34 1 3 16 True
5 14 0 3 6 False
6 17 1 3 2 False
7 14 1 1 4 False
8 11 0 1 7 False
9 22 0 4 9 False ,
assists baronKills bountyLevel champLevel championName \
0 10 0 2 17 Yone
1 7 0 1 14 Neeko
2 10 1 2 18 DrMundo
3 16 0 0 16 Viktor
4 6 0 0 15 Lucian
5 9 0 0 15 Nunu
6 7 0 0 12 Lux
7 7 0 0 16 Kayle
8 4 0 0 16 Viego
9 4 0 0 14 Jinx
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 6229 11201 6229
1 6433 10588 6433
2 4011 31461 4011
3 7161 13162 7161
4 2874 4230 2874
5 264 2200 264
6 600 600 600
7 325 325 325
8 4056 15952 4056
9 765 2813 765
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 0 0 False False
1 6 0 0 False False
2 3 3 4 False False
3 5 0 0 False False
4 6 2 0 False False
5 9 0 0 False False
6 9 0 0 True False
7 4 0 0 False False
8 10 0 0 False False
9 11 1 0 False True
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False True False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 13663 TOP 0
1 False 11684 UTILITY 0
2 False 16797 JUNGLE 0
3 False 12737 BOTTOM 1
4 False 10128 MIDDLE 1
5 False 9742 JUNGLE 0
6 False 7436 UTILITY 0
7 False 11340 MIDDLE 0
8 False 15940 TOP 0
9 False 10754 BOTTOM 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 6673 3031 1053 1038 1054 3006 3340
1 0 3152 3157 3853 3011 3020 1058 3340
2 0 3068 3742 3047 3076 3065 3083 3364
3 0 6655 3020 3191 3100 2424 3165 3363
4 0 1055 6671 3508 3111 1037 1043 3363
5 2 6664 2055 1057 3047 3066 3075 3364
6 2 3853 6655 3020 3916 1028 1026 3364
7 2 1054 3115 3006 4633 3033 0 3340
8 2 6609 3091 6672 3047 3153 3133 3340
9 2 6672 1038 3085 1055 3123 3006 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 2 4 2 2
1 4 14 4 1
2 3 18 9 2
3 1 6 6 1
4 0 1 0 1
5 1 4 3 1
6 0 1 0 1
7 0 2 0 1
8 3 12 5 2
9 1 6 3 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 638 28685 3305
1 445 54970 21816
2 962 122201 17729
3 889 109200 15708
4 761 1953 523
5 467 67526 10728
6 630 46512 12943
7 647 108089 8573
8 477 9629 4393
9 496 450 77
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 5012 21 0
1 10847 0 0
2 10799 172 0
3 7554 8 0
4 5204 12 0
5 21611 107 0
6 8886 0 0
7 5974 13 0
8 13452 12 0
9 11386 16 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 154018
1 0 2 3692
2 0 3 80448
3 0 4 13220
4 0 5 99635
5 0 6 19030
6 0 7 2413
7 0 8 39628
8 0 9 125042
9 0 10 102958
physicalDamageDealtToChampions physicalDamageTaken role \
0 10556 14567 SOLO
1 1934 7947 SUPPORT
2 13877 28288 NONE
3 1030 5613 CARRY
4 9863 11823 SOLO
5 1410 18417 NONE
6 572 3990 SUPPORT
7 2486 10455 SOLO
8 25080 19508 SOLO
9 9985 8101 CARRY
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 4 12 487
1 7 14 5 4 199
2 4 4 18 11 207
3 6 14 5 4 125
4 4 14 3 4 295
5 4 4 15 11 166
6 5 4 3 14 125
7 2 4 2 12 321
8 5 4 8 14 248
9 4 4 5 7 165
summonerName teamEarlySurrendered teamId teamPosition \
0 Ilpyeon Danshim False 100 TOP
1 804 False 100 UTILITY
2 DaKangster False 100 JUNGLE
3 Mr Guccerberg False 100 BOTTOM
4 crºw False 100 MIDDLE
5 Google Maps False 200 JUNGLE
6 Alece False 200 UTILITY
7 Rotome False 200 MIDDLE
8 StalwartHide False 200 TOP
9 Coolgum15 False 200 BOTTOM
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 15 1828 189764 15397
1 46 1828 60903 25217
2 14 1828 210629 33728
3 20 1828 129307 17207
4 0 1828 102166 10782
5 44 1828 136947 12760
6 56 1828 49437 14027
7 6 1828 152131 11928
8 18 1828 153672 34852
9 7 1828 108884 11081
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 21382 6387 211 118
1 19431 2672 38 126
2 43420 28252 35 342
3 13647 2275 132 304
4 18172 3727 178 13
5 41497 18077 44 432
6 13490 728 36 270
7 16808 6394 242 320
8 35708 11672 175 96
9 20267 4015 145 32
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 172 1 7061
1 174 1 2240
2 134 1 7977
3 109 1 6886
4 235 1 578
5 312 5 50390
6 158 1 512
7 105 5 4413
8 336 1 19000
9 186 2 5475
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1536 1802 2 2
1 1466 637 3 2
2 2121 4333 2 2
3 468 479 4 2
4 396 1143 0 2
5 620 1469 0 11
6 512 613 0 11
7 868 378 0 11
8 5377 2747 1 11
9 1018 779 0 11
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 10 0 0 6 True
1 34 0 0 22 True
2 22 3 1 4 True
3 14 0 0 10 True
4 25 2 0 10 True
5 13 1 4 1 False
6 29 0 0 17 False
7 15 0 4 5 False
8 18 4 0 9 False
9 21 1 3 8 False ,
assists baronKills bountyLevel champLevel championName \
0 16 0 0 18 Shen
1 13 0 0 17 XinZhao
2 15 0 0 18 Brand
3 14 0 0 17 Pyke
4 6 2 5 18 Ashe
5 17 0 0 18 Veigar
6 10 0 0 18 Rengar
7 10 0 0 17 Yasuo
8 17 0 0 16 Jhin
9 24 0 0 16 Seraphine
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 65 1360 65
1 256 34536 256
2 2090 22951 2090
3 774 1672 774
4 11645 42481 11645
5 3049 7429 3049
6 4682 22431 4682
7 3384 3581 3384
8 1762 4720 1762
9 2431 6048 2431
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 9 1 0 False False
1 13 0 1 False False
2 9 0 2 False False
3 13 1 0 False False
4 8 1 1 False False
5 8 0 2 False False
6 7 0 0 False False
7 14 0 0 False False
8 6 0 0 False True
9 10 2 0 True False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 True False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 14671 TOP 1
1 False 12007 JUNGLE 1
2 False 15397 MIDDLE 0
3 False 15291 UTILITY 1
4 False 23411 BOTTOM 0
5 False 15990 TOP 1
6 False 18591 JUNGLE 0
7 False 16723 MIDDLE 0
8 False 11799 BOTTOM 0
9 False 12233 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 3075 3068 3047 3748 0 3143 3364
1 1 6692 3053 3047 3153 0 0 3340
2 1 3116 3157 6653 3020 4637 1058 3340
3 1 3179 3857 3142 6691 3814 3117 3364
4 1 6671 3085 3031 6676 3072 3006 3340
5 3 4401 6664 3158 3110 3070 3135 3340
6 3 6691 3508 6676 3814 3033 3158 3340
7 3 3091 3006 6673 3031 3072 1031 3340
8 3 6671 1018 3009 6676 3094 3123 3363
9 3 3853 3009 6617 6616 3116 3011 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 7 2 2
1 1 3 3 1
2 1 8 6 3
3 2 6 2 1
4 5 21 6 3
5 2 11 4 1
6 3 18 8 2
7 1 10 4 2
8 1 5 3 1
9 1 6 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 532 48027 8146
1 728 15453 921
2 730 175728 33062
3 582 0 0
4 954 5869 5269
5 673 151289 32626
6 1119 17990 1800
7 438 18389 1787
8 982 9073 1749
9 465 50323 15860
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 16793 12 0
1 10031 103 0
2 9388 20 0
3 11600 0 0
4 8616 45 0
5 11944 33 0
6 10779 118 0
7 14340 16 0
8 7163 4 0
9 5020 8 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 75505
1 0 2 119607
2 0 3 7621
3 0 4 27369
4 0 5 311350
5 0 6 17172
6 0 7 229079
7 0 8 213117
8 0 9 99892
9 0 10 4236
physicalDamageDealtToChampions physicalDamageTaken role \
0 10037 18977 SOLO
1 14460 37941 NONE
2 639 18739 SOLO
3 9700 18071 SUPPORT
4 49013 27112 CARRY
5 2080 17625 SOLO
6 40301 30804 NONE
7 24731 22650 SOLO
8 8352 16693 CARRY
9 1113 21669 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 7 4 7 14 125
1 14 11 2 4 43
2 3 14 6 4 67
3 7 14 5 4 79
4 7 4 7 7 23
5 6 4 3 12 321
6 6 4 22 11 165
7 4 14 6 4 164
8 4 7 4 4 59
9 7 14 5 4 156
summonerName teamEarlySurrendered teamId teamPosition \
0 LWZNE False 100 TOP
1 Dedolous False 100 JUNGLE
2 Solar02 False 100 MIDDLE
3 HerbsandSpiced False 100 UTILITY
4 i cant nut 1994 False 100 BOTTOM
5 Rotome False 200 TOP
6 Coolgum15 False 200 JUNGLE
7 HollowGunMaster False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 AlexAve False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 38 2545 135856 19951
1 15 2545 149339 15478
2 23 2545 183845 34054
3 18 2545 35241 12186
4 80 2545 326164 56288
5 82 2545 169961 35631
6 12 2545 263138 43435
7 26 2545 261736 27401
8 34 2545 109592 10354
9 45 2545 56109 18158
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 37320 4291 161 214
1 48548 21105 24 395
2 29140 6692 154 54
3 31399 4383 46 107
4 36441 11523 258 1234
5 31199 566 173 1198
6 42566 18182 104 225
7 38476 4755 230 147
8 24827 7613 120 146
9 28327 11509 30 312
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 338 1 12323
1 336 1 14278
2 351 1 496
3 428 1 7872
4 333 3 8945
5 315 1 1499
6 270 1 16069
7 540 1 30230
8 130 4 626
9 326 5 1550
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1766 1548 0 6
1 96 575 1 6
2 352 1012 1 6
3 2485 1727 0 6
4 2005 712 4 6
5 925 1628 2 8
6 1334 982 2 8
7 882 1485 0 8
8 252 970 1 8
9 1184 1637 0 8
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 27 1 1 15 True
1 24 0 0 12 True
2 8 0 0 5 True
3 91 1 13 31 True
4 30 1 1 14 True
5 22 1 0 12 False
6 19 0 1 10 False
7 15 0 2 11 False
8 13 0 1 6 False
9 40 2 3 17 False ,
assists baronKills bountyLevel champLevel championName \
0 10 0 1 14 Chogath
1 11 0 0 13 DrMundo
2 6 0 0 13 Zed
3 12 0 1 12 Senna
4 13 0 0 12 Galio
5 2 0 0 14 Garen
6 4 0 0 12 FiddleSticks
7 5 0 0 13 Pantheon
8 2 0 0 10 Jhin
9 2 0 1 10 Zyra
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 1395 5902 1395
1 185 15028 185
2 1755 2971 1755
3 2789 5170 2789
4 1532 2659 1532
5 7871 10245 7871
6 0 7145 0
7 493 493 493
8 0 1187 0
9 0 717 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 3 0 0 False False
1 6 1 1 False False
2 5 2 0 False False
3 2 0 1 False False
4 1 3 0 False False
5 3 0 0 False True
6 8 0 1 False False
7 7 0 0 False False
8 6 0 0 False False
9 6 3 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 9425 TOP 0
1 True 8535 JUNGLE 0
2 True 10427 MIDDLE 0
3 True 9508 UTILITY 0
4 True 8428 BOTTOM 0
5 True 12385 TOP 0
6 True 7949 JUNGLE 0
7 True 8638 MIDDLE 0
8 True 5610 BOTTOM 0
9 True 6472 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3047 3076 1054 3068 3110 0 3340
1 0 3047 2031 6664 3075 3211 1029 3364
2 0 3071 3047 3035 1036 1029 6691 3340
3 0 6672 3864 3006 3124 3035 0 3340
4 0 3157 2065 3047 2031 1056 0 3340
5 0 1028 6631 3006 3742 3053 1057 3340
6 0 3020 2031 3157 6653 0 0 3330
7 0 6692 2033 3071 2055 3047 0 3340
8 0 6671 1055 3009 1036 1036 0 3340
9 0 3853 3020 6653 3191 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 4 3 1
1 1 2 2 1
2 2 11 6 2
3 2 7 4 2
4 1 6 6 1
5 2 8 5 2
6 0 2 0 1
7 0 4 0 1
8 0 0 0 0
9 0 3 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 909 64111 10123
1 526 68382 4392
2 460 3913 1033
3 740 257 257
4 1465 47544 9574
5 1235 1579 328
6 577 103511 9514
7 326 3886 560
8 636 2295 189
9 521 16559 8808
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 5989 16 0
1 7819 133 0
2 2499 0 0
3 2709 8 0
4 2251 0 0
5 8677 2 0
6 6862 128 0
7 3643 0 0
8 4730 0 0
9 3584 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 26073
1 0 2 44914
2 0 3 78063
3 0 4 47659
4 0 5 4186
5 0 6 109391
6 0 7 6752
7 0 8 83528
8 0 9 47309
9 0 10 1530
physicalDamageDealtToChampions physicalDamageTaken role \
0 3273 16389 SOLO
1 4655 16266 NONE
2 14925 10958 SOLO
3 10477 4795 SUPPORT
4 478 8764 CARRY
5 13685 9746 SOLO
6 29 17141 NONE
7 13915 12439 SOLO
8 4483 6136 CARRY
9 490 5991 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 4 3 12 124
1 2 4 12 11 74
2 6 14 2 4 376
3 3 4 5 7 170
4 3 4 4 14 265
5 3 4 4 14 165
6 12 11 4 4 133
7 2 4 6 14 321
8 3 7 2 4 59
9 2 14 3 4 156
summonerName teamEarlySurrendered teamId teamPosition \
0 AsSaSsIn01 False 100 TOP
1 rinnenine False 100 JUNGLE
2 SørryMaker False 100 MIDDLE
3 ImDahCaptainNow False 100 UTILITY
4 Yabguy False 100 BOTTOM
5 Coolgum15 False 200 TOP
6 SlothoftheAbyss False 200 JUNGLE
7 Rotome False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 AlexAve False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 57 1520 104077 14975
1 7 1520 122567 9739
2 7 1520 85285 16721
3 19 1520 61070 11916
4 29 1520 56067 10514
5 29 1520 114096 16910
6 19 1520 118494 9997
7 16 1520 91569 15626
8 14 1520 52444 4673
9 35 1520 18469 9679
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 24020 7353 128 780
1 25299 14342 8 258
2 15313 1202 143 119
3 7675 9014 46 86
4 11015 878 90 59
5 19543 2028 181 104
6 25208 11785 15 628
7 16857 2349 140 23
8 12018 1902 88 75
9 10003 853 14 99
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 68 1 13892
1 91 1 9270
2 167 1 3308
3 61 5 13153
4 37 1 4337
5 130 1 3125
6 194 1 8229
7 230 1 4155
8 119 2 2840
9 136 1 380
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1579 1641 0 3
1 692 1213 0 3
2 762 1855 1 3
3 1182 170 1 3
4 462 0 1 3
5 2897 1118 3 3
6 453 1204 0 3
7 1150 774 0 3
8 0 1152 0 3
9 380 428 0 3
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 8 0 0 5 True
1 19 1 3 2 True
2 22 2 2 10 True
3 26 0 0 13 True
4 24 3 1 8 True
5 10 0 0 7 False
6 13 0 0 0 False
7 11 1 1 6 False
8 5 0 0 4 False
9 36 4 2 14 False ,
assists baronKills bountyLevel champLevel championName \
0 4 0 0 14 Ornn
1 2 0 0 12 Udyr
2 5 0 0 12 Elise
3 1 0 0 12 Samira
4 7 0 0 11 Leona
5 7 0 1 14 Quinn
6 11 0 3 13 FiddleSticks
7 6 0 4 14 Pantheon
8 10 0 12 14 Tristana
9 13 0 0 12 Brand
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2352 2482 2352
1 376 1079 376
2 2169 2169 2169
3 1290 4760 1290
4 0 0 0
5 4325 6939 4325
6 120 18231 120
7 1008 5922 1008
8 6276 18111 6276
9 1288 5067 1288
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 2 2 0 False False
1 6 1 0 False True
2 7 1 0 False False
3 9 2 0 False False
4 6 2 0 False False
5 6 0 0 False False
6 2 0 2 False False
7 2 1 0 False False
8 0 2 2 False False
9 4 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False True False
9 True False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 8676 TOP 0
1 True 9609 JUNGLE 0
2 True 7354 MIDDLE 0
3 True 9107 BOTTOM 0
4 True 6325 UTILITY 0
5 True 8905 TOP 0
6 True 9499 JUNGLE 0
7 True 10567 MIDDLE 1
8 True 13500 BOTTOM 0
9 True 7345 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 1054 7004 3075 3047 1029 1029 3340
1 1 4637 6656 1043 3158 1052 0 3340
2 1 0 1082 6656 3020 3108 0 3363
3 1 1055 7008 3006 6676 0 0 3340
4 1 3860 3190 2031 3801 3047 3067 3364
5 0 1055 3153 6672 1001 1042 0 3340
6 0 6653 3157 3020 2031 0 0 3330
7 0 6692 2033 3111 3133 3067 1036 3363
8 0 1055 6672 3006 3095 3036 0 3363
9 0 3853 3020 6653 2055 1026 1011 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 1 0 1
1 1 5 2 1
2 0 1 0 1
3 0 5 0 1
4 0 2 0 1
5 1 4 2 1
6 1 3 3 2
7 2 8 4 2
8 1 12 12 3
9 1 3 3 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 884 34376 2996
1 456 82371 5472
2 419 44886 4518
3 460 12269 2176
4 466 12371 3067
5 422 0 0
6 599 120931 6385
7 358 2085 263
8 0 26384 2041
9 929 33234 15560
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 4866 0 0
1 5580 120 0
2 3313 0 0
3 5364 8 0
4 6350 0 0
5 6230 4 0
6 4610 146 0
7 3195 16 0
8 3356 12 0
9 3691 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 44012
1 0 2 33418
2 0 3 12958
3 0 4 77359
4 0 5 6172
5 0 6 85973
6 0 7 8252
7 0 8 103746
8 0 9 107625
9 0 10 1057
physicalDamageDealtToChampions physicalDamageTaken role \
0 2121 7794 SOLO
1 2675 15791 NONE
2 643 11594 SOLO
3 7332 13302 CARRY
4 2110 8880 SUPPORT
5 10062 5906 SOLO
6 0 17491 NONE
7 13605 7643 SOLO
8 18044 5681 CARRY
9 333 4676 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 12 1 4 95
1 13 11 4 4 376
2 3 14 5 4 420
3 4 7 2 4 258
4 5 14 2 4 44
5 3 4 3 14 165
6 13 11 4 4 133
7 3 4 3 14 321
8 1 4 4 7 330
9 4 14 3 4 156
summonerName teamEarlySurrendered teamId teamPosition \
0 TheSmellyPickle1 False 100 TOP
1 Silly Fish False 100 JUNGLE
2 raggedyandroid False 100 MIDDLE
3 MormonCESLetter False 100 BOTTOM
4 South of Heaven False 100 UTILITY
5 Coolgum15 False 200 TOP
6 SlothoftheAbyss False 200 JUNGLE
7 Rotome False 200 MIDDLE
8 UnspokenDG False 200 BOTTOM
9 AlexAve False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 18 1551 83878 5117
1 21 1551 120270 8867
2 16 1551 58377 5694
3 0 1551 97611 9509
4 31 1551 25365 5707
5 18 1551 98228 10707
6 17 1551 139451 6665
7 20 1551 109476 14367
8 6 1551 144447 22461
9 16 1551 34817 16419
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 13692 1243 193 327
1 22126 8819 38 194
2 15470 1508 115 31
3 19842 3694 174 1
4 16032 409 47 65
5 12708 2459 145 78
6 22242 15653 17 539
7 11116 2962 137 51
8 9477 6380 202 86
9 8721 981 12 30
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 30 1 5490
1 141 1 4481
2 165 1 532
3 223 3 7983
4 140 3 6822
5 201 1 12254
6 37 1 10267
7 39 1 3644
8 0 3 10436
9 42 1 525
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 1030 0 5
1 719 754 1 5
2 532 562 1 5
3 0 1175 0 5
4 530 800 0 5
5 644 571 0 2
6 279 140 0 2
7 498 277 3 2
8 2375 439 1 2
9 525 353 0 2
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 6 2 2 5 False
1 19 1 2 9 False
2 14 1 1 8 False
3 15 2 4 9 False
4 55 2 7 22 False
5 15 0 2 8 True
6 31 0 6 6 True
7 12 1 1 7 True
8 19 2 5 7 True
9 33 2 2 15 True ,
assists baronKills bountyLevel champLevel championName \
0 8 0 0 16 Gnar
1 9 2 4 17 Kayn
2 11 0 0 16 Kaisa
3 7 0 1 14 Samira
4 19 0 1 14 Sona
5 5 0 0 14 Quinn
6 13 0 0 14 Nunu
7 7 0 5 17 Irelia
8 9 0 1 14 Jhin
9 11 0 0 14 Brand
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 8959 22691 8959
1 4873 32533 4873
2 3135 15917 3135
3 2739 9117 2739
4 2314 3456 2314
5 0 0 0
6 0 7018 0
7 1890 4913 1890
8 2170 5355 2170
9 436 2238 436
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 3 1 0 False False
1 5 1 1 False False
2 10 0 1 False True
3 7 0 0 False False
4 8 3 0 False False
5 11 0 0 False False
6 6 0 1 False False
7 7 2 0 False False
8 12 1 1 False False
9 10 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 True False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 11748 TOP 1
1 False 18184 JUNGLE 0
2 False 13593 MIDDLE 1
3 False 11165 BOTTOM 1
4 False 9380 UTILITY 0
5 False 9332 TOP 0
6 False 8729 JUNGLE 0
7 False 15178 MIDDLE 0
8 False 9469 BOTTOM 0
9 False 9408 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1055 3047 3053 3076 6631 1011 3340
1 0 3117 6676 3142 6691 3814 3026 3364
2 0 1055 6672 3006 6676 3085 0 3340
3 0 1055 3072 6673 3006 3134 1018 3340
4 0 3853 3107 6617 3020 3114 3070 3364
5 3 1055 6671 3095 3134 1018 0 3363
6 3 3068 2031 3047 3742 1029 1029 3340
7 3 1055 3153 3078 3047 3053 6333 3340
8 3 1055 6692 3009 6676 0 0 3363
9 3 3853 3020 6653 4637 3916 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 3 2 1
1 4 22 9 2
2 4 11 3 2
3 2 7 3 2
4 0 3 0 1
5 2 6 2 2
6 0 2 0 1
7 2 12 5 4
8 1 4 2 1
9 2 8 3 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 1032 14108 1512
1 515 8874 3963
2 380 9716 3590
3 362 9848 3020
4 297 20519 7504
5 464 2762 1489
6 511 37931 6071
7 590 28799 6232
8 256 2395 411
9 448 52424 23905
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 6844 4 0
1 9498 121 0
2 7281 20 0
3 8893 18 0
4 8283 0 0
5 2347 4 0
6 4154 97 0
7 5768 8 0
8 4343 8 0
9 4520 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 114781
1 0 2 163068
2 0 3 121813
3 0 4 79221
4 0 5 4548
5 0 6 79088
6 0 7 21841
7 0 8 135428
8 0 9 89781
9 0 10 1868
physicalDamageDealtToChampions physicalDamageTaken role \
0 10826 12883 SOLO
1 30121 15686 NONE
2 18373 14502 SOLO
3 11580 13252 CARRY
4 953 6663 SUPPORT
5 12103 19213 SOLO
6 836 22454 NONE
7 12003 21536 SOLO
8 10951 15804 CARRY
9 990 15835 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 12 4 4 121
1 5 4 14 11 164
2 3 4 5 14 62
3 3 7 3 4 173
4 4 4 5 14 65
5 4 4 5 14 165
6 9 11 4 4 133
7 3 12 4 4 71
8 4 4 5 7 321
9 5 14 2 4 156
summonerName teamEarlySurrendered teamId teamPosition \
0 emangos False 100 TOP
1 Miracle404 False 100 JUNGLE
2 tsundere bastard False 100 MIDDLE
3 tosani0526 False 100 BOTTOM
4 7H Sae False 100 UTILITY
5 Coolgum15 False 200 TOP
6 SlothoftheAbyss False 200 JUNGLE
7 Astraea001F False 200 MIDDLE
8 Rotome False 200 BOTTOM
9 AlexAve False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 25 1747 135663 12602
1 9 1747 180794 35157
2 3 1747 140623 25745
3 2 1747 90018 15185
4 17 1747 25787 9177
5 27 1747 83267 14741
6 25 1747 108516 7096
7 17 1747 169385 18328
8 18 1747 97977 11363
9 18 1747 54980 25584
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 20014 4421 159 358
1 28894 12627 50 223
2 24311 5364 147 23
3 22458 3993 124 27
4 15226 10757 22 24
5 22439 3787 124 142
6 27608 12814 25 318
7 30093 7833 232 198
8 21498 4416 134 68
9 20791 2935 28 27
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 130 1 6773
1 143 1 8851
2 288 1 9092
3 197 2 948
4 177 8 720
5 352 1 1416
6 192 1 48744
7 218 1 5158
8 277 2 5800
9 288 1 688
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 263 286 4 1
1 1071 3710 2 1
2 3782 2528 1 1
3 584 312 2 1
4 720 280 1 1
5 1148 878 0 10
6 188 999 0 10
7 92 2788 0 10
8 0 1350 1 10
9 688 436 0 10
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 16 1 1 9 True
1 19 1 4 3 True
2 10 0 2 4 True
3 16 0 1 8 True
4 49 3 6 19 True
5 11 0 1 8 False
6 8 0 0 4 False
7 21 2 1 12 False
8 12 2 3 4 False
9 37 2 0 21 False ,
assists baronKills bountyLevel champLevel championName \
0 1 0 2 13 Aatrox
1 5 0 0 12 Zac
2 0 0 4 13 Viktor
3 3 0 0 11 Lucian
4 3 0 1 9 Ahri
5 0 0 0 13 Nasus
6 3 0 0 11 Taliyah
7 1 0 1 12 Xerath
8 3 0 0 10 MissFortune
9 3 0 0 9 Seraphine
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2512 3730 2512
1 626 13574 626
2 327 327 327
3 1991 5145 1991
4 158 1076 158
5 932 932 932
6 0 7588 0
7 0 1252 0
8 878 878 878
9 473 662 473
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 2 1 0 False False
1 1 2 0 False False
2 0 1 0 False False
3 3 0 0 False False
4 3 3 0 False False
5 3 0 0 False True
6 2 0 1 False False
7 3 1 0 False False
8 4 0 0 False False
9 4 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 6613 TOP 0
1 True 7304 JUNGLE 0
2 True 7003 MIDDLE 0
3 True 7773 BOTTOM 0
4 True 5436 UTILITY 0
5 True 5989 TOP 0
6 True 6006 JUNGLE 0
7 True 6749 MIDDLE 0
8 True 6156 BOTTOM 0
9 True 4354 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1055 0 3111 6631 0 0 3364
1 0 3076 1033 1011 3111 3068 0 3364
2 0 1082 3111 2033 6632 0 0 3340
3 0 6671 1018 0 3057 3133 3006 3340
4 0 3853 6656 0 2055 3158 0 3364
5 0 1054 6632 0 3076 2422 0 3340
6 0 6655 2031 3020 1029 1052 0 3340
7 0 1056 6655 3020 2420 0 0 3363
8 0 1055 6672 3006 0 0 0 3340
9 0 3853 3020 3802 2055 3108 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 2 2 1
1 1 3 3 1
2 1 4 4 2
3 2 5 3 1
4 0 2 0 1
5 1 2 2 1
6 0 1 0 1
7 1 5 2 1
8 0 1 0 1
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 383 0 0
1 1186 70189 3744
2 0 34603 5517
3 671 1211 553
4 530 10083 4932
5 577 18912 2677
6 635 77363 4926
7 563 36331 9468
8 518 1811 451
9 664 12953 3876
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 3104 0 0
1 4901 112 0
2 6920 0 0
3 4261 0 0
4 4657 0 0
5 920 0 0
6 4757 112 0
7 5220 0 0
8 3065 0 0
9 2996 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 71708
1 0 2 19999
2 0 3 19880
3 0 4 65429
4 0 5 1872
5 0 6 54910
6 0 7 7675
7 0 8 8496
8 0 9 42135
9 0 10 1366
physicalDamageDealtToChampions physicalDamageTaken role \
0 12579 8918 NONE
1 276 14062 NONE
2 1550 1547 SOLO
3 8762 5414 CARRY
4 466 5798 SUPPORT
5 6597 17133 SOLO
6 43 10958 NONE
7 96 2677 SOLO
8 5830 6137 CARRY
9 674 2534 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 2 12 209
1 11 11 2 14 92
2 1 14 1 4 157
3 2 4 3 7 107
4 4 4 5 14 363
5 3 4 5 12 164
6 12 11 2 4 133
7 2 4 2 21 150
8 2 4 4 7 134
9 1 14 2 4 156
summonerName teamEarlySurrendered teamId teamPosition \
0 xDarkRavenx False 100 TOP
1 XAlexKill14X False 100 JUNGLE
2 Garrett Slayer False 100 MIDDLE
3 Widatree False 100 BOTTOM
4 smorgs False 100 UTILITY
5 Coolgum15 False 200 TOP
6 SlothoftheAbyss False 200 JUNGLE
7 R 4 M O S False 200 MIDDLE
8 WXY03 False 200 BOTTOM
9 AlexAve False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 26 1229 71708 12579
1 16 1229 101020 5052
2 4 1229 58104 7168
3 0 1229 66640 9316
4 23 1229 17530 7652
5 8 1229 74072 9524
6 6 1229 94254 4989
7 16 1229 44827 9565
8 3 1229 48894 6972
9 13 1229 14822 5053
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 12293 5236 114 139
1 20226 24307 17 413
2 8467 384 111 28
3 9676 3455 133 0
4 10554 1061 3 47
5 18403 448 113 58
6 15797 8318 11 332
7 8547 303 88 101
8 10635 2214 118 61
9 6235 8 14 41
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 43 1 0
1 39 3 10831
2 0 1 3620
3 60 2 0
4 58 1 5573
5 93 1 250
6 52 1 9216
7 95 1 0
8 79 2 4947
9 74 1 502
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 270 0 0
1 1031 1262 0 0
2 100 0 1 0
3 0 0 1 0
4 2253 98 0 0
5 250 350 0 2
6 20 81 0 2
7 0 648 0 2
8 690 1433 0 2
9 502 704 0 2
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 10 1 0 4 True
1 16 2 0 3 True
2 10 1 0 6 True
3 9 0 2 4 True
4 36 5 0 19 True
5 5 0 0 4 False
6 9 0 2 3 False
7 9 1 0 7 False
8 8 0 0 5 False
9 23 1 0 10 False ,
assists baronKills bountyLevel champLevel championName \
0 3 0 0 14 Teemo
1 1 0 0 14 MasterYi
2 4 0 0 15 Gragas
3 1 0 0 13 Jhin
4 2 0 0 12 Pyke
5 4 0 4 18 Vayne
6 4 0 0 12 Camille
7 2 0 1 15 Katarina
8 7 0 3 15 Kaisa
9 7 0 0 14 Zoe
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 1826 1826 1826
1 788 14286 788
2 482 810 482
3 0 0 0
4 0 1827 0
5 5527 8717 5527
6 1108 11672 1108
7 2720 2888 2720
8 8747 16433 8747
9 1943 2836 1943
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 3 0 False False
1 5 0 2 False False
2 5 3 0 False False
3 5 2 0 False False
4 8 3 0 False False
5 5 0 0 False False
6 6 0 0 False False
7 4 0 0 False False
8 3 1 1 False False
9 3 2 1 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False True False
9 True False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 9647 TOP 0
1 False 9657 JUNGLE 0
2 False 11168 MIDDLE 0
3 False 9407 BOTTOM 0
4 False 7564 UTILITY 0
5 False 14535 TOP 0
6 False 7528 JUNGLE 0
7 False 10394 MIDDLE 0
8 False 14034 BOTTOM 2
9 False 9475 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 2 1056 6653 3115 3020 0 0 3340
1 2 6691 2031 3006 6676 1043 1036 3340
2 2 3070 3157 4636 4628 2055 3020 3340
3 2 3009 6671 6676 1031 1055 2055 3340
4 2 3857 6691 3117 1037 3134 1036 3364
5 0 3153 3006 2421 1033 3124 6673 3340
6 0 3078 1053 2031 3158 3133 0 3364
7 0 4636 3115 1055 3020 3113 3057 3340
8 0 1055 3046 3006 6676 6672 1043 3340
9 0 3853 6655 3020 4628 3057 0 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 1 2 2 1
1 2 5 2 2
2 1 6 3 1
3 1 3 2 2
4 0 2 0 1
5 2 10 4 2
6 0 0 0 0
7 2 6 3 2
8 2 8 4 2
9 1 6 5 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 732 76142 15039
1 673 5615 0
2 1070 73631 13613
3 526 4455 172
4 532 0 0
5 438 166 166
6 498 10712 13
7 754 83481 9501
8 721 9006 2858
9 810 33660 13453
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 2615 8 0
1 5725 144 0
2 8874 0 0
3 4519 0 0
4 6871 0 0
5 11620 30 0
6 8346 116 0
7 7134 12 0
8 2526 14 0
9 4573 5 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 31294
1 0 2 132341
2 0 3 18963
3 0 4 87602
4 0 5 22774
5 0 6 150946
6 0 7 79430
7 0 8 9561
8 0 9 141047
9 0 10 6535
physicalDamageDealtToChampions physicalDamageTaken role \
0 2350 13186 SOLO
1 7439 17408 NONE
2 841 9078 SOLO
3 6387 4363 CARRY
4 1862 6869 SUPPORT
5 15862 10448 SOLO
6 1337 23916 NONE
7 345 4521 SOLO
8 9644 8172 SOLO
9 1488 7602 NONE
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 6 14 320
1 4 4 18 11 164
2 4 4 5 14 98
3 3 7 3 4 155
4 1 14 2 4 57
5 5 4 2 12 283
6 14 11 1 4 96
7 2 4 0 14 236
8 3 4 2 7 73
9 4 14 3 4 59
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 Rotome False 100 TOP 37
1 Coolgum15 False 100 JUNGLE 3
2 rodaparks False 100 MIDDLE 23
3 AlexAve False 100 BOTTOM 11
4 Dublaiar False 100 UTILITY 2
5 your toilet123 False 200 TOP 10
6 lostpi False 200 JUNGLE 3
7 takayán False 200 MIDDLE 0
8 Filipino Zuko False 200 BOTTOM 0
9 Russttea False 200 UTILITY 30
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1792 115081 18509
1 1792 154647 9414
2 1792 96520 15031
3 1792 92058 6560
4 1792 28649 2412
5 1792 190158 20691
6 1792 113299 2245
7 1792 93042 9847
8 1792 169859 13290
9 1792 54186 17431
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 18376 275 177 362
1 24494 11227 23 147
2 20481 6136 184 201
3 9771 1066 180 89
4 15224 1325 43 77
5 24589 7016 223 77
6 32553 12478 3 266
7 12579 3051 136 0
8 11670 5461 216 23
9 12690 3477 33 95
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 220 1 7645
1 184 1 16690
2 171 1 3926
3 90 2 0
4 199 1 5875
5 147 1 39045
6 137 1 23155
7 120 1 0
8 80 2 19805
9 109 2 13990
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1120 2573 1 9
1 1975 1360 0 9
2 576 2528 0 9
3 0 889 0 9
4 549 1482 0 9
5 4662 2521 2 1
6 894 291 0 1
7 0 924 3 1
8 787 971 4 1
9 2489 514 0 1
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 17 3 0 5 False
1 20 0 1 9 False
2 34 6 1 13 False
3 14 3 1 10 False
4 36 3 4 17 False
5 19 0 3 9 True
6 10 0 0 4 True
7 12 0 0 8 True
8 22 1 4 10 True
9 40 2 5 19 True ,
assists baronKills bountyLevel champLevel championName \
0 1 0 2 11 Volibear
1 5 0 0 9 Amumu
2 1 0 9 11 Brand
3 3 0 7 9 Lucian
4 9 0 0 8 Braum
5 0 0 0 10 Teemo
6 2 0 0 8 Rammus
7 0 0 0 8 Yone
8 0 0 0 7 Karma
9 1 0 0 8 Jhin
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 451 451 451
1 521 6194 521
2 2516 5748 2516
3 5367 6118 5367
4 1304 1304 1304
5 935 935 935
6 0 1349 0
7 0 0 0
8 0 0 0
9 0 0 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 1 0 0 False False
1 1 1 2 False False
2 0 2 0 False False
3 0 2 0 False True
4 1 3 0 True False
5 2 0 0 False False
6 2 0 0 False False
7 7 0 0 False False
8 5 0 0 False False
9 3 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 5118 TOP 0
1 True 4995 JUNGLE 0
2 True 7235 MIDDLE 0
3 True 8309 BOTTOM 0
4 True 4970 UTILITY 0
5 True 5296 TOP 0
6 True 4219 JUNGLE 0
7 True 3469 MIDDLE 0
8 True 3291 UTILITY 0
9 True 3895 BOTTOM 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1054 6662 0 0 0 3111 3340
1 0 0 2031 0 0 1001 3068 3364
2 0 3020 1052 1026 1056 6653 1011 3340
3 0 2031 0 3134 1055 3006 6672 3340
4 0 1028 2031 3855 0 3105 3117 3364
5 0 1056 6653 2055 1001 0 0 3364
6 0 3111 2031 6660 1033 1029 0 3340
7 0 1055 3006 2031 1053 0 0 3340
8 0 3851 4642 3067 1001 2055 0 3364
9 0 6670 1001 1037 1055 0 0 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 1 2 2 1
1 0 1 0 1
2 1 9 9 2
3 1 7 7 1
4 0 0 0 0
5 1 2 2 1
6 0 0 0 0
7 0 0 0 0
8 0 1 0 1
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 216 22897 1476
1 229 38575 1236
2 0 51212 9568
3 0 1680 699
4 129 2113 1705
5 697 29169 6686
6 684 28225 1311
7 267 4460 643
8 378 7501 3443
9 547 2127 0
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 6476 8 0
1 2753 81 0
2 799 2 0
3 1509 4 0
4 1740 0 0
5 1413 0 0
6 2273 60 0
7 8164 0 0
8 3166 0 0
9 620 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 18918
1 0 2 11119
2 0 3 8698
3 0 4 66081
4 0 5 5237
5 0 6 16780
6 0 7 13081
7 0 8 17168
8 0 9 1191
9 0 10 25892
physicalDamageDealtToChampions physicalDamageTaken role \
0 2386 2872 SUPPORT
1 218 8916 SUPPORT
2 542 2465 SUPPORT
3 7584 2989 DUO
4 587 3568 SUPPORT
5 2100 3727 DUO
6 244 7952 SUPPORT
7 1254 2157 SUPPORT
8 403 3939 SUPPORT
9 2766 3384 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 2 12 64
1 10 11 2 4 246
2 2 14 1 4 244
3 2 7 2 4 134
4 2 3 1 4 181
5 3 4 3 14 320
6 2 4 9 11 164
7 1 12 2 4 33
8 1 14 2 4 57
9 3 7 2 4 155
summonerName teamEarlySurrendered teamId teamPosition \
0 ObsidianSK False 100 TOP
1 Codon False 100 JUNGLE
2 YeetyMcHamSauce False 100 MIDDLE
3 CookiesandChris False 100 BOTTOM
4 Skrrt and Ernie False 100 UTILITY
5 Rotome False 200 TOP
6 Coolgum15 False 200 JUNGLE
7 big cloud False 200 MIDDLE
8 Dublaiar False 200 UTILITY
9 AlexAve False 200 BOTTOM
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 6 964 46375 3862
1 7 964 57063 1951
2 13 964 60871 10613
3 0 964 75232 9040
4 9 964 11761 2293
5 13 964 53402 9279
6 5 964 46191 1597
7 3 964 30878 2192
8 8 964 8763 3917
9 2 964 28019 2766
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 9883 940 87 224
1 11747 5176 6 143
2 3457 38 103 23
3 4498 1835 139 0
4 5402 170 25 45
5 5179 252 122 137
6 10846 3878 7 118
7 10940 338 59 27
8 7275 0 5 89
9 4313 493 78 39
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 10 1 4560
1 10 1 7367
2 0 1 959
3 0 2 7470
4 6 2 4410
5 12 1 7452
6 37 3 4884
7 157 1 9249
8 67 0 70
9 54 2 0
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 534 0 0
1 495 77 0 0
2 501 193 1 0
3 756 0 2 0
4 0 94 0 0
5 492 39 0 3
6 42 620 0 3
7 294 618 0 3
8 70 168 0 3
9 0 308 0 3
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 8 0 0 4 True
1 12 1 1 5 True
2 9 2 0 4 True
3 9 2 1 6 True
4 25 3 5 10 True
5 7 2 0 4 False
6 6 0 0 4 False
7 1 0 1 0 False
8 6 2 1 5 False
9 7 2 1 5 False ,
assists baronKills bountyLevel champLevel championName \
0 1 0 0 11 Renekton
1 0 0 0 3 Volibear
2 0 0 0 10 Malzahar
3 2 0 0 8 Jhin
4 2 0 0 8 Nautilus
5 1 0 2 10 Pantheon
6 7 0 0 10 Gragas
7 2 0 2 11 Katarina
8 4 0 3 9 Kaisa
9 8 0 0 9 Leona
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 1862 1973 1862
1 0 0 0
2 1030 1030 1030
3 0 0 0
4 0 0 0
5 995 5670 995
6 0 11298 0
7 3266 5533 3266
8 1751 1904 1751
9 558 1931 558
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 4 0 0 False False
1 1 0 0 False False
2 4 0 0 False False
3 3 0 0 False False
4 3 0 0 False False
5 2 0 0 False True
6 0 1 2 False False
7 1 0 0 False False
8 0 0 0 False False
9 1 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False True False
8 True False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 5154 TOP 0
1 True 2762 JUNGLE 0
2 True 6008 MIDDLE 0
3 True 4259 BOTTOM 0
4 True 3312 UTILITY 0
5 True 6197 TOP 0
6 True 4836 JUNGLE 0
7 True 7710 MIDDLE 0
8 True 5690 BOTTOM 0
9 True 4294 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 6692 3047 0 1055 0 0 3340
1 0 1039 2031 0 0 0 0 3364
2 0 6653 3020 1026 0 0 0 3340
3 0 1055 6671 1001 0 0 0 3340
4 0 3859 3047 3067 1029 1033 0 3340
5 0 6692 2033 0 3047 2055 0 3363
6 0 1001 2031 2423 4636 0 0 3364
7 0 1082 2031 3115 3020 4635 0 3340
8 0 6672 1055 3006 1036 1036 0 3340
9 0 3859 3117 3105 1028 1028 2055 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 2 0 1
1 0 0 0 0
2 1 2 2 1
3 0 0 0 0
4 0 0 0 0
5 2 5 2 2
6 0 0 0 0
7 2 6 4 2
8 1 3 3 1
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 456 2333 813
1 249 4256 0
2 254 54625 5194
3 610 237 237
4 502 4720 2267
5 483 440 171
6 0 45618 3239
7 831 65942 5771
8 0 3719 1588
9 950 2486 1134
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 2310 0 0
1 149 20 0
2 3674 8 0
3 2889 0 0
4 2881 0 0
5 1188 12 0
6 3158 84 0
7 4368 4 0
8 667 4 0
9 1123 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 47357
1 0 2 5150
2 0 3 7090
3 0 4 30597
4 0 5 3792
5 0 6 50678
6 0 7 16814
7 0 8 8233
8 0 9 28364
9 0 10 2867
physicalDamageDealtToChampions physicalDamageTaken role \
0 4682 8240 SUPPORT
1 226 2610 SUPPORT
2 136 3039 SUPPORT
3 3791 1792 SUPPORT
4 766 2247 SUPPORT
5 6890 7328 SUPPORT
6 543 10363 SUPPORT
7 677 3782 SUPPORT
8 2263 3362 SUPPORT
9 526 3762 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 4 3 14 112
1 2 11 1 4 179
2 2 12 2 4 415
3 2 4 2 7 113
4 2 14 2 4 206
5 3 4 2 14 319
6 10 11 2 4 95
7 2 4 3 14 164
8 2 7 1 4 57
9 3 14 1 4 155
summonerName teamEarlySurrendered teamId teamPosition \
0 DrW33b False 100 TOP
1 Hi Im Volidyr False 100 JUNGLE
2 Not Scuttle False 100 MIDDLE
3 FlameHunter1414 False 100 BOTTOM
4 ParanoiaSB False 100 UTILITY
5 Rotome False 200 TOP
6 Beeeer Belly False 200 JUNGLE
7 Coolgum15 False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 AlexAve False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 8 1004 50074 5879
1 2 1004 10159 250
2 10 1004 63196 5330
3 8 1004 30834 4028
4 22 1004 12188 3280
5 12 1004 56744 7401
6 10 1004 72847 3946
7 0 1004 74552 6825
8 0 1004 32478 3851
9 13 1004 17860 1902
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 11042 1865 98 8
1 2781 1246 0 96
2 7030 0 119 129
3 4925 843 90 17
4 5177 2 20 93
5 8900 1686 85 16
6 13692 9887 12 251
7 8251 1255 119 0
8 4029 1359 78 0
9 4885 201 19 23
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 107 1 384
1 10 1 752
2 95 0 1480
3 64 2 0
4 57 1 3675
5 53 1 5625
6 0 1 10414
7 35 1 376
8 0 3 394
9 27 4 12505
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 384 492 0 1
1 24 22 0 1
2 0 316 0 1
3 0 244 0 1
4 246 48 0 1
5 340 384 0 0
6 164 170 0 0
7 376 100 1 0
8 0 0 0 0
9 242 0 0 0
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 7 0 1 4 False
1 1 1 0 0 False
2 8 0 0 5 False
3 4 0 0 3 False
4 9 0 0 6 False
5 4 1 0 2 True
6 9 1 2 2 True
7 6 0 0 4 True
8 7 0 0 5 True
9 14 2 0 7 True ,
assists baronKills bountyLevel champLevel championName \
0 2 0 0 13 Maokai
1 6 0 0 11 Nunu
2 1 0 0 13 Ziggs
3 5 0 0 12 Lucian
4 3 0 0 9 Thresh
5 5 0 2 14 Pantheon
6 10 0 3 14 Hecarim
7 5 0 3 14 Fizz
8 2 0 0 11 Kaisa
9 7 0 3 11 Brand
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 1514 2322 1514
1 0 2685 0
2 6395 6796 6395
3 1312 2135 1312
4 62 522 62
5 2058 2058 2058
6 1270 14747 1270
7 1809 2079 1809
8 2615 6737 2615
9 1484 4014 1484
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 3 0 False False
1 6 0 0 False False
2 3 0 0 False False
3 4 0 1 False False
4 5 4 0 False False
5 3 1 0 False True
6 2 0 2 False False
7 2 2 0 False False
8 2 0 0 False False
9 4 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False True False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 7331 TOP 0
1 True 6902 JUNGLE 0
2 True 7685 MIDDLE 0
3 True 8238 BOTTOM 0
4 True 5828 UTILITY 0
5 True 9442 TOP 0
6 True 9716 JUNGLE 0
7 True 8478 MIDDLE 0
8 True 8533 BOTTOM 0
9 True 7056 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3047 2033 3068 3082 3024 2055 3340
1 0 3068 2031 3111 3076 1011 0 3340
2 0 3070 6653 3041 3020 1026 0 3340
3 0 1055 6672 3006 3057 1018 3133 3340
4 0 3024 3855 3190 1028 3009 0 3364
5 0 6692 2033 3111 3071 1037 0 3340
6 0 3078 3111 3742 3076 1028 0 3340
7 0 2033 4636 3100 3158 0 0 3340
8 0 6672 1055 3006 6676 1018 0 3363
9 0 3853 3020 6653 1026 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 3 2 1
1 0 1 0 1
2 1 3 2 1
3 1 3 2 1
4 1 3 2 1
5 2 6 2 1
6 1 4 3 1
7 1 3 3 1
8 2 6 3 2
9 1 3 3 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 483 44526 7166
1 431 38375 5258
2 1298 74791 11005
3 581 1072 397
4 586 5880 2855
5 537 823 523
6 719 13512 1784
7 386 40136 6324
8 896 6506 2347
9 250 35403 12286
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 2136 0 0
1 5937 93 0
2 5624 0 0
3 5302 18 0
4 5736 0 0
5 5580 0 0
6 9094 140 0
7 7993 8 0
8 3461 4 0
9 2784 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 14861
1 0 2 18554
2 0 3 8200
3 0 4 75025
4 0 5 5265
5 0 6 81788
6 0 7 127954
7 0 8 23861
8 0 9 62308
9 0 10 1876
physicalDamageDealtToChampions physicalDamageTaken role \
0 1470 11969 SOLO
1 1332 15910 NONE
2 516 3634 SOLO
3 7957 7926 CARRY
4 547 5290 SUPPORT
5 13484 7520 SOLO
6 10586 19113 NONE
7 1677 4585 SOLO
8 4137 4392 CARRY
9 338 3306 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 1 12 103
1 3 4 11 11 119
2 3 4 4 14 65
3 3 7 3 4 30
4 3 4 2 14 138
5 2 4 4 14 319
6 3 4 16 11 164
7 3 14 2 4 210
8 2 7 2 4 57
9 1 14 4 4 155
summonerName teamEarlySurrendered teamId teamPosition \
0 RIP TROGGY False 100 TOP
1 migsmtz123 False 100 JUNGLE
2 KakyoinlikesMoms False 100 MIDDLE
3 Gedaouedetudl False 100 BOTTOM
4 fisch123 False 100 UTILITY
5 Rotome False 200 TOP
6 Coolgum15 False 200 JUNGLE
7 garblewarble45 False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 AlexAve False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 39 1527 63473 8636
1 20 1527 90419 6995
2 13 1527 89208 12559
3 0 1527 86497 8816
4 18 1527 23300 3723
5 16 1527 86115 14671
6 20 1527 148657 13365
7 7 1527 66477 8552
8 2 1527 74129 7234
9 8 1527 41628 12828
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 15062 3522 115 367
1 22946 11195 10 272
2 9433 1196 125 149
3 13751 3387 161 27
4 11435 274 35 53
5 13195 2735 155 25
6 28764 16035 23 196
7 13516 3423 146 96
8 8030 2321 131 32
9 6551 787 36 28
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 112 1 4085
1 115 1 33489
2 79 1 6216
3 123 2 10399
4 139 4 12153
5 83 1 3504
6 54 1 7190
7 44 1 2480
8 27 1 5314
9 52 1 4348
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 956 0 3
1 405 1099 0 3
2 1038 174 1 3
3 461 522 0 3
4 320 408 0 3
5 664 95 1 1
6 994 555 2 1
7 550 937 0 1
8 749 176 0 1
9 204 460 0 1
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 19 4 2 11 False
1 17 0 0 7 False
2 14 0 1 8 False
3 13 0 3 4 False
4 36 4 3 16 False
5 12 2 0 8 True
6 12 0 1 7 True
7 24 2 2 10 True
8 9 0 2 5 True
9 31 2 0 15 True ,
assists baronKills bountyLevel champLevel championName \
0 9 0 0 17 Illaoi
1 8 0 0 16 Kindred
2 13 1 8 17 AurelionSol
3 8 0 0 15 Jhin
4 12 0 0 13 Rell
5 11 0 0 15 Pantheon
6 4 0 0 14 Ekko
7 6 0 0 16 Syndra
8 1 0 0 14 Kaisa
9 11 0 0 14 Leona
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 7177 20419 7177
1 4127 26318 4127
2 3470 9078 3470
3 8331 16878 8331
4 3064 5146 3064
5 2812 9420 2812
6 0 14722 0
7 2769 5157 2769
8 2876 4067 2876
9 722 1276 722
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 0 0 False False
1 9 0 3 False False
2 5 0 0 False False
3 5 2 1 False False
4 6 0 0 False False
5 7 1 0 False False
6 10 1 1 False False
7 9 0 0 False True
8 6 0 0 False False
9 7 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False True False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 12675 TOP 1
1 False 14863 JUNGLE 1
2 False 12831 MIDDLE 1
3 False 14313 BOTTOM 0
4 False 8584 UTILITY 0
5 False 10551 TOP 0
6 False 9633 JUNGLE 0
7 False 14755 MIDDLE 0
8 False 11522 BOTTOM 0
9 False 7533 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3133 6630 3053 3047 3065 1029 3340
1 0 6672 6676 3031 3006 3094 1053 3364
2 0 2033 6656 3020 3116 3165 1052 3340
3 0 6676 6691 3009 3094 3031 0 3363
4 0 4005 3193 3860 1029 3111 1028 3340
5 3 6609 3071 6692 3047 0 0 3340
6 3 3100 3916 3152 3020 1026 0 3340
7 3 2033 3157 3020 6655 3089 3135 3340
8 3 3006 3085 6672 6676 3123 1042 3340
9 3 3860 3047 3068 3109 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 3 2 1
1 3 15 6 2
2 1 9 8 2
3 3 11 5 3
4 0 1 0 1
5 0 4 0 1
6 0 5 0 1
7 5 14 5 1
8 1 6 3 1
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 552 0 0
1 469 27123 3081
2 896 111003 22271
3 1005 12155 1198
4 735 21314 7516
5 417 2969 1380
6 463 94802 10309
7 389 206963 45404
8 741 12688 3210
9 735 24788 4520
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 18278 17 0
1 13873 146 0
2 15269 4 0
3 10960 8 0
4 10109 0 0
5 6434 6 0
6 6701 101 0
7 8348 7 0
8 4361 11 0
9 10191 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 184644
1 0 2 131984
2 0 3 6081
3 0 4 125338
4 0 5 10458
5 0 6 108778
6 0 7 20088
7 0 8 9826
8 0 9 108237
9 0 10 6557
physicalDamageDealtToChampions physicalDamageTaken role \
0 19286 15590 SOLO
1 20135 16851 NONE
2 347 5411 SOLO
3 18427 7845 CARRY
4 1065 11167 SUPPORT
5 15212 18051 SOLO
6 1962 29301 NONE
7 1966 13404 SOLO
8 3716 14948 CARRY
9 1491 11859 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 4 3 12 393
1 5 4 12 11 307
2 2 4 1 14 131
3 6 7 4 4 238
4 5 4 6 14 84
5 3 4 4 14 319
6 18 11 5 4 89
7 4 4 5 14 164
8 2 7 3 4 57
9 6 14 4 4 155
summonerName teamEarlySurrendered teamId teamPosition \
0 supercoolkiddo69 False 100 TOP
1 HunterPwnz False 100 JUNGLE
2 FlamingPoppins False 100 MIDDLE
3 I Gargle Balls False 100 BOTTOM
4 I Gargle BaIIs False 100 UTILITY
5 Rotome False 200 TOP
6 HD4Him False 200 JUNGLE
7 Coolgum15 False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 AlexAve False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 2 1941 199769 19286
1 5 1941 175136 26234
2 27 1941 121944 22618
3 16 1941 140068 20073
4 19 1941 40053 9610
5 22 1941 118688 17299
6 14 1941 127333 13290
7 62 1941 222458 49152
8 0 1941 127434 7380
9 31 1941 36776 6739
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 35584 8639 214 29
1 31307 16284 15 142
2 21810 4858 154 156
3 19307 7427 159 150
4 22033 3760 40 47
5 25318 4348 133 33
6 37405 12582 31 353
7 22321 3529 207 394
8 19997 3469 173 0
9 23051 613 37 68
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 130 1 15125
1 276 9 16028
2 110 1 4860
3 209 4 2574
4 208 5 8280
5 187 1 6941
6 325 1 12443
7 285 1 5668
8 179 1 6508
9 211 4 5430
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 1716 3 3
1 3017 581 2 3
2 0 1130 2 3
3 446 501 4 3
4 1028 756 0 3
5 706 831 1 11
6 1018 1402 0 11
7 1781 569 1 11
8 453 687 1 11
9 728 1001 0 11
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 19 0 0 10 True
1 24 0 5 6 True
2 8 0 0 5 True
3 20 2 0 9 True
4 47 0 2 29 True
5 11 2 0 7 False
6 31 1 2 11 False
7 12 0 0 7 False
8 10 0 0 7 False
9 25 2 0 14 False ,
assists baronKills bountyLevel champLevel championName \
0 1 0 0 11 Fiora
1 4 0 0 10 Nunu
2 5 0 0 11 Leblanc
3 5 0 0 9 Ezreal
4 5 0 0 9 Sett
5 4 0 12 12 Pantheon
6 6 0 1 11 Velkoz
7 7 0 1 11 Evelynn
8 7 0 0 11 Vayne
9 7 0 0 9 Leona
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 450 916 450
1 0 4180 0
2 0 888 0
3 2166 3656 2166
4 2199 3676 2199
5 3942 8275 3942
6 109 3745 109
7 765 9873 765
8 2091 7061 2091
9 144 1946 144
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 2 0 False False
1 4 4 2 False False
2 1 2 0 False False
3 5 0 0 False False
4 3 0 0 False False
5 1 3 0 False True
6 3 0 0 False False
7 2 1 1 False False
8 7 2 0 False False
9 2 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 True False False
6 False False False
7 False True False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 5354 TOP 0
1 True 7115 JUNGLE 0
2 True 5789 MIDDLE 0
3 True 6989 BOTTOM 0
4 True 5329 UTILITY 0
5 True 9958 TOP 0
6 True 5564 MIDDLE 0
7 True 7031 JUNGLE 0
8 True 7481 BOTTOM 0
9 True 5264 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 2031 6631 3047 2055 0 0 3340
1 0 3047 2031 3066 3068 1031 0 3364
2 0 2033 1082 3020 6655 0 0 3364
3 0 3070 2031 6632 1053 1001 1043 3340
4 0 3855 2422 3748 1029 1028 1033 3340
5 0 6692 2033 3053 3047 2055 3077 3363
6 0 2420 1056 1029 6655 2422 1052 3340
7 0 3020 2031 4636 3057 1026 1052 3340
8 0 1055 2003 2055 3086 3006 6672 3340
9 0 3859 1001 3068 2055 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 1 0 1
1 1 5 2 1
2 1 2 2 1
3 1 4 2 1
4 1 2 2 1
5 1 12 12 1
6 0 2 0 1
7 0 1 0 1
8 1 3 3 2
9 0 2 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 183 816 505
1 529 34883 3274
2 1112 19742 4778
3 346 6914 3802
4 998 0 0
5 700 1828 956
6 447 34825 6680
7 249 67709 4858
8 381 866 649
9 736 5503 2754
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 4192 16 0
1 4765 80 1
2 3427 4 0
3 3311 0 0
4 2810 0 0
5 1284 4 0
6 3805 0 0
7 2828 104 0
8 3734 8 0
9 2272 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 33567
1 0 2 14791
2 0 3 13724
3 0 4 42720
4 0 5 25704
5 0 6 80949
6 0 7 9551
7 0 8 11897
8 0 9 56109
9 0 10 4045
physicalDamageDealtToChampions physicalDamageTaken role \
0 3088 8282 SOLO
1 529 14492 NONE
2 624 5367 SOLO
3 9216 8636 CARRY
4 3642 9870 SUPPORT
5 16902 10137 SOLO
6 243 1841 SOLO
7 516 12879 NONE
8 11774 6479 CARRY
9 1503 4923 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 12 3 4 94
1 3 4 10 11 218
2 1 4 3 14 377
3 1 4 3 7 517
4 3 4 4 14 95
5 2 4 5 14 319
6 3 21 2 4 57
7 2 4 14 11 164
8 3 4 3 7 275
9 3 14 2 4 154
summonerName teamEarlySurrendered teamId teamPosition \
0 Rudeboiiii False 100 TOP
1 Tylue False 100 JUNGLE
2 KDA Ashe False 100 MIDDLE
3 LyteSide False 100 BOTTOM
4 Superdeez False 100 UTILITY
5 Rotome False 200 TOP
6 Dublaiar False 200 MIDDLE
7 Coolgum15 False 200 JUNGLE
8 ImmortalPhantom1 False 200 BOTTOM
9 AlexAve False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 6 1236 35335 4544
1 19 1236 70675 3890
2 12 1236 36983 5745
3 0 1236 49634 13019
4 14 1236 33601 6301
5 22 1236 83496 18576
6 12 1236 50357 7606
7 6 1236 88153 5575
8 9 1236 66296 14652
9 28 1236 15084 4676
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 13150 1508 65 74
1 20657 9795 14 331
2 9546 2594 92 16
3 12491 2817 89 0
4 13559 0 37 54
5 12457 4614 114 30
6 5664 9 77 134
7 16518 9204 6 199
8 11311 3228 120 50
9 8272 322 22 38
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 150 1 951
1 94 1 21000
2 36 1 3517
3 112 2 0
4 61 0 7896
5 30 1 718
6 73 1 5980
7 26 1 8546
8 111 2 9320
9 51 3 5534
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 951 675 0 3
1 86 1398 0 3
2 342 751 0 3
3 0 543 1 3
4 2659 878 0 3
5 718 1035 0 1
6 682 18 1 1
7 200 809 1 1
8 2229 1097 1 1
9 418 1076 0 1
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 15 3 1 7 False
1 12 4 1 5 False
2 15 4 2 5 False
3 8 0 0 6 False
4 16 0 2 8 False
5 23 4 4 8 True
6 11 0 1 6 True
7 14 1 1 6 True
8 13 3 2 5 True
9 17 2 1 10 True ,
assists baronKills bountyLevel champLevel championName \
0 0 0 0 11 Pantheon
1 1 0 0 9 Taliyah
2 0 0 0 12 Kassadin
3 0 0 0 9 Jhin
4 0 0 0 9 Pyke
5 3 0 2 13 Nasus
6 5 0 1 11 Nunu
7 3 0 4 12 Leblanc
8 3 0 6 11 Kaisa
9 7 0 2 10 Yuumi
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 0 0 0
1 0 1904 0
2 2887 2887 2887
3 0 0 0
4 0 0 0
5 6135 10836 6135
6 1100 20420 1100
7 2184 4696 2184
8 6832 9762 6832
9 1298 1459 1298
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 4 2 0 False False
1 5 0 0 False False
2 2 0 0 False False
3 3 0 0 False False
4 3 0 0 False False
5 0 0 0 False False
6 1 0 3 False False
7 0 1 0 False False
8 0 2 0 False True
9 0 3 0 True False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False True False
9 True False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 5976 TOP 0
1 True 4995 JUNGLE 0
2 True 5852 MIDDLE 0
3 True 5121 BOTTOM 0
4 True 4548 UTILITY 0
5 True 7243 TOP 1
6 True 7314 JUNGLE 0
7 True 7194 MIDDLE 0
8 True 9300 BOTTOM 0
9 True 6035 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 6692 2033 3111 1028 1036 0 3340
1 1 6655 2031 1001 0 0 0 3340
2 1 2031 6656 3070 1082 1052 0 3363
3 1 3009 1055 6671 1036 0 0 3340
4 1 3857 3117 3134 1036 1036 3123 3340
5 0 1054 6632 1029 2031 3047 0 3340
6 0 1033 2031 3047 6660 0 0 3340
7 0 3111 2033 6655 3108 3067 0 3364
8 0 1055 6672 3006 6676 3086 0 3364
9 0 3853 3504 1004 6617 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 1 0 1
1 0 0 0 0
2 0 0 0 0
3 0 0 0 0
4 0 0 0 0
5 1 2 2 1
6 1 3 2 1
7 1 4 4 1
8 1 6 6 1
9 1 2 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 612 5230 874
1 746 65595 2270
2 561 42361 3831
3 582 442 274
4 795 0 0
5 0 7752 1441
6 609 32274 4236
7 0 32458 7949
8 0 6794 2131
9 0 5721 4033
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 3582 0 0
1 4875 85 0
2 6081 0 0
3 4099 0 0
4 2874 0 0
5 1071 12 0
6 2475 92 0
7 3614 0 0
8 978 11 0
9 308 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 57675
1 0 2 6931
2 0 3 13895
3 0 4 46640
4 0 5 17434
5 0 6 76855
6 0 7 17370
7 0 8 14613
8 0 9 92576
9 0 10 1206
physicalDamageDealtToChampions physicalDamageTaken role \
0 13057 7142 NONE
1 47 13507 NONE
2 400 5469 SOLO
3 3603 4167 CARRY
4 1825 6169 SUPPORT
5 6520 16447 SOLO
6 964 19176 NONE
7 1986 3228 SOLO
8 7202 7499 CARRY
9 755 2309 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 2 14 319
1 12 11 3 4 132
2 2 4 2 12 164
3 3 7 1 4 57
4 3 4 2 14 112
5 6 6 3 4 129
6 11 11 2 4 230
7 2 4 4 14 139
8 3 7 3 4 48
9 5 14 3 3 355
summonerName teamEarlySurrendered teamId teamPosition \
0 Rotome False 100 TOP
1 SlothoftheAbyss False 100 JUNGLE
2 Coolgum15 False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 ItzKool8d False 100 UTILITY
5 damamac False 200 TOP
6 Tokoyamis Shadow False 200 JUNGLE
7 Dekus brokenbody False 200 MIDDLE
8 Carnic False 200 BOTTOM
9 IAphroditeI False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 20 1295 69036 14352
1 6 1295 79300 2399
2 10 1295 60306 4232
3 11 1295 58098 3877
4 8 1295 24265 2063
5 13 1295 89758 7962
6 18 1295 91013 5900
7 13 1295 56738 10744
8 0 1295 104779 9768
9 12 1295 7581 5442
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 11111 2044 121 29
1 18739 7499 1 326
2 12138 868 121 81
3 8943 1836 90 33
4 9633 1994 45 77
5 17938 1401 122 86
6 21688 14774 25 269
7 6867 1924 106 33
8 8727 3753 160 0
9 2628 5739 4 32
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 83 1 6130
1 122 1 6773
2 63 1 4050
3 67 2 11015
4 61 1 6831
5 0 1 5150
6 16 1 41369
7 0 1 9667
8 0 3 5408
9 0 5 654
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 420 386 0 6
1 81 356 0 6
2 0 586 0 6
3 0 677 0 6
4 238 589 0 6
5 0 420 2 0
6 699 36 1 0
7 808 24 1 0
8 434 248 2 0
9 654 10 0 0
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 15 2 0 6 False
1 5 0 0 3 False
2 6 0 0 5 False
3 3 0 0 3 False
4 11 0 2 8 False
5 9 0 0 6 True
6 17 0 0 7 True
7 13 1 3 4 True
8 16 2 4 6 True
9 25 3 2 11 True ,
assists baronKills bountyLevel champLevel championName \
0 1 0 9 14 Pantheon
1 3 0 0 10 Taliyah
2 3 0 5 14 Talon
3 5 0 0 11 Kaisa
4 7 0 0 9 Shaco
5 0 0 0 11 Camille
6 2 0 1 11 Lillia
7 2 0 0 12 Malzahar
8 3 0 0 10 Samira
9 4 0 1 9 Karma
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 5782 5782 5782
1 0 10869 0
2 3117 3117 3117
3 1674 4973 1674
4 78 867 78
5 1526 1526 1526
6 0 3895 0
7 3917 3917 3917
8 1855 3387 1855
9 266 266 266
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 0 0 0 False True
1 3 0 2 False False
2 1 0 0 False False
3 1 0 0 False False
4 4 1 0 False False
5 8 0 0 False False
6 4 2 1 False False
7 6 0 0 False False
8 5 2 0 False False
9 5 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 9408 TOP 0
1 True 6565 JUNGLE 0
2 True 9821 MIDDLE 0
3 True 5986 BOTTOM 0
4 True 5874 UTILITY 0
5 True 5143 TOP 0
6 True 7343 JUNGLE 0
7 True 7158 MIDDLE 0
8 True 7222 BOTTOM 0
9 True 5278 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 2033 6692 3047 3053 0 0 3340
1 0 3020 2031 6655 3108 1052 0 3340
2 0 1055 6693 3117 6695 3134 0 3340
3 0 6671 1055 3006 1018 1036 0 3363
4 0 2424 3853 1052 6653 0 3020 3364
5 0 1055 3078 3047 0 0 0 3340
6 0 6653 2031 3020 3191 0 0 3340
7 0 1026 3020 6653 1011 1052 0 3340
8 0 6673 3006 1055 3134 0 0 3363
9 0 3851 2031 4005 3020 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 9 9 1
1 1 5 4 1
2 2 10 5 3
3 0 1 0 1
4 0 3 0 1
5 0 0 0 0
6 0 4 0 1
7 0 1 0 1
8 1 3 2 1
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 0 1084 382
1 636 61627 5094
2 944 0 0
3 1200 4752 973
4 452 13143 7085
5 229 518 518
6 616 53925 4850
7 498 62395 6854
8 479 4489 1347
9 495 15016 3900
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 1022 8 0
1 4496 87 0
2 6439 0 0
3 3972 0 0
4 3518 0 0
5 1372 0 0
6 4279 108 0
7 1079 0 0
8 4970 0 0
9 4840 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 95095
1 0 2 8522
2 0 3 90807
3 0 4 47841
4 0 5 1318
5 0 6 34601
6 0 7 12447
7 0 8 11517
8 0 9 54213
9 0 10 1909
physicalDamageDealtToChampions physicalDamageTaken role \
0 13147 8719 DUO
1 140 10361 NONE
2 14188 3161 DUO
3 2581 2368 CARRY
4 739 2917 SUPPORT
5 5061 13488 SOLO
6 53 14341 NONE
7 224 10239 SOLO
8 5119 4620 CARRY
9 270 3511 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 5 14 319
1 12 11 3 4 132
2 3 4 4 14 164
3 2 7 2 4 57
4 1 4 3 14 232
5 3 4 3 12 105
6 3 4 13 11 295
7 4 4 0 14 252
8 1 4 3 7 348
9 4 4 5 14 284
summonerName teamEarlySurrendered teamId teamPosition \
0 Rotome False 100 TOP
1 SlothoftheAbyss False 100 JUNGLE
2 Coolgum15 False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 Mackwo False 100 UTILITY
5 Brutha Jake False 200 TOP
6 KiwiiiCat False 200 JUNGLE
7 Amateraisu False 200 MIDDLE
8 Miusaka False 200 BOTTOM
9 HolidayCatt False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 19 1236 96761 14111
1 4 1236 77565 5383
2 2 1236 94322 14864
3 0 1236 52594 3554
4 19 1236 14777 8140
5 11 1236 40032 7285
6 14 1236 85211 6119
7 15 1236 78293 7078
8 0 1236 59326 6467
9 10 1236 17658 4903
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 11448 4433 148 29
1 15267 7497 7 282
2 10262 1880 132 154
3 6396 1851 109 0
4 7258 0 7 139
5 15523 1845 103 76
6 18891 7217 6 371
7 11665 290 137 96
8 9851 1298 126 0
9 8536 575 14 116
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 0 1 582
1 61 1 7415
2 35 1 3515
3 33 2 0
4 85 0 315
5 150 1 4912
6 116 1 18838
7 152 1 4380
8 124 2 624
9 105 1 732
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 582 1705 2 2
1 149 409 0 2
2 676 660 1 2
3 0 55 0 2
4 315 822 0 2
5 1705 662 0 3
6 1215 270 0 3
7 0 346 1 3
8 0 260 1 3
9 732 184 0 3
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 6 0 0 3 True
1 1 0 1 0 True
2 10 0 2 5 True
3 6 0 0 5 True
4 26 1 3 10 True
5 6 0 0 4 False
6 18 2 0 8 False
7 6 0 0 4 False
8 11 2 2 5 False
9 30 1 4 14 False ,
assists baronKills bountyLevel champLevel championName \
0 1 0 3 16 Pantheon
1 4 0 0 11 Kindred
2 2 0 0 13 Kassadin
3 2 0 0 10 Varus
4 1 0 0 9 Janna
5 1 0 1 12 MonkeyKing
6 9 0 1 13 RekSai
7 2 0 0 13 Mordekaiser
8 7 0 2 12 Jhin
9 8 0 3 13 Senna
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2376 5458 2376
1 0 1121 0
2 3330 3330 3330
3 0 0 0
4 0 0 0
5 1620 2796 1620
6 0 9676 0
7 2956 18979 2956
8 5733 11466 5733
9 2025 5492 2025
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 2 2 0 False False
1 6 0 0 False False
2 7 0 0 False True
3 5 0 0 False False
4 9 6 0 False False
5 5 1 0 False False
6 2 0 1 False False
7 5 3 1 False False
8 1 0 1 False False
9 2 3 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 True False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 10765 TOP 0
1 True 7204 JUNGLE 0
2 True 10490 MIDDLE 0
3 True 4998 BOTTOM 0
4 True 4927 UTILITY 0
5 True 6749 TOP 0
6 True 9606 JUNGLE 0
7 True 8689 MIDDLE 0
8 True 10081 BOTTOM 0
9 True 10034 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 6692 2033 3047 3814 3155 1036 3363
1 0 6672 2031 3006 1053 1043 0 3340
2 0 3157 6656 3070 1082 1058 3020 3340
3 0 3004 1036 1036 3158 0 0 3340
4 0 3853 4005 3158 1004 2055 0 3364
5 0 1055 3047 2031 3077 6630 0 3340
6 0 2031 6693 3047 3814 3044 0 3340
7 0 1056 4637 1029 4633 3006 0 3340
8 0 1055 6676 6671 1053 1042 3006 3340
9 0 6672 3124 3864 3086 2015 3009 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 2 8 4 1
1 0 1 0 1
2 1 6 4 1
3 0 0 0 0
4 0 0 0 0
5 0 1 0 1
6 1 9 8 2
7 1 5 2 2
8 2 7 5 2
9 2 7 4 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 769 4183 363
1 369 14039 222
2 377 57337 15383
3 384 2857 1004
4 382 8373 4464
5 484 5141 958
6 1106 6283 0
7 371 68583 7762
8 1224 7640 2156
9 988 130 50
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 3602 8 0
1 5681 106 0
2 2943 2 0
3 799 0 0
4 275 0 0
5 3103 8 0
6 6166 113 0
7 2899 28 0
8 5987 5 0
9 5042 15 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 118634
1 0 2 57432
2 0 3 16171
3 0 4 43220
4 0 5 1203
5 0 6 42998
6 0 7 96820
7 0 8 16554
8 0 9 105110
9 0 10 59957
physicalDamageDealtToChampions physicalDamageTaken role \
0 15301 8328 SOLO
1 2338 16703 NONE
2 1266 17088 SOLO
3 5442 7820 CARRY
4 822 11692 SUPPORT
5 3440 8728 SOLO
6 16520 15678 NONE
7 2191 13983 SOLO
8 8878 6432 CARRY
9 11485 4931 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 5 14 319
1 11 11 3 4 132
2 4 4 3 12 164
3 3 7 3 4 57
4 3 4 3 3 181
5 3 4 2 12 94
6 13 11 4 4 325
7 4 14 3 4 345
8 3 4 2 7 316
9 2 3 2 4 48
summonerName teamEarlySurrendered teamId teamPosition \
0 Rotome False 100 TOP
1 SlothoftheAbyss False 100 JUNGLE
2 Coolgum15 False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 STABBYYYY False 100 UTILITY
5 Loohna False 200 TOP
6 h20200 False 200 JUNGLE
7 WithBidenWeFall False 200 MIDDLE
8 EthreainAmbusher False 200 BOTTOM
9 catchyoubltch False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 16 1501 126656 16353
1 3 1501 80682 2832
2 19 1501 80388 16649
3 6 1501 46077 6446
4 31 1501 9576 5287
5 3 1501 49709 4398
6 32 1501 120512 20389
7 3 1501 99379 11058
8 18 1501 114337 11142
9 22 1501 66132 11989
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 13236 4443 201 69
1 22712 11106 8 204
2 21702 2631 140 112
3 8759 1087 69 100
4 14056 849 13 123
5 12090 859 108 17
6 22063 13023 18 237
7 17367 4888 98 87
8 12420 3010 155 113
9 9973 6540 45 110
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 70 1 3837
1 149 8 9210
2 186 1 6880
3 92 2 0
4 139 4 0
5 142 1 1570
6 54 1 17408
7 132 1 14241
8 36 2 1586
9 64 3 6045
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 688 1305 1 4
1 271 328 0 4
2 0 1670 1 4
3 0 140 0 4
4 0 2089 0 4
5 0 258 1 2
6 3868 217 0 2
7 1104 484 1 2
8 106 0 0 2
9 453 0 1 2
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 25 2 0 6 False
1 14 0 1 7 False
2 10 0 0 7 False
3 9 0 1 5 False
4 61 9 6 28 False
5 17 1 1 5 True
6 17 0 3 8 True
7 21 3 1 11 True
8 10 0 0 7 True
9 18 3 4 8 True ,
assists baronKills bountyLevel champLevel championName \
0 1 0 0 14 Warwick
1 3 0 0 10 XinZhao
2 3 0 0 14 TwistedFate
3 0 0 0 10 MissFortune
4 0 0 0 9 Lux
5 1 0 2 13 Pantheon
6 5 0 0 12 Jax
7 5 0 3 14 Katarina
8 9 0 8 12 Jhin
9 12 0 3 13 Karma
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2966 9743 2966
1 0 10768 0
2 4798 4798 4798
3 558 1786 558
4 262 919 262
5 482 7017 482
6 1431 6747 1431
7 1211 2529 1211
8 1354 5338 1354
9 1531 1750 1531
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 4 0 0 False True
1 6 1 1 False False
2 2 3 0 False False
3 7 2 0 False False
4 8 2 0 False False
5 9 1 0 False False
6 3 0 0 False False
7 3 1 0 False False
8 0 0 2 False False
9 1 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 11210 TOP 0
1 True 6550 JUNGLE 0
2 True 9610 MIDDLE 0
3 True 6847 BOTTOM 0
4 True 4763 UTILITY 0
5 True 8961 TOP 0
6 True 7960 JUNGLE 0
7 True 8979 MIDDLE 0
8 True 9546 BOTTOM 0
9 True 8019 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1053 3748 3158 6632 1043 0 3340
1 0 6692 2031 3006 1043 0 0 3340
2 0 2420 6656 2033 3158 1052 3100 3340
3 0 1055 6671 1001 3134 1018 2055 3340
4 0 3851 2031 6655 0 2422 0 3364
5 0 6609 2033 6692 2055 1001 1036 3340
6 0 3047 2031 3078 1043 1053 1037 3340
7 0 1055 3047 3115 1082 4635 0 3340
8 0 6671 1055 3009 6676 3086 1042 3340
9 0 3853 6617 6616 3158 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 11 6 1
1 0 1 0 1
2 0 2 0 1
3 0 2 0 1
4 0 0 0 0
5 2 5 2 1
6 1 3 3 1
7 1 5 3 2
8 1 8 8 2
9 2 5 3 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 574 20112 9858
1 767 11561 458
2 1227 104473 10784
3 483 2049 397
4 265 17020 3363
5 249 1336 312
6 934 28628 2305
7 926 75744 10523
8 0 2666 995
9 355 40053 15297
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 5816 4 0
1 4638 92 0
2 6680 6 0
3 7689 0 0
4 5827 0 0
5 7547 11 0
6 6547 128 0
7 6517 0 0
8 2942 12 1
9 3420 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 58815
1 0 2 59078
2 0 3 15718
3 0 4 51883
4 0 5 2609
5 0 6 87562
6 0 7 75649
7 0 8 15311
8 0 9 77221
9 0 10 4241
physicalDamageDealtToChampions physicalDamageTaken role \
0 6385 22962 NONE
1 4325 19286 NONE
2 2085 7479 SOLO
3 3268 4655 CARRY
4 126 4540 SUPPORT
5 14896 10120 SOLO
6 6486 14203 NONE
7 912 10553 SOLO
8 7777 4841 CARRY
9 1313 4628 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 7 21 100
1 3 4 14 11 51
2 2 12 2 4 128
3 4 7 4 4 204
4 4 4 0 14 132
5 2 4 4 21 319
6 11 11 3 4 132
7 4 4 4 14 188
8 2 7 3 4 57
9 3 4 5 14 164
summonerName teamEarlySurrendered teamId teamPosition \
0 EightyBard False 100 TOP
1 wisehallo False 100 JUNGLE
2 Vecksu False 100 MIDDLE
3 Matisse False 100 BOTTOM
4 Aeriseon False 100 UTILITY
5 Rotome False 200 TOP
6 SlothoftheAbyss False 200 JUNGLE
7 IrelíaIntsU False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 Coolgum15 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 32 1547 88517 16364
1 4 1547 79266 4860
2 31 1547 125299 12869
3 3 1547 53933 3666
4 18 1547 19630 3489
5 24 1547 99453 15209
6 9 1547 111011 8851
7 0 1547 91693 12074
8 25 1547 79887 8773
9 29 1547 53370 17277
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 29469 13845 148 221
1 23944 12568 9 349
2 14500 4038 163 103
3 12514 1675 116 66
4 10512 485 13 237
5 17788 3770 134 32
6 20778 8461 9 231
7 17118 1992 155 0
8 7783 3616 119 78
9 8049 5229 32 199
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 116 1 9589
1 188 1 8626
2 85 1 5107
3 188 3 0
4 168 1 0
5 199 1 10555
6 26 1 6734
7 91 1 638
8 0 2 0
9 12 5 9076
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 120 690 2 2
1 76 20 0 2
2 0 340 1 2
3 0 170 0 2
4 0 144 0 2
5 0 120 0 3
6 60 28 0 3
7 638 48 0 3
8 0 0 1 3
9 666 0 1 3
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 10 0 1 6 False
1 19 1 1 8 False
2 27 3 3 11 False
3 15 3 1 11 False
4 25 3 0 16 False
5 10 3 2 3 True
6 19 0 2 8 True
7 16 1 1 9 True
8 11 0 2 5 True
9 35 0 4 13 True ,
assists baronKills bountyLevel champLevel championName \
0 2 0 0 14 Akali
1 3 0 0 13 Kayn
2 7 0 0 15 Kayle
3 5 0 0 13 Kalista
4 5 0 0 12 Seraphine
5 6 0 0 16 Fiora
6 3 1 2 15 Nocturne
7 2 0 4 17 Irelia
8 5 0 4 15 Kaisa
9 10 0 0 14 Nautilus
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 678 678 678
1 918 4087 918
2 2679 8277 2679
3 178 178 178
4 628 1048 628
5 4868 12662 4868
6 2260 34546 2260
7 5578 11101 5578
8 8112 31683 8112
9 1210 2885 1210
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 4 0 0 False False
1 4 0 0 False False
2 5 0 0 False False
3 5 0 0 False False
4 4 0 0 False False
5 4 2 0 False False
6 2 3 4 False False
7 1 3 0 False False
8 1 1 1 False True
9 2 4 0 True False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False True False
9 True False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 9975 TOP 0
1 False 9115 JUNGLE 0
2 False 9892 MIDDLE 0
3 False 7146 BOTTOM 0
4 False 7066 UTILITY 0
5 False 11340 TOP 0
6 False 11872 JUNGLE 0
7 False 15065 MIDDLE 0
8 False 14113 BOTTOM 1
9 False 8237 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 2 3041 2031 4636 3020 3165 1058 3340
1 2 3053 6630 3047 3076 0 0 3340
2 2 1054 6672 3006 3046 1038 0 3340
3 2 3006 1055 6673 1053 1043 0 3340
4 2 3853 4005 3158 3165 1028 0 3340
5 0 1055 6630 3111 3074 3044 0 3340
6 0 6691 2031 3006 1038 6676 1029 3340
7 0 3153 2033 3078 3111 3091 1028 3340
8 0 2421 6672 1055 3006 6676 3085 3363
9 0 3860 3190 3076 1011 3117 2055 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 5 2 1
1 1 4 3 2
2 0 0 0 0
3 0 0 0 0
4 0 1 0 1
5 0 2 0 1
6 2 5 2 1
7 2 7 4 2
8 2 7 4 1
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 598 69645 10846
1 965 8156 167
2 820 55388 5128
3 736 203 0
4 1092 32191 9653
5 558 497 497
6 1037 8781 693
7 1333 19845 3306
8 1316 15882 5036
9 1319 9478 4723
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 2783 8 0
1 5904 114 0
2 1655 8 0
3 3062 0 0
4 3467 0 0
5 9849 20 0
6 5009 159 0
7 3578 8 0
8 6590 16 0
9 4535 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 15828
1 0 2 122511
2 0 3 78908
3 0 4 47919
4 0 5 2100
5 0 6 116670
6 0 7 154192
7 0 8 156573
8 0 9 152023
9 0 10 7128
physicalDamageDealtToChampions physicalDamageTaken role \
0 2056 13421 SOLO
1 8444 21702 NONE
2 5653 12777 SOLO
3 2431 6797 CARRY
4 448 5783 SUPPORT
5 8071 14923 SOLO
6 8633 18521 NONE
7 8998 9565 SOLO
8 11652 5657 CARRY
9 1635 6572 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 5 14 12
1 3 4 18 11 163
2 2 4 3 12 19
3 3 7 3 4 55
4 4 4 3 14 123
5 1 12 1 4 15
6 1 4 13 11 159
7 3 14 1 4 219
8 3 7 2 4 298
9 2 4 5 14 152
summonerName teamEarlySurrendered teamId teamPosition \
0 RyeBreadPitt False 100 TOP
1 Coolgum15 False 100 JUNGLE
2 KidNolke False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 Alece False 100 UTILITY
5 bad player 12345 False 200 TOP
6 JuiceMeMate False 200 JUNGLE
7 FrenchBejani False 200 MIDDLE
8 Alatréon False 200 BOTTOM
9 euoshi False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 2 1868 97392 13591
1 22 1868 139171 9339
2 7 1868 145289 11302
3 7 1868 50618 2431
4 20 1868 34899 10710
5 3 1868 121606 10650
6 112 1868 175962 9620
7 11 1868 179253 13758
8 3 1868 184210 19895
9 41 1868 23194 6913
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 17538 3030 144 41
1 29940 13774 30 390
2 16236 2455 225 281
3 10744 1100 109 35
4 10485 350 26 146
5 25706 13459 188 59
6 23765 15206 40 486
7 13779 3441 269 67
8 14670 6248 246 50
9 11426 1281 24 158
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 142 1 11918
1 121 1 8504
2 188 5 10992
3 152 2 2495
4 151 3 608
5 121 1 4438
6 67 1 12989
7 42 1 2834
8 37 3 16304
9 78 1 6588
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 688 1333 0 10
1 728 2333 2 10
2 519 1804 0 10
3 0 884 0 10
4 608 1233 0 10
5 2081 933 1 2
6 294 234 1 2
7 1453 636 3 2
8 3205 2422 4 2
9 555 318 0 2
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 18 0 2 9 False
1 21 0 5 9 False
2 5 0 1 4 False
3 16 0 1 8 False
4 36 0 1 20 False
5 21 2 2 10 True
6 49 3 2 13 True
7 22 3 2 12 True
8 16 1 3 6 True
9 46 6 0 18 True ,
assists baronKills bountyLevel champLevel championName \
0 0 0 0 7 TahmKench
1 0 0 0 6 Khazix
2 0 0 0 8 Fizz
3 0 0 1 7 Kaisa
4 0 0 0 6 Lux
5 0 0 2 9 Shyvana
6 0 0 3 7 Sejuani
7 1 0 2 8 Kayle
8 1 0 0 7 Jhin
9 1 0 0 5 Soraka
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 0 0 0
1 0 0 0
2 0 0 0
3 391 391 391
4 0 0 0
5 3715 3715 3715
6 851 8631 851
7 930 930 930
8 0 1305 0
9 0 384 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 2 0 0 False False
1 3 0 0 False False
2 2 0 0 False False
3 0 1 0 False False
4 0 0 0 False False
5 0 0 0 False False
6 0 0 1 False True
7 1 0 0 True False
8 0 0 0 False False
9 1 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 2865 TOP 0
1 True 2730 JUNGLE 0
2 True 3002 MIDDLE 0
3 True 3822 BOTTOM 0
4 True 1963 UTILITY 0
5 True 5090 TOP 0
6 True 4100 JUNGLE 0
7 True 3940 MIDDLE 0
8 True 2711 BOTTOM 0
9 True 2271 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1083 3035 1036 0 0 0 3340
1 0 1039 2031 3134 0 0 0 3340
2 0 2033 3145 1026 0 0 0 3340
3 0 2055 0 2010 1037 1055 6670 3340
4 0 3850 1027 2010 1026 2003 0 3340
5 0 1055 0 1036 1036 1037 0 3340
6 0 0 2031 6660 1001 1033 0 3340
7 0 1054 6670 1042 2055 1033 1001 3340
8 0 1018 1055 6670 0 0 0 3340
9 0 3850 4642 1028 0 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 0 0 0
1 0 1 0 1
2 0 0 0 0
3 0 1 0 1
4 0 0 0 0
5 1 2 2 1
6 1 3 3 1
7 1 2 2 2
8 0 0 0 0
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 364 6505 877
1 280 2055 85
2 189 12928 2196
3 0 2509 979
4 0 3757 1291
5 0 22712 2537
6 0 19150 693
7 229 8454 1955
8 0 216 0
9 625 3220 1324
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 2405 4 0
1 1707 32 0
2 1695 0 0
3 507 0 0
4 748 0 0
5 738 0 0
6 1149 56 0
7 2166 0 0
8 1665 0 0
9 605 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 5980
1 0 2 17354
2 0 3 10146
3 0 4 26393
4 0 5 880
5 0 6 17559
6 0 7 23063
7 0 8 15697
8 0 9 20277
9 0 10 1058
physicalDamageDealtToChampions physicalDamageTaken role summoner1Casts \
0 306 1506 DUO 2
1 1798 5039 DUO 4
2 1082 3767 DUO 3
3 2330 1418 DUO 1
4 210 461 DUO 1
5 740 2092 DUO 0
6 1209 7074 DUO 1
7 2928 3447 DUO 2
8 1029 1258 DUO 0
9 308 1695 DUO 1
summoner1Id summoner2Casts summoner2Id summonerLevel summonerName \
0 14 1 6 27 TicTacToc164
1 11 1 4 27 SavvyApex
2 14 2 4 26 stayhomehub420
3 7 1 4 22 RabbitKyr4
4 4 1 21 23 spac3hamster
5 4 1 14 11 RyeBreadPitt
6 4 5 11 163 Coolgum15
7 4 1 12 19 KidNolke
8 7 0 4 54 Dublaiar
9 4 1 14 123 Alece
teamEarlySurrendered teamId teamPosition timeCCingOthers timePlayed \
0 False 100 TOP 3 652
1 False 100 JUNGLE 1 652
2 False 100 MIDDLE 2 652
3 False 100 BOTTOM 0 652
4 False 100 UTILITY 4 652
5 False 200 TOP 0 652
6 False 200 JUNGLE 4 652
7 False 200 MIDDLE 3 652
8 False 200 BOTTOM 5 652
9 False 200 UTILITY 11 652
totalDamageDealt totalDamageDealtToChampions totalDamageTaken totalHeal \
0 12655 1353 3945 764
1 21633 1924 6797 2833
2 23377 3580 5463 25
3 28903 3309 2076 609
4 4638 1502 1209 0
5 40306 3312 3001 657
6 47264 1952 8223 4113
7 24152 4884 5955 1877
8 20493 1029 2924 759
9 4428 1782 2301 1956
totalMinionsKilled totalTimeCCDealt totalTimeSpentDead totalUnitsHealed \
0 53 51 32 1
1 5 80 40 1
2 72 20 24 1
3 89 0 0 1
4 2 53 0 0
5 81 1 0 1
6 3 114 0 2
7 65 104 12 2
8 51 18 0 1
9 2 71 14 3
trueDamageDealt trueDamageDealtToChampions trueDamageTaken turretKills \
0 170 170 34 0
1 2224 40 50 0
2 302 302 0 0
3 0 0 150 0
4 0 0 0 0
5 34 34 170 1
6 5051 50 0 0
7 0 0 342 0
8 0 0 0 0
9 150 150 0 0
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 1 1 0 0
1 1 3 0 0
2 1 2 0 0
3 1 4 2 0
4 1 3 0 0
5 0 4 0 0
6 0 3 0 0
7 0 0 1 0
8 0 2 0 0
9 0 5 0 1
wardsPlaced win
0 1 False
1 1 False
2 2 False
3 3 False
4 3 False
5 3 True
6 3 True
7 0 True
8 2 True
9 3 True ,
assists baronKills bountyLevel champLevel championName \
0 3 0 4 12 Vayne
1 7 0 1 10 FiddleSticks
2 3 0 1 10 Talon
3 3 0 2 9 Jhin
4 6 0 0 8 Yuumi
5 0 0 0 9 Camille
6 5 0 0 8 Aphelios
7 1 0 0 10 Ryze
8 1 0 0 9 MasterYi
9 4 0 0 8 Blitzcrank
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 4957 5489 4957
1 0 1088 0
2 3426 3426 3426
3 0 121 0
4 0 0 0
5 0 0 0
6 514 514 514
7 2793 2793 2793
8 0 6069 0
9 588 588 588
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 1 0 0 False False
1 4 0 0 False False
2 2 0 0 False False
3 3 0 0 False False
4 2 0 0 False False
5 7 1 0 False False
6 5 0 0 False False
7 4 0 0 False False
8 3 0 1 False False
9 2 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 True False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 7810 TOP 0
1 True 5985 JUNGLE 0
2 True 6585 MIDDLE 0
3 True 5578 BOTTOM 0
4 True 4420 UTILITY 0
5 True 3602 TOP 0
6 True 4818 BOTTOM 0
7 True 5740 MIDDLE 0
8 True 6958 JUNGLE 0
9 True 3732 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1055 3006 6672 0 0 0 3340
1 0 4635 2031 3020 1082 1026 0 3330
2 0 2031 6693 3158 3134 0 0 3340
3 0 6671 1055 3009 0 0 0 3340
4 0 3851 6617 3114 0 0 0 3364
5 0 1055 3051 3057 2422 3067 0 3340
6 0 1055 2031 1053 1018 6670 3006 3340
7 0 3070 6655 0 3020 0 0 3340
8 0 1035 2031 6672 3006 6677 1042 3340
9 0 3859 3009 3067 0 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 5 4 2
1 0 3 0 1
2 1 5 4 1
3 2 6 2 1
4 1 2 2 1
5 0 1 0 1
6 0 1 0 1
7 1 3 2 1
8 1 6 5 2
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 482 0 0
1 240 58010 4274
2 590 0 0
3 395 1171 119
4 392 5883 2943
5 206 387 387
6 566 489 385
7 552 48756 7010
8 397 3304 0
9 728 5095 2175
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 633 2 0
1 4976 81 0
2 2722 1 0
3 2227 0 0
4 1177 0 0
5 0 0 0
6 1732 0 0
7 3719 0 0
8 2163 80 0
9 998 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 49650
1 0 2 5250
2 0 3 46584
3 0 4 32293
4 0 5 1300
5 0 6 20733
6 0 7 25598
7 0 8 4859
8 0 9 56229
9 0 10 4241
physicalDamageDealtToChampions physicalDamageTaken role \
0 6736 5649 SUPPORT
1 221 9731 SUPPORT
2 5449 2132 SUPPORT
3 6318 4688 SUPPORT
4 1109 2194 SUPPORT
5 3027 8150 SUPPORT
6 3721 6427 SUPPORT
7 738 4519 DUO
8 4931 10167 SUPPORT
9 1043 4371 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 4 3 6 11
1 2 4 10 11 27
2 2 4 3 14 163
3 2 7 2 4 54
4 2 4 3 14 123
5 2 4 2 12 24
6 2 4 2 7 19
7 2 12 2 4 21
8 2 4 4 11 23
9 3 14 2 4 217
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 RyeBreadPitt False 100 TOP 5
1 Ku Ku Za Za False 100 JUNGLE 20
2 Coolgum15 False 100 MIDDLE 1
3 Dublaiar False 100 BOTTOM 12
4 Alece False 100 UTILITY 11
5 TopoNeko False 200 TOP 6
6 lIlIlllIIlIll False 200 BOTTOM 11
7 AkameGaFilth False 200 MIDDLE 7
8 Sadboy5059 False 200 JUNGLE 5
9 Sagume False 200 UTILITY 16
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 943 58607 9223
1 943 66378 5189
2 943 46770 5635
3 943 33464 6437
4 943 7548 4417
5 943 22976 4203
6 943 26087 4107
7 943 53921 7845
8 943 66493 5938
9 943 13961 3395
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 7230 1384 104 5
1 15269 7636 12 347
2 5021 476 83 75
3 7210 1530 60 37
4 3470 2366 3 23
5 10199 590 50 69
6 8668 1444 68 76
7 8578 1514 102 51
8 12967 6559 14 122
9 5566 0 25 41
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 16 1 8957
1 70 1 3117
2 44 1 186
3 51 3 0
4 33 3 364
5 145 1 1854
6 79 2 0
7 117 1 306
8 58 1 6959
9 16 0 4624
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 2486 947 2 1
1 693 561 0 1
2 186 166 0 1
3 0 295 0 1
4 364 98 0 1
5 789 2049 0 2
6 0 508 0 2
7 96 339 0 2
8 1006 635 0 2
9 176 197 1 2
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 5 0 0 4 True
1 12 0 2 0 True
2 6 0 0 4 True
3 4 0 0 4 True
4 11 0 0 7 True
5 10 1 0 6 False
6 2 1 0 3 False
7 2 0 0 2 False
8 7 0 0 3 False
9 12 1 0 7 False ,
assists baronKills bountyLevel champLevel championName \
0 10 0 0 16 Shyvana
1 14 1 0 17 MonkeyKing
2 15 0 1 18 Velkoz
3 9 1 3 17 Kalista
4 18 0 0 16 Seraphine
5 12 1 0 18 Kayle
6 24 0 0 16 Rammus
7 16 0 0 18 Annie
8 14 0 0 17 Jhin
9 13 0 0 17 Morgana
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 4235 17042 4235
1 1144 34657 1144
2 1047 4917 1047
3 6476 33290 6476
4 2483 7258 2483
5 5631 38951 5631
6 0 5462 0
7 1819 2194 1819
8 0 7772 0
9 0 6803 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 6 0 0 False False
1 8 4 2 False False
2 5 5 1 False False
3 9 1 0 False True
4 5 0 0 True False
5 5 2 0 False False
6 10 0 2 False False
7 6 0 0 False False
8 8 0 1 False False
9 6 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 True False False
4 False True False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 14098 TOP 0
1 False 14453 JUNGLE 1
2 False 14650 MIDDLE 1
3 False 19091 BOTTOM 2
4 False 11926 UTILITY 0
5 False 22442 TOP 0
6 False 10700 JUNGLE 0
7 False 12418 MIDDLE 0
8 False 10940 BOTTOM 0
9 False 13355 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1058 4636 3115 3020 3165 1058 3340
1 0 3111 6630 6609 3071 3156 0 3364
2 0 2033 3165 2420 6655 4628 3020 3340
3 0 3091 3153 3124 6673 3006 1053 3363
4 0 3853 6617 3158 6616 3504 3191 3364
5 5 3031 6672 3046 3006 3072 3508 3363
6 5 3075 6664 3047 3001 1029 0 3340
7 5 1082 6655 3020 4628 3102 1058 3340
8 5 6671 1055 3009 6676 3094 1018 3363
9 5 3853 3157 6653 3020 4637 1058 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 6 3 3
1 1 4 2 1
2 2 8 2 2
3 4 13 3 3
4 0 4 0 1
5 3 17 12 4
6 0 1 0 1
7 1 4 2 1
8 0 2 0 1
9 2 9 7 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 1497 114198 18864
1 1102 33709 1996
2 978 121411 31956
3 956 14035 3548
4 959 43513 11824
5 920 147170 15408
6 734 90558 16074
7 865 114685 18572
8 624 5401 1667
9 841 85994 22631
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 20887 0 0
1 14530 167 0
2 12344 8 1
3 20722 49 0
4 9671 0 0
5 13085 70 0
6 18706 88 1
7 11455 4 0
8 12771 4 0
9 16692 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 29700
1 0 2 118273
2 0 3 16101
3 0 4 206910
4 0 5 4399
5 0 6 247972
6 0 7 28400
7 0 8 11108
8 0 9 124050
9 0 10 5339
physicalDamageDealtToChampions physicalDamageTaken role \
0 1487 12934 DUO
1 9144 28240 NONE
2 510 7779 DUO
3 27118 16516 CARRY
4 906 8546 SUPPORT
5 24962 19622 SOLO
6 1765 21942 NONE
7 370 8355 SOLO
8 11594 11847 CARRY
9 629 8318 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 12 4 4 160
1 18 11 7 4 167
2 8 21 5 4 199
3 5 4 4 7 222
4 1 3 5 4 82
5 4 4 3 12 19
6 4 4 23 11 163
7 7 4 7 14 123
8 2 7 3 4 54
9 3 14 4 4 153
summonerName teamEarlySurrendered teamId teamPosition \
0 Kongnificent False 100 TOP
1 6 Shotgun Knees False 100 JUNGLE
2 KingRegicide False 100 MIDDLE
3 LoLiIy False 100 BOTTOM
4 swtnrhoami False 100 UTILITY
5 KidNolke False 200 TOP
6 Coolgum15 False 200 JUNGLE
7 Alece False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 AlexAve False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1 2553 159064 20351
1 19 2553 174164 11534
2 31 2553 174928 35702
3 14 2553 229949 31278
4 40 2553 47913 12731
5 14 2553 429305 44752
6 53 2553 139474 18987
7 28 2553 128849 20113
8 22 2553 129451 13262
9 43 2553 92292 23796
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 34648 7449 185 10
1 44508 14220 41 235
2 22071 3354 178 275
3 39050 6762 196 234
4 19130 9759 23 237
5 33084 16278 324 434
6 42107 9084 38 592
7 20879 4527 172 218
8 25141 6496 129 90
9 25827 4565 64 106
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 315 1 15165
1 323 1 22182
2 235 1 37414
3 380 2 9003
4 209 6 0
5 177 5 34161
6 333 5 20515
7 177 1 3054
8 179 3 0
9 193 1 958
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 826 2 3
1 394 1737 2 3
2 3235 1946 0 3
3 612 1811 4 3
4 0 911 1 3
5 4380 376 1 11
6 1148 1458 0 11
7 1169 1068 1 11
8 0 521 0 11
9 536 816 0 11
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 28 0 4 13 True
1 39 4 3 5 True
2 51 5 3 20 True
3 74 2 1 17 True
4 28 0 2 12 True
5 24 2 4 9 False
6 27 0 6 12 False
7 19 0 2 13 False
8 15 0 0 9 False
9 23 3 3 13 False ,
assists baronKills bountyLevel champLevel championName \
0 6 0 0 18 Teemo
1 3 3 0 18 MasterYi
2 5 0 0 18 MonkeyKing
3 9 0 0 16 Jhin
4 12 0 0 15 Seraphine
5 15 0 1 18 Gnar
6 13 0 0 16 Hecarim
7 16 0 2 18 Kayle
8 13 0 1 16 Kalista
9 13 0 0 15 Ashe
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 4732 4954 4732
1 3797 118172 3797
2 7235 12310 7235
3 2273 2488 2273
4 677 2517 677
5 5443 12930 5443
6 910 8602 910
7 8892 8892 8892
8 2139 5001 2139
9 1654 2438 1654
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 13 0 0 False False
1 7 0 5 False False
2 6 0 0 False False
3 6 0 0 False False
4 7 6 0 False False
5 7 0 1 False True
6 8 0 0 False False
7 4 0 0 False False
8 7 0 0 False False
9 10 3 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 True False False
2 False True False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 16337 TOP 2
1 False 18953 JUNGLE 0
2 False 15291 MIDDLE 1
3 False 14371 BOTTOM 1
4 False 11044 UTILITY 0
5 False 16545 TOP 0
6 False 11267 JUNGLE 0
7 False 21177 MIDDLE 0
8 False 10963 BOTTOM 0
9 False 9569 UTILITY 1
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 3135 3100 3020 3085 6653 1058 3340
1 1 6672 6333 3006 3153 3124 3026 3364
2 1 3074 6630 6333 3071 0 3047 3340
3 1 1055 6676 3031 3009 6671 3094 3340
4 1 3853 3158 6617 6616 3011 3114 3364
5 4 3075 6630 3143 3074 3111 3105 3364
6 4 3078 1057 3742 3066 3076 3047 3364
7 4 3026 3115 3006 4633 3089 3100 3340
8 4 3006 3072 6673 3085 0 0 3363
9 4 3864 3158 3042 4005 3123 1028 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 4 11 4 2
1 4 10 3 2
2 2 8 4 2
3 0 4 0 1
4 1 3 2 1
5 1 15 10 3
6 0 3 0 1
7 5 14 4 3
8 0 3 0 1
9 0 3 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 296 140908 52933
1 461 7649 179
2 1034 26205 3567
3 854 16644 1993
4 725 50396 17218
5 785 24733 5458
6 493 23104 2334
7 817 225678 29923
8 567 2706 556
9 413 4924 2946
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 8263 37 0
1 13883 232 0
2 12791 3 0
3 6783 1 0
4 4958 4 0
5 28289 15 0
6 17662 119 0
7 13091 17 0
8 9430 0 0
9 9010 7 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 36943
1 0 2 329245
2 0 3 95901
3 0 4 133409
4 0 5 4490
5 0 6 146235
6 0 7 147439
7 0 8 56754
8 0 9 98257
9 0 10 36050
physicalDamageDealtToChampions physicalDamageTaken role \
0 4455 19400 SOLO
1 19889 34617 NONE
2 16739 16898 SOLO
3 17907 15564 CARRY
4 963 11467 SUPPORT
5 26868 23349 SOLO
6 10045 28500 NONE
7 5680 18103 SOLO
8 6247 12941 SOLO
9 10730 13899 NONE
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 7 4 9 14 27
1 14 11 5 4 23
2 6 14 5 4 24
3 6 7 5 4 97
4 5 3 5 4 14
5 7 4 8 14 11
6 5 4 22 11 163
7 5 4 2 12 19
8 3 7 4 4 54
9 5 3 3 4 153
summonerName teamEarlySurrendered teamId teamPosition \
0 CreedBr007 False 100 TOP
1 MinecraftSteve42 False 100 JUNGLE
2 T0XIICzzz False 100 MIDDLE
3 JiTa Mob False 100 BOTTOM
4 NunuIsThiccc False 100 UTILITY
5 RyeBreadPitt False 200 TOP
6 Coolgum15 False 200 JUNGLE
7 KidNolke False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 AlexAve False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 59 2343 182627 62164
1 5 2343 420796 27215
2 15 2343 139396 21371
3 28 2343 155348 19991
4 46 2343 55547 18842
5 60 2343 173539 34270
6 22 2343 181043 13267
7 12 2343 300396 36885
8 1 2343 138532 6931
9 47 2343 41464 14081
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 28411 4176 165 506
1 50096 24755 100 304
2 31405 6211 168 29
3 23231 7567 211 185
4 16972 5903 25 217
5 56192 12465 152 509
6 51243 16399 49 252
7 32894 22606 320 368
8 23794 4364 127 101
9 23891 960 26 394
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 422 1 4776
1 232 1 83900
2 259 1 17289
3 268 2 5295
4 244 6 660
5 266 1 2570
6 228 1 10498
7 173 5 17963
8 242 2 37568
9 282 1 489
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 4776 746 2 6
1 7146 1596 1 6
2 1064 1715 6 6
3 90 883 1 6
4 660 546 0 6
5 1943 4553 2 10
6 887 5080 0 10
7 1280 1698 2 10
8 127 1422 1 10
9 404 980 1 10
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 23 0 3 12 True
1 17 0 3 1 True
2 21 0 1 12 True
3 12 0 1 8 True
4 74 6 2 32 True
5 18 0 2 8 False
6 13 0 1 5 False
7 13 0 1 7 False
8 9 0 1 6 False
9 54 4 2 22 False ,
assists baronKills bountyLevel champLevel championName \
0 7 0 0 15 Gnar
1 4 0 0 13 Shyvana
2 0 0 0 17 Anivia
3 5 0 0 13 Ezreal
4 6 0 0 12 Leona
5 15 0 0 17 Nasus
6 22 0 2 16 Nunu
7 12 0 5 17 Kayle
8 11 0 4 14 Kalista
9 10 0 2 13 Pyke
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3426 8290 3426
1 555 13494 555
2 290 3289 290
3 1775 4005 1775
4 0 609 0
5 21374 24272 21374
6 819 10313 819
7 6099 14284 6099
8 3627 6781 3627
9 815 3470 815
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 9 5 0 False False
1 9 0 2 False False
2 3 0 0 False False
3 6 1 0 False False
4 8 3 0 False False
5 4 0 0 True False
6 2 0 1 False True
7 1 2 2 False False
8 3 0 0 False False
9 4 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 10569 TOP 0
1 False 8525 JUNGLE 0
2 False 15493 MIDDLE 0
3 False 9622 BOTTOM 0
4 False 7065 UTILITY 0
5 False 15126 TOP 2
6 False 14013 JUNGLE 0
7 False 16331 MIDDLE 1
8 False 10911 BOTTOM 0
9 False 10575 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 3 3075 3047 6631 1031 3066 1028 3363
1 3 3153 2031 3111 3075 1033 1028 3340
2 3 3040 6653 3020 4637 3165 1058 3340
3 3 6632 3042 1053 3123 1055 3158 3340
4 3 3857 3009 3190 3050 0 0 3364
5 0 3065 3105 3009 3110 3075 6632 3340
6 0 3068 3211 3111 3742 3075 3067 3340
7 0 1054 3115 3006 4633 3089 3100 3340
8 0 3006 1042 6673 3153 3086 1042 3340
9 0 3857 6693 2055 3111 3179 3134 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 2 0 1
1 0 0 0 0
2 2 9 5 2
3 1 2 2 1
4 0 1 0 1
5 2 10 7 2
6 2 6 4 1
7 2 10 5 2
8 1 4 4 2
9 2 5 2 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 420 15806 6052
1 748 57081 4847
2 1466 176152 33867
3 868 24375 11382
4 574 7164 3996
5 1150 27964 11035
6 1327 84681 17005
7 1456 180441 24372
8 391 1729 1014
9 848 2389 0
magicDamageTaken neutralMinionsKilled objectivesStolen \
0 13591 8 0
1 9672 108 0
2 9521 8 0
3 11146 0 0
4 11148 0 0
5 25195 8 0
6 15060 135 0
7 9270 44 0
8 5792 4 0
9 7236 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 140399
1 0 2 54452
2 0 3 16669
3 0 4 73632
4 0 5 5461
5 0 6 147109
6 0 7 33043
7 0 8 56703
8 0 9 74098
9 0 10 17346
physicalDamageDealtToChampions physicalDamageTaken role \
0 23621 16950 DUO
1 2159 26312 NONE
2 1315 10248 SOLO
3 19563 11714 DUO
4 1897 13142 NONE
5 24038 23655 DUO
6 1835 30488 NONE
7 5241 11298 DUO
8 7219 6799 CARRY
9 8178 10791 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 12 6 4 180
1 3 4 15 11 24
2 2 14 3 4 70
3 5 4 5 7 250
4 6 4 6 14 24
5 2 12 4 4 55
6 5 4 19 11 163
7 4 4 3 12 18
8 4 7 2 4 54
9 4 14 4 4 153
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 Brötherr False 100 TOP 63
1 XIKODAIX False 100 JUNGLE 4
2 Abar1210 False 100 MIDDLE 60
3 Opscuritas False 100 BOTTOM 0
4 eeuphoriaa False 100 UTILITY 38
5 FrostedCamel False 200 TOP 20
6 Coolgum15 False 200 JUNGLE 48
7 KidNolke False 200 MIDDLE 14
8 Dublaiar False 200 BOTTOM 5
9 AlexAve False 200 UTILITY 35
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 2189 158486 29674
1 2189 122526 7439
2 2189 201079 35781
3 2189 98008 30945
4 2189 18677 6956
5 2189 175072 35073
6 2189 197648 19615
7 2189 249286 31292
8 2189 76220 8321
9 2189 25066 9523
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 31227 6096 186 614
1 36146 10715 27 118
2 20547 2091 255 1139
3 23648 6559 153 0
4 25764 2945 25 60
5 50101 7342 172 1202
6 45736 31870 57 412
7 20694 14119 261 521
8 13061 5102 132 66
9 18085 5984 29 124
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 295 1 2280
1 299 1 10992
2 92 1 8258
3 186 3 0
4 222 5 6052
5 185 1 0
6 77 1 79923
7 45 5 12142
8 49 3 392
9 132 1 5331
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 685 1 11
1 432 160 1 11
2 598 777 0 11
3 0 786 0 11
4 1062 1472 0 11
5 0 1251 8 2
6 774 186 0 2
7 1677 125 2 2
8 88 470 1 2
9 1344 58 0 2
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 35 5 2 13 False
1 12 0 0 6 False
2 12 0 0 7 False
3 20 1 1 8 False
4 62 3 1 28 False
5 12 0 2 6 True
6 22 0 2 9 True
7 17 2 2 9 True
8 27 0 6 10 True
9 52 2 3 16 True ]
jerry_matches = match_data(apikey, jerry_norms)
jerry_matches
[ assists baronKills bountyLevel champLevel championName \
0 10 0 7 16 Sion
1 24 0 0 14 Rammus
2 11 1 0 15 Gwen
3 12 0 2 15 Jinx
4 22 0 0 14 Morgana
5 5 0 0 16 Udyr
6 9 0 0 13 Trundle
7 5 0 0 14 TwistedFate
8 8 0 0 13 Kaisa
9 9 0 0 12 Nautilus
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 5455 5938 5455
1 719 22468 719
2 3519 10038 3519
3 15109 27417 15109
4 2655 15695 2655
5 3566 8563 3566
6 565 5785 565
7 185 1269 185
8 1757 2295 1757
9 0 582 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 4 3 0 False True
1 7 3 3 True False
2 5 0 0 True False
3 3 0 0 True False
4 5 2 0 True False
5 6 0 0 False False
6 10 2 1 False False
7 9 0 0 False False
8 8 0 0 False False
9 10 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False True False
3 True False False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 11849 TOP 1
1 False 10317 JUNGLE 0
2 False 13897 MIDDLE 0
3 False 12639 BOTTOM 1
4 False 10806 UTILITY 1
5 False 13509 TOP 0
6 False 10055 JUNGLE 0
7 False 9045 MIDDLE 0
8 False 8224 BOTTOM 0
9 False 7073 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 1 0 2033 3047 3068 3075 3077
1 0 0 6664 3075 0 3067 3047
2 2 0 3070 0 0 0 0
3 3 0 1055 6672 3006 3085 1038
4 3 0 3853 3157 6653 1026 3117
5 0 4 2033 6693 3140 3158 6609
6 0 4 3078 2031 3006 3153 1033
7 0 4 2033 6656 3100 3020 2015
8 0 4 6672 3006 6676 1055 0
9 0 4 3068 3047 2055 3076 1011
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 0 3340 2 10 7 2
1 3082 3340 1 5 4 1
2 0 3340 2 13 10 2
3 1037 3340 3 8 3 2
4 2055 3364 3 7 3 2
5 3508 3340 2 9 4 2
6 3051 3340 2 6 2 1
7 0 3340 1 5 2 1
8 0 3340 0 2 0 1
9 3860 3364 0 2 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 677 37221 5390
1 940 61429 15545
2 866 68343 13732
3 977 1618 364
4 493 59217 19635
5 652 297 297
6 504 5334 1499
7 485 91815 15850
8 372 8623 2121
9 574 15960 5703
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 2374 4 0 1
1 7903 80 0 0
2 7977 43 0 0
3 1921 12 0 1
4 6111 0 0 1
5 9701 8 1 0
6 15441 87 1 0
7 10961 0 1 0
8 8961 4 1 0
9 11131 0 1 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 63513 9114 15191
1 19182 2566 18037
2 32866 3887 16057
3 138728 16132 12601
4 6979 1613 8543
5 120792 16308 14178
6 87470 14533 16840
7 12187 2908 9155
8 82763 6379 8205
9 6923 1938 7791
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 SOLO 4 4 5 7
1 NONE 17 11 5 4
2 DUO 4 14 3 4
3 DUO 4 7 5 4
4 SUPPORT 7 14 5 4
5 NONE 5 4 3 12
6 NONE 4 4 14 11
7 SOLO 4 4 5 14
8 CARRY 5 7 4 4
9 SUPPORT 7 14 3 4
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 100 very baked False 100 TOP
1 192 zDevin False 100 JUNGLE
2 131 Grizzlier False 100 MIDDLE
3 135 jieshika False 100 BOTTOM
4 258 TheWonderBucket False 100 UTILITY
5 27 RyeBreadPitt False 200 TOP
6 357 Rotome False 200 JUNGLE
7 186 Coolgum15 False 200 MIDDLE
8 186 Thick2BThighs False 200 BOTTOM
9 91 Dublaiar False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 29 1702 100878 14649
1 49 1702 95628 18891
2 9 1702 140360 23744
3 26 1702 155398 19388
4 66 1702 70775 21978
5 33 1702 124878 16922
6 26 1702 99430 16946
7 37 1702 107946 19678
8 0 1702 97286 9296
9 43 1702 29588 8662
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 18154 4933 130 531
1 28002 8638 16 679
2 24471 9288 136 100
3 14718 6398 160 140
4 15339 5814 43 89
5 25184 6272 179 112
6 35700 14901 24 406
7 22756 3884 128 180
8 17755 3903 155 0
9 21642 561 35 210
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 68 3 144
1 196 5 15016
2 152 1 39151
3 109 3 15051
4 113 1 4577
5 197 1 3787
6 237 1 6625
7 286 1 3943
8 149 3 5899
9 237 1 6703
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 144 588 0 2
1 780 2060 2 3
2 6124 436 3 3
3 2891 195 4 7
4 730 684 1 6
5 316 1305 0 1
6 913 3418 1 1
7 920 2639 0 0
8 795 588 0 0
9 1020 2718 0 0
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 1 13 3 0
1 1 27 3 2
2 1 16 0 1
3 1 6 0 0
4 1 48 3 1
5 11 13 0 1
6 11 25 2 2
7 11 11 0 0
8 11 9 0 1
9 11 26 2 3
wardsPlaced win
0 10 True
1 11 True
2 9 True
3 4 True
4 17 True
5 9 False
6 6 False
7 7 False
8 5 False
9 12 False ,
assists baronKills bountyLevel champLevel championName \
0 1 0 0 12 Jax
1 0 0 0 10 Zac
2 1 0 0 12 Orianna
3 2 0 0 11 KogMaw
4 4 0 0 10 Yuumi
5 5 0 6 14 Sion
6 9 0 1 11 Volibear
7 7 0 0 13 Lissandra
8 5 0 3 10 Samira
9 6 0 1 9 Nautilus
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 1174 1174 1174
1 0 2636 0
2 1390 2049 1390
3 2516 4528 2516
4 1026 1026 1026
5 10029 15237 10029
6 488 17438 488
7 2703 11258 2703
8 1793 7300 1793
9 297 4751 297
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 3 0 0 False False
1 3 2 0 False False
2 4 0 0 False False
3 4 0 0 False False
4 4 1 0 False False
5 2 0 0 True False
6 0 4 2 False True
7 2 0 0 True False
8 2 1 1 False False
9 1 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 5982 TOP 0
1 True 5958 JUNGLE 0
2 True 5300 MIDDLE 0
3 True 7503 BOTTOM 0
4 True 5334 UTILITY 0
5 True 11072 TOP 0
6 True 7329 JUNGLE 0
7 True 7908 MIDDLE 0
8 True 7679 BOTTOM 0
9 True 5634 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 0 1055 6632 3077 1001 1036
1 0 0 4633 2031 1052 1082 3020
2 0 0 6653 2033 3020 1052 0
3 0 0 1055 2003 6672 3006 1036
4 0 0 3853 0 6617 1052 2055
5 0 0 1054 3748 1001 3181 6660
6 0 0 3068 2031 3047 0 0
7 0 0 1056 3157 3020 6655 3070
8 0 0 6673 3006 3123 3134 1018
9 0 0 3190 3047 3076 3860 1028
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 0 3340 0 0 0 0
1 0 3364 0 2 0 1
2 0 3340 0 0 0 0
3 3086 3340 1 3 2 1
4 3114 3364 0 1 0 1
5 3105 3340 1 7 6 3
6 0 3340 0 1 0 1
7 0 3340 0 2 0 1
8 1055 3340 2 5 3 2
9 0 3364 1 3 2 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 473 10833 1285
1 844 53637 3633
2 788 46098 5453
3 505 26257 3711
4 505 9580 6445
5 577 8419 1998
6 0 35744 1312
7 921 81816 9251
8 727 2702 911
9 846 4127 2249
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 2424 8 0 0
1 3700 83 0 0
2 5376 0 0 0
3 3087 4 0 0
4 2727 0 0 0
5 6602 12 0 0
6 3101 101 0 0
7 5211 8 0 0
8 3225 4 0 0
9 3782 0 0 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 38742 3591 8144
1 14286 609 13981
2 10942 214 3932
3 49997 3950 5970
4 2382 365 3617
5 102289 10222 9993
6 38295 2048 7767
7 8138 376 2577
8 38897 4272 4434
9 6214 1088 2721
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 SOLO 1 12 2 4
1 NONE 3 4 11 11
2 SOLO 3 4 2 12
3 CARRY 3 7 3 4
4 SUPPORT 2 3 3 14
5 DUO 1 4 2 12
6 NONE 2 4 13 11
7 DUO 1 4 2 12
8 CARRY 3 7 3 4
9 SUPPORT 3 14 1 4
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 47 legisgey False 100 TOP
1 206 Welp SeeYaLater False 100 JUNGLE
2 52 chaxa False 100 MIDDLE
3 209 Pinkypinkster False 100 BOTTOM
4 251 Aleynsia False 100 UTILITY
5 27 RyeBreadPitt False 200 TOP
6 357 Rotome False 200 JUNGLE
7 186 Coolgum15 False 200 MIDDLE
8 186 Thick2BThighs False 200 BOTTOM
9 91 Dublaiar False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 5 1305 56708 4955
1 13 1305 73907 4695
2 11 1305 62601 5668
3 5 1305 84747 10626
4 12 1305 12289 7137
5 30 1305 118160 12748
6 8 1305 83714 3975
7 18 1305 95066 10036
8 2 1305 41780 5363
9 22 1305 18115 3790
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 10624 1281 101 24
1 19306 14932 9 339
2 9380 0 106 315
3 9380 2131 149 313
4 6508 3980 9 31
5 17433 970 161 390
6 11259 6073 18 205
7 8346 356 143 185
8 8365 2775 95 3
9 7778 948 25 65
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 46 1 7132
1 40 1 5983
2 135 0 5560
3 107 3 8492
4 70 5 326
5 68 1 7452
6 0 1 9674
7 35 1 5110
8 37 2 180
9 21 1 7772
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 77 56 1 1
1 452 1624 0 0
2 0 71 0 0
3 2964 322 0 0
4 326 163 0 0
5 527 837 3 3
6 614 390 0 0
7 408 557 2 2
8 180 705 1 2
9 452 1274 0 1
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 6 9 0 1
1 6 10 2 1
2 6 10 0 0
3 6 10 0 1
4 6 30 2 5
5 1 10 0 0
6 1 27 4 2
7 1 4 0 0
8 1 9 1 0
9 1 25 2 1
wardsPlaced win
0 6 False
1 3 False
2 7 False
3 6 False
4 10 False
5 7 True
6 10 True
7 3 True
8 7 True
9 11 True ,
assists baronKills bountyLevel champLevel championName \
0 4 0 2 16 Jax
1 8 1 5 17 Trundle
2 10 0 0 17 Yone
3 10 0 0 15 Aphelios
4 8 0 1 15 Lux
5 0 0 0 17 Mordekaiser
6 9 0 0 14 Rammus
7 6 0 0 15 Syndra
8 3 0 0 14 Jinx
9 6 0 0 13 Leona
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 4329 7783 4329
1 6552 43357 6552
2 3676 10628 3676
3 7793 26336 7793
4 3166 6707 3166
5 589 4667 589
6 0 655 0
7 0 0 0
8 0 0 0
9 0 40 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 2 0 False False
1 0 0 5 True False
2 6 2 0 False True
3 5 2 0 False False
4 3 1 0 False False
5 8 0 0 False False
6 6 0 0 False False
7 9 1 0 False False
8 6 0 0 False False
9 6 3 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False True False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 12004 TOP 0
1 False 12719 JUNGLE 1
2 False 12465 MIDDLE 0
3 False 13655 BOTTOM 1
4 False 12100 UTILITY 0
5 False 12289 TOP 0
6 False 8364 JUNGLE 0
7 False 10459 MIDDLE 0
8 False 10542 BOTTOM 0
9 False 6778 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 1 0 6632 3111 2033 3091 3044
1 1 0 3111 3748 1057 6632 1053
2 0 0 1055 3031 6673 3033 3006
3 1 0 3006 6672 6694 6676 3086
4 0 0 3853 6655 3020 4628 1058
5 0 2 3075 4637 1052 4633 3047
6 0 2 3047 6664 2031 3742 1033
7 0 2 2033 3157 6655 2055 3089
8 0 2 1037 6672 3006 3085 1018
9 0 2 3857 3047 3068 0 1057
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 1037 3340 2 6 2 1
1 3051 3340 1 5 5 1
2 0 3340 2 7 3 1
3 1055 3363 3 7 3 2
4 0 3364 1 10 7 1
5 1011 3340 2 8 4 2
6 1028 3340 0 3 0 1
7 0 3340 0 3 0 1
8 1038 3340 1 4 3 2
9 1028 3364 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 441 22297 4922
1 1867 6842 1137
2 542 17498 4494
3 1266 1015 536
4 1370 78837 21497
5 422 118940 16247
6 535 53353 8574
7 439 124416 11999
8 534 1489 478
9 535 13919 2751
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 9143 20 0 1
1 6019 167 0 1
2 12433 12 0 1
3 8231 18 0 0
4 6957 10 0 0
5 7274 11 1 0
6 6826 68 1 0
7 7927 4 1 0
8 6680 7 1 0
9 5260 1 1 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 87894 12260 11305
1 178857 8662 24408
2 116575 14748 13279
3 112681 14857 7413
4 4464 960 4031
5 22749 3000 22538
6 18654 2333 14390
7 7232 905 9257
8 104608 8762 11083
9 7292 1840 10478
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 SOLO 6 14 4 4
1 NONE 15 11 3 4
2 SOLO 7 14 3 4
3 CARRY 3 7 3 4
4 SUPPORT 8 14 3 4
5 SOLO 3 4 7 14
6 NONE 3 4 17 11
7 SOLO 5 4 4 14
8 CARRY 6 7 5 4
9 SUPPORT 4 14 4 4
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 224 mapmusic False 100 TOP
1 212 RD Mickey False 100 JUNGLE
2 339 Swomp03 False 100 MIDDLE
3 148 Life Evanescent False 100 BOTTOM
4 479 Cats Own Earth False 100 UTILITY
5 27 RyeBreadPitt False 200 TOP
6 357 Rotome False 200 JUNGLE
7 186 Coolgum15 False 200 MIDDLE
8 354 Hero Øf Time False 200 BOTTOM
9 186 Thick2BThighs False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 25 1872 116625 19216
1 12 1872 203871 11302
2 27 1872 141151 22584
3 16 1872 136791 18226
4 60 1872 85121 24077
5 7 1872 152435 22489
6 46 1872 76956 12022
7 26 1872 132516 13519
8 16 1872 128933 10162
9 35 1872 27709 5275
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 22284 5261 144 137
1 31840 21731 35 319
2 27289 10022 154 119
3 16842 4075 141 177
4 11545 2149 59 266
5 32816 9030 200 61
6 24051 4424 23 495
7 18564 1760 216 266
8 18565 4061 168 153
9 19050 938 47 67
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 176 1 6433
1 0 1 18170
2 219 1 7076
3 161 2 23094
4 121 1 1819
5 262 1 10746
6 180 1 4949
7 338 1 867
8 112 3 22834
9 140 4 6496
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 2032 1836 1 2
1 1502 1412 4 4
2 3341 1575 0 2
3 2832 1197 5 5
4 1619 556 0 3
5 3241 3002 0 0
6 1115 2834 0 0
7 615 1379 0 0
8 921 801 0 0
9 684 3311 0 0
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 0 30 2 1
1 0 18 0 0
2 0 32 2 1
3 0 23 2 2
4 0 40 1 1
5 10 16 0 2
6 10 14 0 2
7 10 8 2 0
8 10 6 0 0
9 10 22 3 3
wardsPlaced win
0 10 True
1 9 True
2 12 True
3 9 True
4 16 True
5 10 False
6 6 False
7 4 False
8 4 False
9 11 False ,
assists baronKills bountyLevel champLevel championName \
0 4 0 0 11 Pantheon
1 0 0 2 11 Volibear
2 1 0 1 12 Zoe
3 3 0 0 10 Vayne
4 6 0 0 10 Thresh
5 1 0 0 14 Viego
6 8 0 2 11 Morgana
7 3 0 2 13 Syndra
8 3 0 1 10 Draven
9 4 0 0 10 Leona
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 113 2086 113
1 106 9502 106
2 1007 1007 1007
3 2578 5008 2578
4 298 298 298
5 5772 18320 5772
6 414 9634 414
7 2087 5128 2087
8 3096 9336 3096
9 623 2127 623
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 0 0 True False
1 2 3 0 False True
2 3 3 0 False False
3 4 1 0 False False
4 2 5 0 False False
5 3 0 0 False False
6 1 1 3 False False
7 1 2 0 False False
8 3 1 0 False False
9 2 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 6108 TOP 0
1 True 7567 JUNGLE 0
2 True 7344 MIDDLE 0
3 True 6766 BOTTOM 0
4 True 4812 UTILITY 0
5 True 10892 TOP 0
6 True 7353 JUNGLE 0
7 True 7703 MIDDLE 0
8 True 8394 BOTTOM 0
9 True 4995 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 0 2033 6630 3047 3076 0
1 0 0 2055 3047 6632 3082 1036
2 0 0 6655 2033 1082 3020 0
3 0 0 1055 6672 2055 3006 1042
4 0 0 3855 1028 3190 3117 0
5 0 0 1055 1037 3153 6672 3044
6 0 0 2031 6656 3020 1052 0
7 0 0 2033 2421 3020 6655 0
8 0 0 6672 0 3134 3006 0
9 0 0 3857 3047 2055 3105 1028
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 0 3340 0 1 0 1
1 3067 3364 2 4 2 2
2 0 3363 1 3 2 1
3 1053 3340 0 2 0 1
4 0 3364 0 0 0 0
5 3006 3340 2 9 7 3
6 0 3340 1 2 2 2
7 0 3340 1 3 2 1
8 0 3340 0 3 0 1
9 1029 3364 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 424 1719 266
1 704 39754 181
2 628 55949 4596
3 590 0 0
4 1119 8143 2136
5 520 4054 1112
6 699 59708 4730
7 524 71947 4457
8 751 488 290
9 643 4209 1218
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 2704 0 0 0
1 2192 115 0 0
2 3225 0 0 0
3 1852 1 0 0
4 2532 0 0 0
5 2900 4 0 0
6 3154 112 0 0
7 1160 0 0 0
8 1334 0 0 0
9 1037 0 0 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 52225 6095 10261
1 54201 2837 12180
2 8909 459 2579
3 37151 3080 6248
4 6255 676 5369
5 99747 13161 11281
6 15402 580 12087
7 8470 531 1770
8 71294 6833 4188
9 6365 1490 5283
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 SOLO 2 12 2 4
1 NONE 3 4 9 11
2 SOLO 4 14 3 4
3 CARRY 2 4 2 7
4 SUPPORT 5 3 6 4
5 NONE 3 4 5 14
6 NONE 2 4 11 11
7 SOLO 2 4 2 14
8 CARRY 0 12 3 4
9 SUPPORT 4 14 2 4
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 247 edaimonia False 100 TOP
1 201 Jaymeeee False 100 JUNGLE
2 192 slimmenycricket False 100 MIDDLE
3 398 Dalodid False 100 BOTTOM
4 200 riktiktak False 100 UTILITY
5 27 RyeBreadPitt False 200 TOP
6 357 Rotome False 200 JUNGLE
7 186 Coolgum15 False 200 MIDDLE
8 354 Hero Øf Time False 200 BOTTOM
9 186 Thick2BThighs False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 11 1241 54942 6361
1 6 1241 104018 3332
2 8 1241 65992 6122
3 2 1241 50844 4966
4 13 1241 18243 2813
5 13 1241 124493 15813
6 23 1241 82357 5747
7 14 1241 80584 5154
8 5 1241 83217 7436
9 19 1241 16127 3177
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 14218 420 108 27
1 14979 5465 6 417
2 6035 995 129 33
3 8760 1617 125 2
4 8073 395 38 74
5 14820 5857 146 80
6 15358 9559 2 213
7 3181 631 141 230
8 6348 858 149 51
9 7754 334 25 36
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 170 2 997
1 57 1 10061
2 77 1 1134
3 67 2 13693
4 33 3 3843
5 84 1 20691
6 21 1 7246
7 27 1 166
8 81 1 11435
9 51 2 5552
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 0 1252 0 0
1 313 606 0 0
2 1066 230 0 0
3 1885 660 1 1
4 0 171 0 0
5 1539 638 3 3
6 436 116 0 1
7 166 250 1 2
8 312 826 0 1
9 467 1433 1 1
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 5 12 0 1
1 5 18 5 1
2 5 19 4 1
3 5 12 3 0
4 5 35 5 4
5 1 9 2 0
6 1 13 1 1
7 1 17 2 2
8 1 8 1 1
9 1 12 1 0
wardsPlaced win
0 6 False
1 4 False
2 9 False
3 7 False
4 15 False
5 7 True
6 7 True
7 8 True
8 6 True
9 8 True ,
assists baronKills bountyLevel champLevel championName \
0 8 0 3 18 Lucian
1 8 0 1 18 Trundle
2 7 1 0 18 Malzahar
3 7 0 0 18 Ziggs
4 14 0 1 17 Teemo
5 5 0 0 18 Udyr
6 5 0 0 15 FiddleSticks
7 4 1 2 18 Veigar
8 7 0 0 17 Ezreal
9 6 0 0 14 Nami
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 5439 12231 5439
1 2560 44003 2560
2 1050 19219 1050
3 31375 45695 31375
4 174 6570 174
5 13392 24954 13392
6 1200 14541 1200
7 5587 13366 5587
8 749 7574 749
9 1235 2875 1235
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 14 0 0 False True
1 6 4 3 False False
2 8 1 2 False False
3 1 1 0 False False
4 1 16 0 False False
5 8 0 0 False False
6 11 0 1 False False
7 5 2 0 False False
8 8 0 0 False False
9 7 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 True False False
1 True False False
2 False False False
3 False True False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 18449 TOP 0
1 False 16404 JUNGLE 0
2 False 16965 MIDDLE 0
3 False 18287 BOTTOM 1
4 False 11819 UTILITY 0
5 False 20073 TOP 2
6 False 12430 JUNGLE 0
7 False 16260 MIDDLE 0
8 False 13030 BOTTOM 0
9 False 8215 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 2 6675 6671 6694 3006 3508
1 1 2 6632 3067 3153 3748 3065
2 1 2 3135 3020 6653 3116 4637
3 1 2 6656 3157 3135 3040 3089
4 0 2 6653 3157 3853 2055 3117
5 2 1 3065 6693 6035 3508 3181
6 0 1 3152 3157 3020 3135 2031
7 1 1 1082 6656 3157 3020 3089
8 0 1 3042 6632 3508 3158 3133
9 1 1 3853 3006 4005 3050 4642
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 1038 3340 2 8 3 1
1 3111 3364 2 8 3 1
2 1058 3340 3 9 3 1
3 3020 3363 1 11 11 4
4 3165 3364 1 3 2 1
5 3111 3340 2 10 6 1
6 1058 3330 2 7 2 2
7 3135 3363 2 9 5 2
8 3035 3340 0 3 0 1
9 1052 3364 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 357 13226 2710
1 734 9602 2985
2 475 217598 30609
3 2520 271848 41408
4 1152 82078 20215
5 1145 33 0
6 472 121719 12405
7 765 212766 21734
8 542 43059 10688
9 1325 12986 4667
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 15876 51 0 1
1 17580 186 0 0
2 9315 45 0 0
3 7025 13 0 1
4 4078 4 0 0
5 16128 42 1 0
6 23741 116 1 0
7 20473 26 1 0
8 23868 0 1 0
9 16754 0 1 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 288295 30352 20462
1 197259 10597 41473
2 24309 439 19298
3 16542 101 6049
4 7774 1074 6049
5 280627 34388 32369
6 7408 0 18512
7 18322 676 7770
8 151611 15750 10707
9 1694 132 5733
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 SOLO 4 14 6 4
1 NONE 23 11 4 4
2 SOLO 5 14 7 4
3 SOLO 4 12 4 4
4 NONE 5 14 4 4
5 SOLO 7 4 5 12
6 NONE 5 11 6 4
7 SOLO 4 4 4 12
8 CARRY 6 7 1 4
9 SUPPORT 4 4 1 3
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 391 DogPooGame False 100 TOP
1 137 Isaaclel False 100 JUNGLE
2 48 biggskiller False 100 MIDDLE
3 308 ImmortalRage False 100 BOTTOM
4 290 CoughingPanda False 100 UTILITY
5 26 RyeBreadPitt False 200 TOP
6 137 SlothoftheAbyss False 200 JUNGLE
7 356 Rotome False 200 MIDDLE
8 193 MoistureCreature False 200 BOTTOM
9 42 laineybon False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 5 2524 319165 34327
1 21 2524 231340 15117
2 54 2524 252606 32698
3 20 2524 329438 41609
4 43 2524 91181 22438
5 22 2524 298424 34633
6 21 2524 132474 12690
7 23 2524 233976 22411
8 0 2524 200231 26583
9 18 2524 14680 4800
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 36523 3792 252 176
1 59241 27255 46 520
2 28916 3113 235 662
3 13075 1973 292 399
4 10127 2305 66 514
5 50767 12814 269 91
6 43208 14434 19 452
7 29255 4692 234 148
8 35507 4714 206 9
9 23016 11730 9 136
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 485 1 17643
1 286 1 24479
2 297 1 10698
3 0 1 41047
4 31 1 1328
5 329 1 17763
6 394 1 3345
7 210 1 2888
8 296 4 5560
9 317 5 0
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 1264 184 0 3
1 1535 187 1 4
2 1648 302 0 1
3 100 0 6 6
4 1148 0 0 0
5 245 2269 4 5
6 285 954 1 1
7 0 1012 1 4
8 144 931 0 0
9 0 527 1 3
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 7 25 0 1
1 7 28 6 3
2 7 37 1 0
3 7 37 1 2
4 7 121 19 14
5 9 32 0 6
6 9 52 0 4
7 9 26 3 2
8 9 21 0 1
9 9 51 0 4
wardsPlaced win
0 14 True
1 5 True
2 16 True
3 13 True
4 54 True
5 15 False
6 7 False
7 9 False
8 13 False
9 24 False ,
assists baronKills bountyLevel champLevel championName \
0 4 0 2 15 Aatrox
1 5 1 0 15 Kindred
2 6 0 1 14 Ahri
3 7 0 0 14 Yasuo
4 10 0 0 12 DrMundo
5 5 0 1 14 Soraka
6 5 0 0 12 FiddleSticks
7 3 0 2 16 Kayle
8 8 0 1 13 Jhin
9 3 0 0 12 Zyra
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3230 9482 3230
1 5496 59811 5496
2 2852 6899 2852
3 4107 6003 4107
4 3635 3635 3635
5 1747 3397 1747
6 0 1246 0
7 0 0 0
8 0 140 0
9 0 0 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 2 1 0 False False
1 1 3 4 False True
2 2 1 0 False False
3 6 0 0 False False
4 5 0 0 False False
5 6 0 0 False False
6 11 0 0 False False
7 1 0 0 False False
8 4 1 0 False False
9 4 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 True False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 10510 TOP 0
1 False 13174 JUNGLE 3
2 False 8052 MIDDLE 0
3 False 10403 BOTTOM 0
4 False 8694 UTILITY 0
5 False 8185 TOP 0
6 False 6233 JUNGLE 0
7 False 12896 MIDDLE 0
8 False 7216 BOTTOM 0
9 False 7127 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 1 0 1055 3047 6630 3053 3133
1 3 0 6672 6676 0 3006 3031
2 2 0 2033 6655 2055 3158 4629
3 2 0 3031 3006 6673 3123 1018
4 2 0 6662 3857 3111 3083 1028
5 0 3 1055 3153 3006 6670 1018
6 0 3 3152 2031 3020 3191 0
7 0 3 1054 1082 3006 3115 4633
8 0 3 6671 3009 3123 0 0
9 0 3 3853 2421 6653 3020 3191
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 1031 3340 2 5 2 1
1 1053 3340 1 10 10 2
2 0 3340 0 2 0 1
3 1042 3340 0 3 0 1
4 0 3364 1 6 3 1
5 1037 3340 1 4 2 1
6 0 3330 0 0 0 0
7 3089 3363 2 7 5 2
8 1055 3340 0 1 0 1
9 1052 3340 1 4 4 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 572 0 0
1 1457 31637 2372
2 834 45493 5461
3 426 7843 913
4 583 22237 12005
5 374 33854 5982
6 282 66822 3625
7 1130 124188 14348
8 1027 3608 784
9 1010 57307 16396
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 11741 8 0 0
1 5597 163 0 1
2 4262 8 0 0
3 8803 12 0 0
4 12992 0 0 0
5 2587 8 1 0
6 6817 67 1 0
7 5905 4 1 0
8 2867 0 1 0
9 4013 0 1 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 94470 12825 11427
1 138593 14669 16397
2 13614 712 5165
3 113678 9150 6803
4 19485 3599 13274
5 42288 5015 12371
6 4742 88 16870
7 40205 3567 10940
8 65515 9027 10529
9 3664 1165 6289
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 SOLO 3 4 3 12
1 NONE 14 11 3 4
2 SOLO 2 12 1 4
3 CARRY 3 4 4 14
4 SUPPORT 4 4 4 3
5 SOLO 4 4 4 14
6 NONE 9 11 4 4
7 SOLO 2 4 2 12
8 CARRY 5 7 2 4
9 SUPPORT 4 4 4 14
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 190 MonkeyBsness False 100 TOP
1 90 Mythicsmyazz False 100 JUNGLE
2 135 Arymilla False 100 MIDDLE
3 210 SKT T1 Vip3R False 100 BOTTOM
4 205 xXSUPZXx False 100 UTILITY
5 26 RyeBreadPitt False 200 TOP
6 137 SlothoftheAbyss False 200 JUNGLE
7 356 Rotome False 200 MIDDLE
8 91 Dublaiar False 200 BOTTOM
9 186 Coolgum15 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 12 1571 100834 12825
1 7 1571 203091 19610
2 6 1571 77773 7352
3 24 1571 123689 10662
4 19 1571 45836 15605
5 34 1571 82122 11936
6 8 1571 76868 3979
7 6 1571 166516 18185
8 19 1571 69123 9812
9 31 1571 61441 18032
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 23421 11843 151 206
1 22577 14385 36 254
2 9510 1978 118 46
3 16124 3630 175 109
4 26773 8123 35 287
5 16017 5634 124 292
6 24514 6583 24 230
7 18064 6668 261 185
8 14227 3236 105 87
9 10714 1023 37 209
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 51 1 6365
1 48 13 32861
2 68 1 18665
3 161 1 2168
4 150 1 4113
5 185 5 5979
6 261 1 5303
7 41 5 2121
8 133 4 0
9 130 1 470
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 0 252 2 4
1 2567 582 3 6
2 1178 82 2 7
3 598 517 1 5
4 0 507 2 3
5 938 1058 0 0
6 265 825 0 0
7 269 1217 0 0
8 0 830 0 0
9 470 411 0 0
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 0 11 1 0
1 0 38 3 3
2 0 23 2 0
3 0 8 0 0
4 0 27 0 3
5 11 12 0 1
6 11 17 0 4
7 11 8 1 1
8 11 10 1 0
9 11 23 0 0
wardsPlaced win
0 8 True
1 12 True
2 8 True
3 6 True
4 14 True
5 8 False
6 4 False
7 5 False
8 7 False
9 12 False ,
assists baronKills bountyLevel champLevel championName \
0 0 0 0 8 Sett
1 0 0 0 8 MasterYi
2 0 0 0 10 Viktor
3 1 0 0 8 Draven
4 1 0 0 8 Karma
5 1 0 6 11 Udyr
6 5 0 4 10 FiddleSticks
7 2 0 7 11 Pantheon
8 4 0 1 8 Jhin
9 3 0 0 8 Xerath
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 0 0 0
1 0 2419 0
2 515 515 515
3 411 411 411
4 489 489 489
5 4036 4036 4036
6 0 6695 0
7 0 1979 0
8 0 1153 0
9 0 591 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 0 0 False False
1 5 1 0 False False
2 4 0 0 False False
3 3 2 0 False False
4 1 1 0 False False
5 0 1 0 False True
6 1 0 2 False False
7 0 2 0 False False
8 0 0 0 False False
9 0 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 3140 TOP 0
1 True 4308 JUNGLE 0
2 True 3889 MIDDLE 0
3 True 5054 BOTTOM 0
4 True 2926 UTILITY 0
5 True 7454 TOP 0
6 True 5899 JUNGLE 0
7 True 6377 MIDDLE 0
8 True 4212 BOTTOM 0
9 True 3658 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 0 3051 3047 3067 0 0
1 0 0 3006 2031 1037 0 0
2 0 0 3108 1056 1029 3802 0
3 0 0 1055 1001 0 6670 1053
4 0 0 3859 4642 2010 0 1001
5 0 0 2033 6693 1083 0 3158
6 0 0 0 2031 3020 1052 1052
7 0 0 6692 2033 3047 1036 1036
8 0 0 6670 3009 0 0 0
9 0 0 3853 3802 3020 2055 0
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 0 3340 0 0 0 0
1 6670 3364 0 1 0 1
2 0 3340 0 0 0 0
3 1018 3340 0 0 0 0
4 3067 3340 0 0 0 0
5 0 3340 1 6 6 1
6 0 3330 1 4 4 2
7 0 3340 1 7 7 2
8 1055 3340 0 1 0 1
9 0 3364 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 218 0 0
1 393 4185 0
2 386 29390 3611
3 603 0 0
4 904 6603 2242
5 0 119 119
6 443 58134 5124
7 0 267 110
8 0 1021 106
9 0 15243 5949
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 706 0 0 0
1 3006 72 0 0
2 1191 0 0 0
3 5162 0 0 0
4 2356 0 0 0
5 1 4 0 0
6 2192 87 0 0
7 2566 0 0 0
8 927 0 0 0
9 1062 0 0 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 21455 5619 8148
1 46365 3294 9278
2 7643 502 6343
3 36550 3227 3429
4 2565 359 2671
5 45974 8150 8240
6 5100 38 9783
7 51725 9429 3241
8 28046 2823 1456
9 1326 396 1895
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 SUPPORT 2 4 2 12
1 SUPPORT 2 4 8 11
2 SUPPORT 1 4 2 12
3 DUO 2 7 2 4
4 SUPPORT 1 14 1 4
5 SUPPORT 2 4 2 12
6 SUPPORT 9 11 2 4
7 DUO 2 4 2 14
8 SUPPORT 0 7 0 4
9 SUPPORT 2 4 1 21
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 250 fortmadeof False 100 TOP
1 293 notpk False 100 JUNGLE
2 268 s h ö e False 100 MIDDLE
3 308 OwU UwO False 100 BOTTOM
4 311 Marcrocker False 100 UTILITY
5 26 RyeBreadPitt False 200 TOP
6 137 SlothoftheAbyss False 200 JUNGLE
7 356 Rotome False 200 MIDDLE
8 91 Dublaiar False 200 BOTTOM
9 186 Coolgum15 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 8 918 25121 5698
1 3 918 61059 4236
2 6 918 37033 4113
3 2 918 39155 3227
4 15 918 12469 2811
5 13 918 47981 8317
6 16 918 68645 5383
7 12 918 52641 9876
8 8 918 29067 2929
9 17 918 16570 6346
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 8918 201 48 52
1 12345 3936 3 107
2 7860 313 83 55
3 8660 1714 127 10
4 5114 153 22 97
5 8538 3938 102 39
6 12752 8884 6 272
7 5966 1193 106 38
8 2383 579 59 48
9 2958 135 13 116
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 93 1 3666
1 92 1 10507
2 88 1 0
3 37 2 2605
4 0 2 3300
5 0 1 1888
6 14 1 5410
7 0 1 648
8 0 1 0
9 0 1 0
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 79 64 0 0
1 942 60 0 0
2 0 324 0 0
3 0 68 0 0
4 210 86 0 0
5 48 296 1 1
6 220 776 0 0
7 336 158 0 0
8 0 0 0 0
9 0 0 0 0
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 1 5 0 0
1 1 14 2 1
2 1 2 0 0
3 1 11 2 0
4 1 10 1 2
5 0 7 1 0
6 0 13 0 2
7 0 8 2 1
8 0 3 0 0
9 0 8 2 0
wardsPlaced win
0 3 False
1 3 False
2 3 False
3 5 False
4 5 False
5 6 True
6 2 True
7 4 True
8 3 True
9 3 True ,
assists baronKills bountyLevel champLevel championName \
0 1 0 0 13 Yone
1 0 0 1 13 Volibear
2 1 0 0 13 Yasuo
3 1 0 0 10 Ashe
4 5 0 0 10 Senna
5 1 0 1 16 Viego
6 5 0 1 13 Poppy
7 3 0 4 13 Kayle
8 7 0 1 11 Jhin
9 7 0 1 12 Xerath
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3066 5166 3066
1 285 17363 285
2 1223 1223 1223
3 709 709 709
4 585 585 585
5 6134 10714 6134
6 2093 8833 2093
7 4965 6507 4965
8 2125 3270 2125
9 992 1952 992
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 10 1 0 False False
1 1 0 2 False False
2 6 0 0 False False
3 7 1 0 False False
4 5 1 0 False False
5 4 0 0 False True
6 1 0 1 False False
7 0 1 0 False False
8 3 0 0 False False
9 4 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 7612 TOP 0
1 True 9677 JUNGLE 0
2 True 8624 MIDDLE 0
3 True 6867 BOTTOM 0
4 True 5582 UTILITY 0
5 True 14649 TOP 0
6 True 7079 JUNGLE 0
7 True 9755 MIDDLE 0
8 True 7992 BOTTOM 0
9 True 7148 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 0 1055 6673 1053 3006 1038
1 0 0 3068 2031 3047 3075 3044
2 0 0 1055 3006 6673 1018 1037
3 0 0 6671 2031 3006 2055 3070
4 0 0 3006 6632 0 3864 0
5 0 0 3181 6609 3006 0 3153
6 0 0 6632 2031 3047 1031 3066
7 0 0 1054 3115 1082 3006 2055
8 0 0 6671 3009 3134 1037 1018
9 0 0 3853 6655 3020 1052 1058
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 0 3363 0 1 0 1
1 1037 3340 1 6 5 2
2 1038 3340 1 3 2 2
3 1042 3340 0 2 0 1
4 0 3364 0 0 0 0
5 6672 3340 3 17 7 2
6 0 3340 0 1 0 1
7 4633 3363 1 4 4 1
8 1055 3340 1 3 2 2
9 0 3340 1 4 3 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 177 14111 2268
1 1165 52378 4140
2 456 6340 773
3 481 1531 1431
4 484 0 0
5 516 6188 2198
6 223 9989 361
7 0 60572 4236
8 501 1678 311
9 496 46069 17717
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 2963 9 0 0
1 3621 104 0 0
2 3434 6 0 0
3 9386 8 0 0
4 6789 0 0 0
5 4048 12 0 0
6 2487 110 0 0
7 1363 9 0 0
8 1136 4 0 0
9 916 0 0 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 92249 5941 16206
1 44613 5473 13640
2 100503 7113 9333
3 70154 10999 6256
4 11016 5340 5006
5 146895 24519 23683
6 80451 3157 11085
7 27986 1317 7686
8 63749 5052 8181
9 1197 251 6970
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 SOLO 2 4 3 12
1 NONE 14 11 3 4
2 SOLO 2 4 3 14
3 CARRY 4 7 3 4
4 SUPPORT 3 3 2 4
5 SOLO 4 4 6 14
6 NONE 13 11 4 4
7 SOLO 1 4 3 12
8 CARRY 2 7 1 4
9 SUPPORT 3 4 4 21
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 394 YoRHa KnightØ False 100 TOP
1 91 GerberLord False 100 JUNGLE
2 184 Kolos False 100 MIDDLE
3 71 MyNamesGrey False 100 BOTTOM
4 189 KrashBandiScoot False 100 UTILITY
5 26 RyeBreadPitt False 200 TOP
6 137 SlothoftheAbyss False 200 JUNGLE
7 356 Rotome False 200 MIDDLE
8 91 Dublaiar False 200 BOTTOM
9 186 Coolgum15 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 10 1420 116020 9029
1 26 1420 107811 10925
2 11 1420 114058 8307
3 40 1420 71906 12651
4 23 1420 11016 5340
5 16 1420 163881 29476
6 13 1420 101236 3785
7 3 1420 97179 5553
8 22 1420 65643 5364
9 29 1420 47267 17968
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 19948 2898 144 106
1 18264 8144 31 477
2 13409 1676 168 78
3 15907 1345 122 615
4 12133 7088 5 84
5 29696 12551 180 75
6 13928 7446 12 519
7 9227 3658 174 158
8 9433 2133 118 74
9 8045 1 25 125
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 250 1 9659
1 36 1 10820
2 197 1 7215
3 157 2 220
4 113 4 0
5 130 1 10797
6 10 1 10795
7 0 5 8620
8 51 2 216
9 104 1 0
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 819 778 1 1
1 1312 1002 0 0
2 420 641 1 1
3 220 265 0 0
4 0 338 0 0
5 2758 1964 1 2
6 267 356 1 3
7 0 176 2 3
8 0 116 1 3
9 0 158 0 2
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 5 11 1 0
1 5 17 0 1
2 5 13 0 2
3 5 12 3 1
4 5 19 1 1
5 2 12 1 0
6 2 10 0 1
7 2 10 2 0
8 2 11 0 0
9 2 11 0 0
wardsPlaced win
0 8 False
1 6 False
2 6 False
3 5 False
4 6 False
5 8 True
6 6 True
7 4 True
8 7 True
9 7 True ,
assists baronKills bountyLevel champLevel championName \
0 4 0 0 16 Garen
1 7 0 0 15 Kayn
2 9 0 1 18 Kayle
3 4 0 1 14 Tristana
4 14 0 0 13 Soraka
5 4 0 4 18 Nocturne
6 8 0 0 17 Elise
7 7 1 0 18 Yone
8 7 0 0 15 Twitch
9 11 0 0 14 Braum
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 1620 3513 1620
1 0 5981 0
2 1656 9204 1656
3 3044 3044 3044
4 412 412 412
5 9670 34540 9670
6 186 32801 186
7 3098 21500 3098
8 4746 10408 4746
9 1243 2124 1243
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 10 0 0 False False
1 10 0 0 False False
2 5 2 0 False False
3 9 1 0 False False
4 9 0 0 False False
5 8 0 0 False True
6 4 1 3 False False
7 3 0 1 False False
8 9 0 1 False False
9 6 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 11614 TOP 0
1 True 12970 JUNGLE 0
2 True 14810 MIDDLE 0
3 True 12716 BOTTOM 0
4 True 8153 UTILITY 0
5 True 18464 TOP 1
6 True 13036 JUNGLE 0
7 True 16806 MIDDLE 0
8 True 12182 BOTTOM 0
9 True 7594 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 1 6631 3075 1054 3006 3742
1 0 1 6691 6695 3117 6676 3033
2 0 1 3115 3157 1082 3006 4633
3 0 1 6672 3006 3046 3036 3086
4 0 1 3853 6617 3158 6616 3114
5 1 0 3053 6631 3026 3153 6609
6 1 0 3157 4636 3100 3020 3916
7 0 0 6333 3006 6673 3046 3031
8 0 0 3006 3115 1056 3089 4633
9 1 0 3855 3050 3117 3190 3067
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 3082 3340 1 6 2 1
1 0 3340 2 8 4 2
2 3916 3363 2 6 2 1
3 3123 3363 2 9 3 1
4 1028 3364 0 1 0 1
5 3047 3363 4 15 4 2
6 1026 3364 2 7 3 2
7 3033 3340 3 13 7 2
8 1082 3340 3 8 2 2
9 0 3340 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 298 2543 774
1 508 7427 2972
2 966 137035 15433
3 659 14964 1901
4 448 16243 7127
5 337 2840 2431
6 1132 117497 15242
7 1342 30250 7524
8 479 38753 5822
9 797 5162 3472
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 7844 35 0 0
1 10558 110 0 0
2 5059 25 0 0
3 7764 8 0 0
4 5364 0 0 0
5 8761 28 0 0
6 4913 156 0 0
7 7565 27 0 0
8 4008 12 0 0
9 5861 4 0 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 144919 16563 25433
1 142751 18774 20099
2 44371 3734 19705
3 88733 18109 10775
4 1497 730 10976
5 245895 33698 27579
6 26968 1485 19088
7 185950 24144 18074
8 44744 7796 15603
9 6388 718 11437
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 SOLO 4 4 1 12
1 NONE 19 11 5 4
2 SOLO 4 4 2 12
3 CARRY 6 7 4 4
4 SUPPORT 5 4 5 14
5 DUO 7 14 5 12
6 NONE 3 4 16 11
7 DUO 4 4 5 14
8 CARRY 4 14 5 4
9 SUPPORT 7 3 2 4
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 254 UPS Jin False 100 TOP
1 353 Hero Øf Time False 100 JUNGLE
2 356 Rotome False 100 MIDDLE
3 186 Thick2BThighs False 100 BOTTOM
4 135 Alece False 100 UTILITY
5 93 yinchelsey False 200 TOP
6 79 Big Cap Crescent False 200 JUNGLE
7 155 Yasuo Lord False 200 MIDDLE
8 306 THILL E BILL E False 200 BOTTOM
9 193 Neb Bigby False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 48 2096 163231 20631
1 10 2096 171520 23092
2 12 2096 208589 20269
3 4 2096 115401 22228
4 43 2096 18472 8589
5 168 2096 274130 37798
6 21 2096 164243 18080
7 29 2096 223979 36978
8 3 2096 102279 19943
9 24 2096 15758 4191
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 37691 1103 168 177
1 33800 10958 62 249
2 27588 8527 255 341
3 20362 3513 132 14
4 18793 15811 12 227
5 38573 13384 234 573
6 24863 13889 31 212
7 27823 11583 231 184
8 20740 5439 111 217
9 20242 1933 20 111
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 252 1 15768
1 292 1 21341
2 215 4 27182
3 253 2 11704
4 214 5 732
5 267 1 25394
6 96 1 19776
7 155 1 7778
8 201 1 18782
9 205 1 4207
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 3293 4413 0 0
1 1345 3142 0 0
2 1101 2823 0 0
3 2217 1822 1 1
4 732 2452 0 0
5 1668 2232 4 4
6 1352 861 0 1
7 5308 2182 2 3
8 6324 1128 2 3
9 0 2943 0 0
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 8 14 0 2
1 8 16 0 1
2 8 16 2 1
3 8 16 1 2
4 8 42 0 4
5 1 17 0 1
6 1 28 1 5
7 1 16 0 1
8 1 16 0 2
9 1 41 1 1
wardsPlaced win
0 6 False
1 8 False
2 11 False
3 9 False
4 16 False
5 9 True
6 6 True
7 10 True
8 9 True
9 23 True ,
assists baronKills bountyLevel champLevel championName \
0 1 0 2 11 Nasus
1 6 0 0 8 Shaco
2 0 0 1 9 Kayle
3 2 0 2 8 Jinx
4 4 0 0 6 Nami
5 0 0 0 9 Yorick
6 0 0 0 9 Nunu
7 0 0 0 9 Ahri
8 2 0 0 8 Xayah
9 4 0 0 7 Morgana
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3656 3656 3656
1 0 4230 0
2 1266 1266 1266
3 0 1209 0
4 0 42 0
5 1030 1030 1030
6 0 501 0
7 403 403 403
8 260 260 260
9 282 282 282
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 0 1 0 False False
1 2 1 1 True False
2 1 0 0 False True
3 1 0 0 False False
4 3 1 0 False False
5 2 0 0 False False
6 3 0 0 False False
7 1 1 0 False False
8 2 0 0 False False
9 2 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 5995 TOP 0
1 True 4729 JUNGLE 0
2 True 5141 MIDDLE 0
3 True 4113 BOTTOM 0
4 True 3454 UTILITY 0
5 True 3758 TOP 0
6 True 5186 JUNGLE 0
7 True 3139 MIDDLE 0
8 True 3987 BOTTOM 0
9 True 4383 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 0 3044 2033 3067 2423 3057
1 0 0 3068 2031 1042 0 0
2 0 0 1054 1082 3006 1043 1026
3 0 0 1055 6670 1018 0 0
4 0 0 3851 3009 0 0 4642
5 0 0 1001 3057 2033 2055 3067
6 0 0 3105 2031 6660 3047 0
7 0 0 1056 3802 0 0 0
8 0 0 1055 6670 1037 1018 1001
9 0 0 3851 3157 2010 2055 0
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 3111 3340 1 2 2 1
1 0 3364 0 1 0 1
2 1052 3340 1 4 3 1
3 0 3340 1 2 2 2
4 0 3364 0 0 0 0
5 0 3340 0 0 0 0
6 0 3340 1 3 3 1
7 0 3340 0 0 0 0
8 0 3340 1 2 2 1
9 3020 3364 1 2 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 0 4436 759
1 464 26241 1883
2 538 12243 1830
3 680 793 395
4 510 3619 2921
5 527 2923 1007
6 297 18795 1876
7 365 13760 1710
8 517 0 0
9 415 9041 3872
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 1007 0 0 0
1 2627 57 0 0
2 1433 0 0 0
3 1727 0 0 0
4 2222 0 0 0
5 947 0 0 0
6 3679 75 0 0
7 1022 0 0 0
8 2113 0 0 0
9 1774 0 0 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 41774 2504 5485
1 14946 1474 6298
2 13880 1314 2344
3 24588 3523 2416
4 2913 1709 2928
5 25245 3009 5454
6 15941 1131 8388
7 7075 583 1512
8 27366 3753 3155
9 3820 812 3998
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 DUO 1 12 1 6
1 SUPPORT 3 14 9 11
2 SUPPORT 2 4 2 12
3 SUPPORT 1 4 3 14
4 SUPPORT 1 4 3 3
5 DUO 1 12 1 4
6 SUPPORT 6 11 2 4
7 SUPPORT 1 4 0 14
8 SUPPORT 2 7 2 4
9 SUPPORT 2 4 2 14
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 208 lukelovecoke False 100 TOP
1 358 CulI False 100 JUNGLE
2 356 Rotome False 100 MIDDLE
3 135 Alece False 100 BOTTOM
4 251 Cronusamun False 100 UTILITY
5 403 brachie False 200 TOP
6 91 DaddyGavin3 False 200 JUNGLE
7 183 Shirø Nai False 200 MIDDLE
8 386 TøpNep False 200 BOTTOM
9 336 KXH7 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 7 829 46210 3263
1 10 829 46329 3899
2 3 829 28777 3256
3 8 829 32143 4210
4 13 829 6533 4630
5 2 829 28181 4017
6 14 829 54984 3353
7 9 829 27714 2934
8 6 829 27366 3753
9 19 829 13074 4896
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 6493 0 107 52
1 9172 3734 5 387
2 4223 1181 73 175
3 4222 653 55 16
4 5577 2108 4 50
5 6654 1028 77 63
6 12240 6613 12 138
7 2833 443 63 21
8 5379 1026 63 7
9 5887 622 16 28
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 0 0 0
1 39 1 5141
2 21 4 2654
3 21 1 6762
4 44 4 0
5 51 1 12
6 54 1 20248
7 14 1 6879
8 14 2 0
9 12 1 212
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 0 0 1 1
1 542 246 0 0
2 112 446 0 0
3 292 79 0 0
4 0 426 0 0
5 0 252 0 0
6 346 172 0 0
7 640 298 0 0
8 0 110 0 0
9 212 114 0 0
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 0 5 1 0
1 0 11 1 1
2 0 5 0 0
3 0 1 0 0
4 0 16 1 2
5 1 3 1 1
6 1 8 0 0
7 1 7 1 0
8 1 2 0 1
9 1 9 1 0
wardsPlaced win
0 4 True
1 2 True
2 3 True
3 2 True
4 7 True
5 1 False
6 3 False
7 5 False
8 1 False
9 5 False ,
assists baronKills bountyLevel champLevel championName \
0 3 0 0 15 Yasuo
1 10 0 0 15 Mordekaiser
2 8 0 0 16 Viego
3 3 0 0 14 Kalista
4 8 0 0 12 Seraphine
5 5 0 1 17 Yorick
6 16 0 4 16 Shaco
7 9 0 2 16 Pantheon
8 16 0 0 15 Caitlyn
9 22 0 0 13 Taric
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2025 5364 2025
1 0 20156 0
2 2155 8682 2155
3 776 1652 776
4 1013 1729 1013
5 15635 16222 15635
6 533 11116 533
7 5575 9801 5575
8 4717 5677 4717
9 1886 1886 1886
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 6 1 0 False False
1 5 5 1 False False
2 4 2 1 False False
3 8 3 0 False False
4 8 0 0 False False
5 6 0 0 False False
6 2 3 1 True False
7 3 0 1 False True
8 3 2 0 False False
9 4 2 0 True False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False True False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 13702 TOP 0
1 False 12338 JUNGLE 0
2 False 11429 MIDDLE 0
3 False 9071 BOTTOM 0
4 False 6804 UTILITY 0
5 False 13018 TOP 1
6 False 12469 JUNGLE 0
7 False 13985 MIDDLE 0
8 False 13820 BOTTOM 0
9 False 8144 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 1 3123 3006 1057 3046 6632
1 0 1 3222 3107 4633 3065 0
2 0 1 1054 3153 3006 6673 1038
3 0 1 6673 2055 3153 1055 3006
4 0 1 3853 6617 3020 6616 0
5 1 0 3047 6632 2033 3075 3748
6 0 0 6653 1037 4637 3020 3916
7 1 0 6333 6692 3047 3071 1037
8 0 0 6671 3123 1038 3095 3006
9 0 0 3190 3050 3860 3111 3082
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 3031 3340 2 8 3 3
1 1001 3364 1 7 6 3
2 1018 3340 0 1 0 1
3 1042 3363 0 2 0 1
4 0 3364 0 0 0 0
5 3082 3340 2 6 2 2
6 3134 3364 2 6 4 2
7 0 3340 4 10 3 1
8 3094 3363 2 8 5 3
9 1029 3364 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 1169 17359 1456
1 976 136663 19423
2 1007 4812 1011
3 578 428 0
4 558 29066 6116
5 632 19692 6208
6 899 138493 21709
7 1024 1490 864
8 1050 6476 2953
9 1020 5715 1905
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 10249 19 1 0
1 10633 107 1 0
2 5098 35 1 0
3 5166 0 1 0
4 4496 0 1 0
5 7658 0 0 1
6 6651 159 0 0
7 5848 12 0 1
8 3750 20 0 0
9 5716 0 0 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 172153 20121 18710
1 24380 1580 26759
2 150224 13805 19223
3 68981 4670 14934
4 3535 828 10951
5 124134 15533 19786
6 32695 1417 13753
7 127727 20512 12087
8 145887 23878 9432
9 5991 1081 10430
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 NONE 2 4 3 14
1 NONE 4 4 19 11
2 SOLO 3 4 1 12
3 CARRY 3 4 5 7
4 SUPPORT 2 4 3 3
5 SOLO 3 4 4 12
6 NONE 5 14 19 11
7 SOLO 4 4 2 14
8 CARRY 4 4 4 7
9 SUPPORT 6 14 3 4
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 223 BJballa10 False 100 TOP
1 251 Cronusamun False 100 JUNGLE
2 356 Rotome False 100 MIDDLE
3 151 E the PP False 100 BOTTOM
4 135 Alece False 100 UTILITY
5 290 Gruncle Moe False 200 TOP
6 353 Mushishi Ginko False 200 JUNGLE
7 39 urneighborrogers False 200 MIDDLE
8 238 EpicRasian False 200 BOTTOM
9 116 MOFO Richard False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 31 1922 196800 22320
1 11 1922 176994 23844
2 11 1922 160323 15294
3 20 1922 70187 4817
4 29 1922 33140 6944
5 7 1922 143888 21742
6 33 1922 195957 24518
7 20 1922 131232 21711
8 35 1922 160468 27820
9 22 1922 19157 3598
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 29871 8267 201 154
1 38435 16384 52 147
2 25288 4226 192 105
3 20263 2674 151 87
4 15689 3660 18 203
5 28939 9896 214 93
6 21149 8314 39 862
7 18953 6088 179 28
8 13843 4229 218 168
9 16799 9688 31 33
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 226 1 7288
1 119 2 15952
2 108 1 5286
3 206 3 776
4 235 5 538
5 233 1 61
6 60 1 24768
7 116 1 2014
8 78 3 8105
9 104 8 7450
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 742 911 0 1
1 2841 1042 1 1
2 477 966 0 1
3 146 162 0 0
4 0 240 1 1
5 0 1494 6 7
6 1391 744 0 0
7 334 1016 3 4
8 988 660 1 3
9 610 652 0 3
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 10 20 1 0
1 10 35 5 5
2 10 19 4 3
3 10 18 4 1
4 10 35 0 2
5 2 14 0 1
6 2 33 3 6
7 2 18 0 1
8 2 28 3 4
9 2 49 2 2
wardsPlaced win
0 12 False
1 11 False
2 8 False
3 10 False
4 16 False
5 8 True
6 6 True
7 10 True
8 10 True
9 21 True ,
assists baronKills bountyLevel champLevel championName \
0 7 0 0 13 Sion
1 7 0 2 13 Rengar
2 6 0 4 13 Ahri
3 8 0 2 13 KogMaw
4 22 0 3 12 Lulu
5 2 0 0 13 Mordekaiser
6 4 0 0 12 Hecarim
7 3 0 0 14 Kayle
8 6 0 0 10 Draven
9 4 0 0 10 Yuumi
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 4831 5805 4831
1 0 18906 0
2 702 6145 702
3 8842 18017 8842
4 2932 5710 2932
5 1448 4903 1448
6 0 8724 0
7 1640 4250 1640
8 315 315 315
9 173 173 173
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 2 0 False False
1 3 1 3 False False
2 1 0 0 False False
3 4 0 0 False False
4 1 6 1 False False
5 4 2 0 False True
6 9 3 0 False False
7 2 1 0 False False
8 8 2 0 False False
9 6 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 8221 TOP 0
1 True 10333 JUNGLE 0
2 True 8165 MIDDLE 1
3 True 13511 BOTTOM 0
4 True 8922 UTILITY 0
5 True 8125 TOP 0
6 True 9861 JUNGLE 0
7 True 8861 MIDDLE 0
8 True 6864 BOTTOM 0
9 True 6312 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 1 0 3068 1028 3111 1011 3077
1 1 0 3158 6691 3508 3035 0
2 1 0 2033 6656 3158 3108 3067
3 0 0 3006 6670 3153 3124 3085
4 1 0 3853 2065 3504 3114 3117
5 0 1 1056 0 4633 3047 3065
6 0 1 0 3078 3009 3053 3133
7 0 1 1054 3006 3115 4633 0
8 0 1 1055 6673 3006 1036 1036
9 0 1 3853 6655 4642 1052 0
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 1054 3340 0 2 0 1
1 0 3364 3 8 3 1
2 1052 3340 1 4 4 1
3 1018 3340 5 12 4 2
4 2055 3364 1 3 3 2
5 0 3340 1 4 2 1
6 1029 3364 1 6 2 1
7 0 3363 0 1 0 1
8 0 3340 0 1 0 1
9 0 3364 0 2 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 459 22188 3233
1 660 31056 813
2 232 26869 3505
3 492 21554 10241
4 486 10802 2792
5 637 60828 9504
6 358 17504 1742
7 777 71005 7148
8 308 0 0
9 466 9926 5599
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 9725 4 0 0
1 3566 152 0 0
2 2670 4 0 0
3 5398 24 0 0
4 3389 4 0 0
5 4299 8 0 0
6 6699 99 0 0
7 4208 12 0 0
8 3473 4 0 0
9 3076 0 0 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 60179 7386 7918
1 114798 17462 16811
2 12688 1032 2822
3 114115 13459 8077
4 4240 1077 5540
5 17269 2395 11971
6 108577 9183 21150
7 32663 2090 9159
8 42711 7606 10760
9 1854 834 4723
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 NONE 3 4 2 12
1 NONE 3 14 12 11
2 SOLO 2 4 3 14
3 CARRY 3 7 3 4
4 SUPPORT 5 14 2 4
5 SOLO 4 4 5 14
6 NONE 13 11 4 6
7 SOLO 2 4 1 12
8 CARRY 1 14 4 4
9 SUPPORT 5 7 4 3
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 260 Trastin False 100 TOP
1 121 Thundér False 100 JUNGLE
2 46 suutri False 100 MIDDLE
3 285 Kumat0ra False 100 BOTTOM
4 672 xLunna False 100 UTILITY
5 251 Cronusamun False 200 TOP
6 372 Stormblessed False 200 JUNGLE
7 356 Rotome False 200 MIDDLE
8 370 amrocks False 200 BOTTOM
9 135 Alece False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 33 1540 86418 10620
1 16 1540 156841 19063
2 13 1540 61864 6466
3 6 1540 139311 25355
4 30 1540 15779 4605
5 6 1540 84723 13432
6 19 1540 133225 11770
7 6 1540 115322 9289
8 16 1540 42801 7696
9 14 1540 11781 6433
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 18497 2618 117 559
1 21203 12336 19 351
2 5581 2394 128 38
3 14115 3889 158 249
4 9040 3153 8 177
5 16855 3642 126 16
6 29396 11210 50 168
7 14733 4309 193 161
8 15472 656 78 132
9 8170 5992 9 36
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 94 1 4050
1 81 1 10987
2 12 1 22306
3 117 3 3641
4 14 5 736
5 125 1 6626
6 201 1 7143
7 32 5 11654
8 147 1 90
9 98 5 0
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 0 853 2 3
1 787 824 0 0
2 1927 88 0 2
3 1653 639 4 6
4 736 110 0 5
5 1532 585 0 0
6 844 1545 0 0
7 50 1365 1 1
8 90 1238 0 0
9 0 370 0 0
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 1 12 2 2
1 1 19 1 4
2 1 15 0 1
3 1 10 2 2
4 1 50 8 6
5 6 21 2 4
6 6 16 3 4
7 6 11 1 2
8 6 14 2 1
9 6 15 0 0
wardsPlaced win
0 7 True
1 2 True
2 8 True
3 4 True
4 21 True
5 10 False
6 3 False
7 5 False
8 9 False
9 11 False ,
assists baronKills bountyLevel champLevel championName \
0 3 0 0 18 Urgot
1 8 0 0 18 LeeSin
2 6 0 0 18 Talon
3 12 0 0 18 Yasuo
4 16 0 0 16 Rakan
5 13 0 4 18 Kayle
6 10 2 1 18 Kayn
7 13 0 3 18 Syndra
8 14 0 0 18 Lucian
9 15 0 0 18 Brand
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 11188 32395 11188
1 1368 24697 1368
2 5675 9580 5675
3 3899 18465 3899
4 1480 2466 1480
5 5910 43312 5910
6 760 18879 760
7 418 4860 418
8 7086 9671 7086
9 2721 8938 2721
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 8 1 0 False False
1 11 0 5 False True
2 11 3 0 True False
3 4 1 0 False False
4 4 2 0 True False
5 4 1 1 False False
6 13 1 0 False False
7 6 1 0 False False
8 9 0 0 False False
9 8 1 1 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 18758 TOP 1
1 False 17121 JUNGLE 0
2 False 19626 MIDDLE 1
3 False 16769 BOTTOM 0
4 False 11475 UTILITY 0
5 False 23727 TOP 0
6 False 15982 JUNGLE 0
7 False 14944 MIDDLE 0
8 False 15543 BOTTOM 1
9 False 16609 UTILITY 1
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 1 2 3748 6631 3047 4401 3075
1 0 2 3158 6691 6676 3074 3026
2 1 2 6333 6694 6630 3053 3071
3 0 2 3053 3046 2421 3072 6662
4 0 2 3050 2065 3107 3860 3117
5 1 2 3089 3157 3041 3006 4633
6 0 2 6691 6695 3117 6676 3033
7 0 2 6655 3157 3135 3089 3020
8 2 2 3033 1018 6692 3006 3508
9 1 2 6653 3853 3165 3116 3020
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 3053 3340 3 11 4 2
1 3156 3340 1 9 4 2
2 3111 3364 3 13 2 2
3 3006 3340 1 3 3 1
4 1057 3364 1 4 4 1
5 3115 3363 2 12 7 2
6 3134 3340 1 7 2 1
7 0 3340 1 5 3 1
8 6694 3340 0 5 0 1
9 4637 3364 3 9 4 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 1030 1215 426
1 750 58176 5129
2 494 0 0
3 1837 27559 2195
4 1648 20123 5884
5 992 330307 38379
6 423 10022 2874
7 531 210286 37431
8 443 6310 538
9 710 161318 42668
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 31593 23 1 0
1 19678 190 1 0
2 40352 40 1 0
3 16771 24 1 0
4 15626 0 1 0
5 4178 56 0 1
6 5510 145 0 1
7 2765 0 0 1
8 3657 20 0 0
9 1481 28 0 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 239100 26087 14831
1 187975 23723 20513
2 261805 31610 24330
3 292110 16386 12789
4 12195 1942 6321
5 68651 4861 28941
6 211005 19576 42469
7 12065 1368 18698
8 172401 14662 22449
9 7853 1040 22637
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 DUO 5 4 5 12
1 NONE 6 4 27 11
2 DUO 10 14 5 4
3 SOLO 5 4 6 7
4 SUPPORT 5 4 7 14
5 SOLO 5 4 4 12
6 NONE 26 11 7 4
7 SOLO 7 4 5 14
8 CARRY 8 7 6 4
9 SUPPORT 5 4 9 14
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 75 ASHGOD28 False 100 TOP
1 155 Carchan False 100 JUNGLE
2 191 syIIabIe False 100 MIDDLE
3 203 Tropikanaa False 100 BOTTOM
4 98 Tapatio2 False 100 UTILITY
5 356 Rotome False 200 TOP
6 353 Hero Øf Time False 200 JUNGLE
7 186 Coolgum15 False 200 MIDDLE
8 109 Caruto Cruzemaki False 200 BOTTOM
9 242 alexbeplanet False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 23 2775 255172 28190
1 21 2775 274179 30337
2 5 2775 265995 34846
3 28 2775 338920 19246
4 21 2775 40433 9669
5 16 2775 446369 48573
6 14 2775 233028 24366
7 69 2775 224412 39779
8 1 2775 179329 15459
9 37 2775 175928 45626
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 50068 5186 235 199
1 41601 17795 68 279
2 68136 19453 278 280
3 30962 7749 285 839
4 22936 5842 45 74
5 34093 24887 364 404
6 51350 21155 80 339
7 23171 6668 228 442
8 27567 7893 174 76
9 25509 3961 118 311
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 374 1 14856
1 336 1 28027
2 470 1 4190
3 163 3 19249
4 124 5 8114
5 152 5 47410
6 548 1 12000
7 195 1 2060
8 300 3 617
9 258 1 6755
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 1676 3643 5 6
1 1484 1408 1 1
2 3236 3452 1 3
3 664 1402 1 1
4 1842 987 0 1
5 5332 974 2 3
6 1915 3370 0 1
7 980 1707 0 1
8 259 1460 1 4
9 1916 1390 2 3
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 7 38 1 7
1 7 24 0 1
2 7 26 4 3
3 7 51 1 4
4 7 63 2 2
5 10 21 1 2
6 10 26 1 1
7 10 24 1 1
8 10 14 0 1
9 10 71 1 10
wardsPlaced win
0 14 False
1 12 False
2 4 False
3 16 False
4 28 False
5 10 True
6 14 True
7 15 True
8 7 True
9 29 True ,
assists baronKills bountyLevel champLevel championName \
0 0 0 0 13 Yone
1 0 0 0 11 Elise
2 1 0 0 13 Galio
3 2 0 0 11 Ezreal
4 1 0 0 10 Taric
5 10 0 4 15 DrMundo
6 11 1 4 13 Warwick
7 12 0 4 15 Yasuo
8 12 0 4 13 Samira
9 17 0 1 13 Sona
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3170 3170 3170
1 0 2432 0
2 775 775 775
3 2537 2783 2537
4 290 290 290
5 7427 11079 7427
6 0 19847 0
7 4287 12792 4287
8 5868 10578 5868
9 3595 5525 3595
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 1 0 False False
1 9 2 0 False False
2 7 2 0 False False
3 3 1 0 False False
4 6 0 0 False False
5 1 2 1 True False
6 1 0 3 False True
7 2 0 0 False False
8 0 1 0 False False
9 2 3 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 True False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 9435 TOP 0
1 False 5970 JUNGLE 0
2 False 7038 MIDDLE 0
3 False 7521 BOTTOM 0
4 False 5131 UTILITY 0
5 False 10027 TOP 0
6 False 10362 JUNGLE 2
7 False 11399 MIDDLE 0
8 False 9817 BOTTOM 0
9 False 7796 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 2 3072 3123 3006 6673 0
1 0 2 4636 2031 3020 1042 1042
2 0 2 1056 3047 3152 3191 2055
3 0 2 1055 3078 3070 3158 3133
4 0 2 3860 3190 3047 3024 0
5 2 0 3068 3047 3076 1011 3067
6 2 0 6632 2031 3111 3742 1028
7 2 0 1018 3139 3006 6672 1038
8 2 0 6673 3006 3134 1037 1055
9 2 0 3853 6617 3158 6616 0
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 0 3340 1 4 4 1
1 0 3340 0 0 0 0
2 1052 3364 0 2 0 2
3 1036 3340 0 0 0 0
4 0 3340 0 0 0 0
5 1054 3364 2 6 4 3
6 0 3340 2 9 5 3
7 0 3340 2 10 5 3
8 0 3363 1 4 4 1
9 0 3364 0 3 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 817 13947 3716
1 327 45767 4256
2 900 66809 9965
3 981 6615 2991
4 1099 5970 2145
5 1104 56681 10292
6 1184 41684 5042
7 921 17191 1903
8 1570 8432 2260
9 1195 22080 9418
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 7839 2 1 0
1 5127 91 1 0
2 3633 4 1 0
3 5584 4 1 0
4 8128 0 1 0
5 6586 8 0 0
6 6412 117 0 1
7 6038 1 0 0
8 2537 10 0 1
9 4121 0 0 1
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 93112 11476 9704
1 17620 442 15858
2 5371 973 16188
3 73062 11733 7459
4 5446 415 9888
5 40521 4681 10946
6 55602 4543 19835
7 113688 16707 10596
8 72547 13581 8186
9 6479 2334 7356
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 SOLO 3 4 4 14
1 NONE 4 4 16 11
2 SOLO 3 4 2 12
3 CARRY 2 7 2 4
4 SUPPORT 3 4 3 3
5 DUO 3 12 1 4
6 NONE 2 4 11 11
7 DUO 4 14 4 4
8 CARRY 3 7 3 4
9 SUPPORT 2 4 4 14
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 311 NtvGmr False 100 TOP
1 482 RaymondPing False 100 JUNGLE
2 383 Bloq False 100 MIDDLE
3 121 Saferer False 100 BOTTOM
4 114 Cthulhu False 100 UTILITY
5 91 Dublaiar False 200 TOP
6 356 Rotome False 200 JUNGLE
7 353 Hero Øf Time False 200 MIDDLE
8 185 Thick2BThighs False 200 BOTTOM
9 186 Coolgum15 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 14 1575 115545 17183
1 15 1575 75978 4845
2 33 1575 72181 10938
3 0 1575 79677 14725
4 26 1575 18116 2561
5 8 1575 104037 14973
6 20 1575 107904 9985
7 21 1575 139120 20785
8 0 1575 84499 15841
9 15 1575 28990 12183
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 17885 2678 160 110
1 21438 6240 3 178
2 21063 103 122 79
3 13575 2394 161 0
4 18453 3985 22 56
5 18692 7043 137 236
6 26626 15633 4 375
7 16923 5694 161 113
8 10972 3879 113 2
9 11539 14446 7 27
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 196 1 8485
1 188 1 12590
2 224 1 0
3 103 2 0
4 158 4 6699
5 36 1 6835
6 33 1 10617
7 78 1 8240
8 0 3 3520
9 74 5 430
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 1990 341 1 1
1 146 452 0 0
2 0 1241 0 0
3 0 532 0 1
4 0 437 1 1
5 0 1159 2 7
6 399 379 0 0
7 2174 288 0 4
8 0 248 6 6
9 430 61 1 5
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 9 14 2 0
1 9 21 2 1
2 9 14 4 1
3 9 20 1 2
4 9 11 0 0
5 2 20 2 1
6 2 16 0 1
7 2 12 0 0
8 2 8 2 0
9 2 22 3 1
wardsPlaced win
0 9 False
1 8 False
2 3 False
3 7 False
4 6 False
5 6 True
6 6 True
7 7 True
8 6 True
9 8 True ,
assists baronKills bountyLevel champLevel championName \
0 5 0 0 14 Camille
1 1 0 2 13 Chogath
2 1 0 0 14 Jinx
3 1 0 0 12 Caitlyn
4 6 0 0 11 Vi
5 9 0 0 16 Nocturne
6 6 1 0 14 Viego
7 3 0 4 18 Kayle
8 1 0 3 13 Xayah
9 8 0 0 12 Senna
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 0 0 0
1 0 7632 0
2 5222 12662 5222
3 2816 2816 2816
4 1394 1394 1394
5 4178 9433 4178
6 69 26964 69
7 10858 23894 10858
8 2272 11988 2272
9 2702 7008 2702
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 6 1 0 False False
1 4 1 2 False False
2 5 0 1 False False
3 6 0 0 False False
4 6 1 0 False False
5 3 0 0 False False
6 1 0 1 False False
7 4 1 0 False False
8 0 0 0 False True
9 4 4 0 True False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False True False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 7788 TOP 0
1 False 9925 JUNGLE 0
2 False 8850 MIDDLE 0
3 False 8302 BOTTOM 0
4 False 7013 UTILITY 0
5 False 12178 TOP 0
6 False 10547 JUNGLE 0
7 False 15867 MIDDLE 1
8 False 9606 BOTTOM 0
9 False 8072 UTILITY 1
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 2 1055 2033 6632 3077 3047
1 0 2 3047 2031 6662 3083 1033
2 0 2 1055 6672 3006 3085 0
3 0 2 6672 3006 6676 0 0
4 0 2 3857 3190 3047 3801 1006
5 0 0 1011 2033 6631 3053 3026
6 0 0 3047 3153 6632 3044 1037
7 1 0 3115 3006 4633 1082 1029
8 0 0 1055 3508 3086 3006 6671
9 1 0 6672 3864 3094 1036 2055
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 1028 3340 0 2 0 1
1 1029 3364 2 4 2 1
2 0 3340 1 2 2 1
3 1055 3340 1 3 2 1
4 3067 3364 0 1 0 1
5 3047 3364 2 7 4 1
6 1028 3364 1 5 5 1
7 3089 3340 2 12 7 2
8 1036 3340 1 3 3 1
9 3009 3364 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 386 737 737
1 990 75732 4833
2 682 1220 750
3 833 376 236
4 592 792 792
5 785 2858 2528
6 1615 16508 991
7 633 175548 21089
8 0 182 182
9 469 872 176
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 6204 0 1 0
1 5235 117 1 0
2 3119 4 1 0
3 5768 4 1 0
4 6015 0 1 0
5 3162 8 0 0
6 3792 143 0 0
7 1537 41 0 0
8 1531 6 0 0
9 1043 4 0 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 1 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 56079 10353 15879
1 27056 1002 19765
2 99343 11123 10337
3 87212 7395 9546
4 28252 7602 11286
5 112953 18741 17022
6 123408 9461 16378
7 50357 4602 19522
8 108622 8113 6482
9 33457 5969 8159
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 SOLO 4 4 4 12
1 NONE 15 11 3 4
2 SOLO 3 4 2 14
3 CARRY 4 7 3 4
4 SUPPORT 4 4 6 3
5 SOLO 2 12 4 4
6 NONE 4 4 14 11
7 SOLO 3 4 2 12
8 CARRY 3 4 1 7
9 SUPPORT 3 21 3 4
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 355 Rotome False 100 TOP
1 288 MidweekEel False 100 JUNGLE
2 134 Alece False 100 MIDDLE
3 90 Dublaiar False 100 BOTTOM
4 185 Coolgum15 False 100 UTILITY
5 214 Shaunthesheep321 False 200 TOP
6 63 MangaReader16 False 200 JUNGLE
7 174 GwapplesL False 200 MIDDLE
8 27 Lux1250 False 200 BOTTOM
9 242 xCLIFFORDx False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 15 1690 71544 13636
1 39 1690 121344 9271
2 18 1690 118158 12830
3 18 1690 93797 7731
4 28 1690 35214 8394
5 122 1690 115812 21269
6 15 1690 148862 11030
7 6 1690 234769 27761
8 3 1690 108804 8295
9 27 1690 36553 6540
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 23113 5620 130 106
1 25624 7931 28 1419
2 13481 2123 164 63
3 15651 3189 155 54
4 18330 2228 39 82
5 23489 9529 183 312
6 21192 12340 13 264
7 24107 11135 233 279
8 8045 1306 169 10
9 9837 5684 14 80
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 183 1 14728
1 143 1 18554
2 156 1 17595
3 150 2 6208
4 159 4 6169
5 65 1 0
6 46 1 8945
7 122 4 8863
8 0 2 0
9 72 5 2224
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 2546 1029 0 0
1 3434 623 0 0
2 956 24 1 2
3 99 336 1 1
4 0 1027 0 1
5 0 3304 2 2
6 577 1021 1 1
7 2069 3046 4 5
8 0 30 1 1
9 394 634 1 3
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 10 7 3 0
1 10 14 1 1
2 10 7 0 0
3 10 10 0 0
4 10 32 1 4
5 2 10 0 1
6 2 13 4 2
7 2 9 1 0
8 2 14 0 0
9 2 60 6 4
wardsPlaced win
0 5 False
1 6 False
2 6 False
3 7 False
4 11 False
5 3 True
6 1 True
7 5 True
8 9 True
9 25 True ,
assists baronKills bountyLevel champLevel championName \
0 7 0 0 17 Ziggs
1 4 0 0 15 Gwen
2 4 2 0 17 Khazix
3 7 0 0 18 Yasuo
4 9 0 1 15 Lux
5 16 0 0 15 Lulu
6 4 0 6 17 Jhin
7 3 0 0 15 DrMundo
8 2 0 0 17 Ezreal
9 9 0 0 18 Mordekaiser
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 18506 29638 18506
1 6926 11706 6926
2 1329 25021 1329
3 8333 25971 8333
4 2343 6575 2343
5 47 2501 47
6 0 1064 0
7 43 6069 43
8 806 7572 806
9 2337 11575 2337
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 3 2 0 False False
1 5 1 0 False False
2 8 0 3 False False
3 8 5 0 False False
4 5 2 0 False False
5 7 0 0 False False
6 5 0 0 False False
7 10 0 1 False False
8 6 2 0 False False
9 6 0 1 False True
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 14368 BOTTOM 1
1 False 10475 TOP 1
2 False 14209 JUNGLE 2
3 False 15628 MIDDLE 1
4 False 12689 UTILITY 1
5 False 8451 UTILITY 0
6 False 13813 BOTTOM 0
7 False 9557 JUNGLE 0
8 False 13290 MIDDLE 0
9 False 16712 TOP 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 1 0 6653 3158 4628 4637 3165
1 1 0 3191 3115 4633 3108 3047
2 2 0 6692 3009 3142 3508 6676
3 2 0 3140 0 3033 6672 3072
4 1 0 3853 3041 6655 4628 3020
5 0 6 3853 2065 3009 3011 1057
6 0 6 6671 3009 6676 3094 3033
7 0 6 6662 2031 3047 3083 3076
8 0 6 1056 6691 3158 3508 3074
9 0 6 3116 3157 4633 3111 4637
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 0 3340 0 2 0 1
1 1055 3340 0 1 0 1
2 0 3340 3 13 4 2
3 3006 3340 1 9 5 1
4 1058 3340 2 9 5 1
5 3114 3364 0 1 0 1
6 1055 3340 1 8 6 2
7 1011 3340 1 4 3 1
8 1038 3363 1 6 3 1
9 3211 3340 3 10 3 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 781 211720 38296
1 1288 30594 1059
2 835 12416 1697
3 980 16719 1774
4 802 60035 31645
5 561 16971 5442
6 623 19718 2105
7 561 73722 5591
8 661 24121 6172
9 868 205066 30548
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 7084 4 0 0
1 11162 12 0 0
2 15329 158 0 0
3 12142 16 0 0
4 7495 4 0 0
5 13365 0 1 0
6 14160 0 1 0
7 21300 96 1 0
8 8786 12 1 0
9 18653 16 1 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 1 0 3
3 0 0 4
4 0 1 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 14338 362 7361
1 21960 551 8761
2 149974 23784 27808
3 203865 19929 13319
4 2916 1006 4605
5 3149 761 7459
6 175181 9402 10025
7 46310 3290 27923
8 143057 10409 10628
9 20157 3227 24050
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 CARRY 6 4 5 7
1 SOLO 1 14 2 12
2 NONE 18 11 6 4
3 SOLO 6 4 9 14
4 SUPPORT 6 4 7 14
5 SUPPORT 6 4 6 14
6 CARRY 5 7 3 4
7 NONE 9 11 4 4
8 SOLO 3 4 2 12
9 SOLO 5 4 3 12
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 147 JuicyTendency False 100 BOTTOM
1 131 Eize False 100 TOP
2 265 Furia De Rosé False 100 JUNGLE
3 332 Mori Dan False 100 MIDDLE
4 222 shadows868 TTV False 100 UTILITY
5 134 Alece False 200 UTILITY
6 90 Dublaiar False 200 BOTTOM
7 87 PaladinAlwaysYes False 200 JUNGLE
8 355 Rotome False 200 MIDDLE
9 184 Coolgum15 False 200 TOP
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 23 2313 243663 38659
1 0 2313 71071 2459
2 8 2313 176192 26289
3 28 2313 236712 25133
4 44 2313 63680 33380
5 26 2313 21022 7105
6 18 2313 207705 11552
7 12 2313 127296 9136
8 1 2313 180236 16725
9 12 2313 231916 36112
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 14966 2522 244 291
1 20167 4257 94 18
2 44148 22371 9 260
3 26879 5113 216 177
4 12591 910 29 145
5 21373 1897 17 258
6 24536 6912 233 162
7 50509 15315 33 1301
8 19994 1812 216 26
9 45754 16963 229 284
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 107 2 17605
1 136 1 18516
2 282 1 13801
3 343 1 16128
4 154 1 728
5 223 1 901
6 166 2 12804
7 288 1 7264
8 253 1 13057
9 217 1 6692
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 0 521 3 3
1 848 243 5 7
2 808 1009 0 2
3 3429 1417 2 4
4 728 489 1 3
5 901 548 0 0
6 44 350 0 0
7 254 1285 0 0
8 144 579 0 0
9 2336 3050 1 1
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 1 32 2 2
1 1 27 1 1
2 1 15 0 0
3 1 39 5 0
4 1 61 2 2
5 11 36 0 4
6 11 17 0 1
7 11 7 0 1
8 11 24 2 0
9 11 22 0 1
wardsPlaced win
0 14 True
1 8 True
2 7 True
3 18 True
4 26 True
5 17 False
6 10 False
7 3 False
8 9 False
9 12 False ,
assists baronKills bountyLevel champLevel championName \
0 12 0 4 18 Gwen
1 8 1 2 18 Nocturne
2 8 0 6 18 Ziggs
3 9 0 0 17 Xayah
4 18 0 0 17 Rakan
5 3 0 0 18 Kayle
6 6 1 0 16 Mordekaiser
7 8 0 0 17 Pantheon
8 3 0 1 18 Kaisa
9 11 0 0 15 Lulu
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 7456 14906 7456
1 0 20255 0
2 30647 34954 30647
3 3814 21017 3814
4 1413 3107 1413
5 8094 32241 8094
6 396 18029 396
7 609 5602 609
8 8837 17954 8837
9 509 3866 509
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 2 0 False True
1 5 1 1 False False
2 1 1 2 False False
3 7 0 1 False False
4 6 9 0 False False
5 7 0 0 False False
6 10 1 2 False False
7 7 2 0 False False
8 11 4 0 False False
9 8 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False True False
3 True False False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 15763 TOP 1
1 False 16323 JUNGLE 0
2 False 17353 MIDDLE 0
3 False 16518 BOTTOM 0
4 False 10810 UTILITY 0
5 False 18208 TOP 1
6 False 15154 JUNGLE 0
7 False 13005 MIDDLE 0
8 False 15692 BOTTOM 1
9 False 9276 UTILITY 1
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 1 3 4633 3157 2421 3115 3108
1 0 3 3053 3091 3047 6631 3071
2 0 3 3020 3157 6655 4628 3165
3 0 3 3031 3006 6671 3508 3046
4 1 3 2065 3860 0 3158 3050
5 3 1 6609 3181 3006 3042 3074
6 0 1 3157 3047 3152 3115 3075
7 1 1 6692 2033 3158 3053 3074
8 1 1 1018 6671 3031 3006 3046
9 1 1 3853 2065 3158 3100 3504
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 3047 3340 1 6 4 1
1 3211 3340 3 12 5 1
2 1058 3363 2 9 6 3
3 1018 3340 3 11 5 2
4 6616 3364 1 5 2 1
5 3078 3340 2 11 6 2
6 3067 3364 3 10 3 1
7 1057 3363 1 3 2 1
8 6676 3363 0 2 0 1
9 0 3364 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 340 117377 12348
1 870 24406 4516
2 1389 211758 22811
3 735 2253 2253
4 863 21535 7915
5 1133 99398 14248
6 800 179504 30517
7 1162 3565 885
8 442 25385 3617
9 670 24350 5162
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 13188 22 0 1
1 17082 164 0 1
2 4295 9 0 1
3 10675 24 0 0
4 12037 0 0 1
5 11166 28 1 0
6 17107 182 1 0
7 10549 16 1 0
8 8218 68 1 0
9 7376 0 1 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 1 2
2 1 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 60671 3210 21952
1 219126 26359 28230
2 19308 929 12632
3 237835 32119 16788
4 7934 905 10340
5 163546 18568 20320
6 28841 3677 27934
7 146573 18773 17054
8 237744 10611 22372
9 6112 833 11610
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 SOLO 5 4 4 12
1 NONE 6 4 21 11
2 SOLO 3 4 6 14
3 CARRY 5 7 6 4
4 SUPPORT 6 4 7 14
5 SOLO 5 4 9 14
6 NONE 18 11 5 4
7 SOLO 6 4 2 12
8 CARRY 6 4 8 7
9 SUPPORT 4 4 1 3
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 374 Austenified False 100 TOP
1 366 MëIvin False 100 JUNGLE
2 126 6lack 1ce False 100 MIDDLE
3 344 LochNussMonster False 100 BOTTOM
4 197 Liz X Lam False 100 UTILITY
5 25 RyeBreadPitt False 200 TOP
6 165 shabao0v0 False 200 JUNGLE
7 355 Rotome False 200 MIDDLE
8 439 Chang Lee False 200 BOTTOM
9 134 Alece False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 8 2358 226152 19260
1 297 2358 256174 32603
2 11 2358 279113 24987
3 43 2358 241805 34549
4 46 2358 35055 9598
5 10 2358 287691 35271
6 11 2358 218991 36766
7 26 2358 165470 19747
8 0 2358 263129 14228
9 34 2358 36697 5996
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 36726 14555 243 150
1 47142 21554 61 1061
2 16928 1161 240 264
3 28337 7641 244 63
4 23202 7037 39 122
5 33142 13276 258 242
6 47321 14739 34 188
7 29824 7722 199 76
8 30997 8589 249 1
9 20056 1472 35 247
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 196 1 48102
1 219 1 12641
2 42 1 48046
3 280 2 1716
4 158 5 5584
5 231 5 24746
6 413 1 10646
7 237 1 15331
8 420 4 0
9 263 1 6235
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 3701 1585 3 3
1 1727 1829 0 0
2 1246 0 5 7
3 176 873 0 2
4 778 824 0 2
5 2454 1655 5 5
6 2570 2279 0 1
7 88 2219 0 1
8 0 406 3 4
9 0 1068 0 1
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 9 30 2 3
1 9 27 2 2
2 9 30 1 2
3 9 22 0 2
4 9 99 9 5
5 8 30 0 3
6 8 28 1 9
7 8 21 2 3
8 8 16 13 1
9 8 39 0 3
wardsPlaced win
0 15 True
1 13 True
2 14 True
3 11 True
4 44 True
5 14 False
6 2 False
7 6 False
8 9 False
9 17 False ,
assists baronKills bountyLevel champLevel championName \
0 4 0 4 16 Viego
1 8 0 0 14 Hecarim
2 10 0 8 17 Orianna
3 5 0 0 13 Twitch
4 14 0 0 15 Yuumi
5 4 0 0 16 Mordekaiser
6 11 0 0 15 Shaco
7 5 0 0 16 Yasuo
8 8 1 0 16 Ashe
9 5 0 0 12 Pyke
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 4126 18287 4126
1 0 1334 0
2 0 0 0
3 737 737 737
4 266 266 266
5 7476 13353 7476
6 237 16766 237
7 4122 11296 4122
8 8013 28076 8013
9 686 1679 686
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 6 0 0 False True
1 12 0 0 False False
2 4 1 0 False False
3 13 0 0 False False
4 4 0 0 False False
5 6 1 0 False False
6 6 1 3 False False
7 8 0 0 False False
8 5 0 1 False False
9 9 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False True False
9 True False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 15688 TOP 0
1 False 9767 JUNGLE 0
2 False 13791 MIDDLE 0
3 False 8096 BOTTOM 0
4 False 7414 UTILITY 0
5 False 12000 TOP 1
6 False 12340 JUNGLE 1
7 False 11937 MIDDLE 1
8 False 15191 BOTTOM 0
9 False 11674 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 3 1055 3091 6672 3006 3153
1 0 3 6632 1037 3047 3053 1036
2 0 3 1056 6655 4629 3089 3020
3 0 3 6672 3006 3085 1052 0
4 0 3 3853 6617 6616 1057 3114
5 2 0 1056 3157 3075 3047 4633
6 1 0 3020 3157 6653 3135 3916
7 1 0 1038 1055 3006 3031 6673
8 0 0 3153 3006 6672 3070 3085
9 0 0 3857 6691 3117 3179 3814
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 6609 3340 2 11 4 2
1 1036 3364 1 5 2 1
2 0 3363 2 12 8 1
3 0 3340 0 3 0 1
4 0 3364 0 2 0 1
5 1011 3340 2 7 3 1
6 0 3364 1 9 6 1
7 1053 3340 2 4 2 1
8 3031 3340 2 8 3 1
9 3123 3364 3 11 4 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 595 17323 3595
1 220 19437 2265
2 421 113167 24686
3 312 0 0
4 577 12295 4972
5 565 106093 16095
6 929 86802 22561
7 692 16119 1372
8 570 2972 2872
9 480 0 0
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 14144 24 1 0
1 17309 91 1 0
2 5419 0 1 0
3 4537 0 1 0
4 1853 0 1 0
5 8263 0 0 0
6 6470 101 0 1
7 9315 36 0 0
8 3700 58 0 0
9 10657 0 0 1
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 154124 16133 13843
1 81312 9040 18848
2 13601 1623 10485
3 58816 3883 16381
4 1765 1310 6560
5 19437 3119 15135
6 28814 3298 15525
7 157052 11723 13235
8 160981 12425 14187
9 24123 14092 8542
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 SOLO 4 4 6 14
1 NONE 5 6 16 11
2 SOLO 2 4 2 12
3 CARRY 1 4 0 14
4 SUPPORT 5 14 5 3
5 SOLO 2 4 2 12
6 NONE 6 14 15 11
7 SOLO 2 4 3 14
8 CARRY 5 7 3 4
9 SUPPORT 6 14 5 4
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 25 RyeBreadPitt False 100 TOP
1 177 Cheeky Lotus False 100 JUNGLE
2 355 Rotome False 100 MIDDLE
3 123 Tuyguuna False 100 BOTTOM
4 134 Alece False 100 UTILITY
5 319 Lionrider03 False 200 TOP
6 199 Ponker False 200 JUNGLE
7 58 LeonPingon False 200 MIDDLE
8 414 darkwingsss False 200 BOTTOM
9 261 wallahi ur gay False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 12 1827 200411 22751
1 23 1827 104887 12312
2 17 1827 132828 27476
3 4 1827 71008 5261
4 13 1827 15087 7308
5 4 1827 134862 20029
6 37 1827 126892 28023
7 18 1827 199164 13697
8 36 1827 177429 16358
9 22 1827 32625 16088
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 29016 8922 189 126
1 39672 11792 12 207
2 16553 2054 183 297
3 21995 926 103 256
4 8784 11081 5 31
5 26207 11586 150 38
6 22962 7581 27 688
7 23949 5637 184 167
8 19326 2790 177 730
9 20189 4041 24 93
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 182 1 28964
1 357 1 4137
2 111 1 6060
3 318 1 12192
4 124 5 1026
5 134 1 9331
6 188 1 11275
7 259 1 25991
8 102 3 13475
9 281 1 8501
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 3022 1027 2 3
1 1007 3513 0 0
2 1166 648 0 0
3 1378 1076 1 2
4 1026 370 0 0
5 814 2808 3 3
6 2163 967 1 1
7 601 1398 2 3
8 1061 1437 3 4
9 1995 988 0 1
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 10 16 0 0
1 10 10 0 1
2 10 6 2 0
3 10 10 0 0
4 10 21 0 2
5 3 20 1 2
6 3 25 1 0
7 3 12 0 0
8 3 20 1 1
9 3 45 1 3
wardsPlaced win
0 10 False
1 1 False
2 6 False
3 7 False
4 9 False
5 10 True
6 3 True
7 8 True
8 8 True
9 17 True ,
assists baronKills bountyLevel champLevel championName \
0 3 0 0 16 Yorick
1 5 0 0 14 Kayn
2 6 0 0 15 Anivia
3 12 0 0 12 Braum
4 12 0 0 13 Sett
5 4 0 10 18 Viego
6 7 1 0 14 Shaco
7 8 0 0 17 Orianna
8 10 0 0 14 Tristana
9 16 0 0 13 Lulu
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 11262 11262 11262
1 1844 15343 1844
2 1379 5790 1379
3 1942 3248 1942
4 3689 6541 3689
5 5762 18163 5762
6 2406 29156 2406
7 3949 4904 3949
8 2433 6563 2433
9 244 1641 244
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 11 0 0 False False
1 10 1 2 False False
2 5 1 0 False False
3 6 1 0 False False
4 7 2 0 False False
5 5 0 0 False True
6 5 4 1 True False
7 2 2 0 False False
8 7 0 1 False False
9 6 0 1 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False True False
7 True False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 11715 TOP 0
1 True 13983 JUNGLE 0
2 True 10020 MIDDLE 0
3 True 7516 BOTTOM 0
4 True 10302 BOTTOM 0
5 True 20822 TOP 0
6 True 11906 JUNGLE 0
7 True 12677 MIDDLE 0
8 True 9956 BOTTOM 0
9 True 8401 UTILITY 1
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 1 3742 3047 6632 3076 3181
1 0 1 6691 6676 3123 3117 3814
2 0 1 3040 6653 3020 1011 1052
3 0 1 6662 3109 3076 3857 1001
4 0 1 1054 6631 3153 3047 3076
5 1 0 3074 6672 3181 3006 3153
6 1 0 6691 6676 3047 3508 2055
7 1 0 1056 3157 3020 6655 3135
8 1 0 6672 3006 3046 3035 0
9 1 0 3853 3100 2065 3158 0
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 0 3340 1 4 2 1
1 3134 3340 6 14 3 2
2 1026 3340 0 1 0 1
3 1028 3364 0 1 0 1
4 1011 3340 1 5 2 1
5 3091 3340 3 22 10 4
6 0 3364 2 8 4 2
7 3108 3363 1 3 2 1
8 0 3364 1 5 2 1
9 0 3364 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 379 26330 7547
1 525 7005 1966
2 692 116758 11101
3 798 12185 3626
4 452 346 222
5 634 15776 5337
6 520 38360 3417
7 1136 157317 12893
8 315 12454 1895
9 355 15165 6723
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 9324 0 0 0
1 4776 102 0 0
2 4937 8 0 0
3 4664 0 0 0
4 7127 0 0 0
5 9149 29 0 0
6 5866 119 0 0
7 5166 35 0 0
8 2467 8 0 0
9 3408 4 0 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 120697 11965 22883
1 127104 16878 22919
2 6038 311 12143
3 9210 1316 15340
4 77029 12818 16393
5 240809 39422 30296
6 77662 7097 14819
7 18013 647 6966
8 64297 10125 10569
9 3537 1254 8372
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 SOLO 2 12 3 4
1 NONE 4 4 18 11
2 SOLO 3 21 4 4
3 SUPPORT 5 4 5 3
4 CARRY 3 4 5 7
5 SOLO 5 4 7 14
6 NONE 13 11 2 14
7 SOLO 3 4 4 12
8 CARRY 2 4 2 7
9 SUPPORT 4 4 4 3
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 143 Sestinji False 100 TOP
1 330 Dysther False 100 JUNGLE
2 205 Mestino False 100 MIDDLE
3 303 NamelessRival False 100 UTILITY
4 180 Luminis Diablo False 100 BOTTOM
5 25 RyeBreadPitt False 200 TOP
6 28 deserti0n False 200 JUNGLE
7 355 Rotome False 200 MIDDLE
8 123 Tuyguuna False 200 BOTTOM
9 134 Alece False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 9 1873 159963 19512
1 11 1873 141896 20923
2 31 1873 128156 12266
3 30 1873 30564 4943
4 21 1873 85144 15448
5 23 1873 282659 52306
6 14 1873 132644 11628
7 12 1873 175634 13845
8 5 1873 88233 13705
9 45 1873 18968 8244
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 36624 5913 195 131
1 29135 9863 29 245
2 18176 1677 183 1016
3 23073 311 40 273
4 24964 1892 137 165
5 40521 22679 224 167
6 21583 7992 20 581
7 12645 2001 220 279
8 14938 2929 99 31
9 12733 646 18 229
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 284 1 12936
1 259 1 7786
2 200 1 5359
3 116 1 9168
4 154 3 7769
5 141 1 26074
6 166 1 16620
7 87 1 304
8 164 2 11481
9 147 1 265
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 0 4416 2 3
1 2078 1439 1 2
2 854 1095 2 2
3 0 3068 1 2
4 2407 1443 0 2
5 7546 1074 3 4
6 1112 897 2 2
7 304 513 0 2
8 1684 1901 2 2
9 265 952 0 1
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 9 11 0 0
1 9 24 1 1
2 9 31 1 1
3 9 15 2 3
4 9 29 2 3
5 6 18 2 1
6 6 18 5 4
7 6 26 2 1
8 6 12 0 0
9 6 22 0 2
wardsPlaced win
0 8 False
1 12 False
2 11 False
3 5 False
4 12 False
5 9 True
6 5 True
7 8 True
8 8 True
9 11 True ,
assists baronKills bountyLevel champLevel championName \
0 6 0 4 13 Renekton
1 10 0 4 15 Lillia
2 9 0 0 13 Azir
3 6 0 2 12 Kaisa
4 14 0 1 11 Nami
5 2 0 1 13 DrMundo
6 4 0 0 10 Nautilus
7 0 0 0 12 Orianna
8 1 0 0 11 Ezreal
9 1 0 0 10 Evelynn
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2069 2069 2069
1 0 26347 0
2 1283 1283 1283
3 4992 4992 4992
4 1355 1355 1355
5 3022 6599 3022
6 335 7473 335
7 634 887 634
8 615 1973 615
9 0 9213 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 0 0 False False
1 1 1 0 False False
2 2 3 0 False False
3 2 0 0 True False
4 1 1 0 False True
5 5 1 0 False False
6 6 0 0 False False
7 5 0 0 False False
8 4 0 0 False False
9 5 0 3 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 True False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 9915 TOP 0
1 True 10963 JUNGLE 0
2 True 7143 MIDDLE 0
3 True 10247 BOTTOM 0
4 True 6868 UTILITY 0
5 True 8756 TOP 0
6 True 4995 UTILITY 0
7 True 7004 MIDDLE 0
8 True 7021 BOTTOM 0
9 True 5797 JUNGLE 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 0 1055 6631 3047 3123 3071
1 0 0 6653 3157 3158 1052 0
2 0 0 2033 6653 3020 1043 0
3 0 0 1055 3091 3006 6673 1042
4 0 0 3853 1052 6617 3158 3114
5 0 0 1054 3068 3111 3075 3067
6 0 0 6660 3860 3047 2031 3105
7 0 0 1056 6655 3020 2055 3108
8 0 0 3158 1055 3133 2055 6632
9 0 0 3020 2031 3152 1082 0
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 0 3340 1 8 4 3
1 0 3364 2 6 4 3
2 1026 3363 0 2 0 1
3 1042 3340 3 7 3 3
4 1052 3364 0 2 0 1
5 1028 3340 1 5 2 1
6 1029 3364 0 0 0 0
7 1052 3363 0 2 0 1
8 3070 3340 1 2 2 1
9 0 3364 1 2 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 364 1784 1444
1 642 110635 10442
2 770 53807 10154
3 881 18929 6854
4 1094 7817 4047
5 550 36666 13260
6 747 12339 3104
7 532 44845 12365
8 930 4398 2357
9 589 42060 3309
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 14514 9 0 0
1 8837 169 0 0
2 6545 6 0 0
3 3562 0 0 0
4 3350 0 0 0
5 7176 4 0 0
6 7084 0 0 0
7 8512 1 0 0
8 5324 0 0 0
9 6043 80 0 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 77379 11968 9083
1 18078 740 14286
2 5093 302 3165
3 94621 14072 10020
4 6027 753 1643
5 55747 7041 14398
6 7872 1647 8659
7 10203 689 3732
8 54761 6068 7298
9 12025 233 9317
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 SOLO 2 4 5 14
1 NONE 15 11 3 4
2 SOLO 2 12 3 4
3 CARRY 1 4 2 7
4 SUPPORT 3 4 2 14
5 SOLO 4 4 3 12
6 SOLO 5 4 11 11
7 DUO 2 4 2 12
8 DUO 3 4 4 7
9 NONE 2 4 8 11
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 289 Otishio False 100 TOP
1 147 honor 0 False 100 JUNGLE
2 146 xXLeftyFlipxX False 100 MIDDLE
3 346 Frankieburger False 100 BOTTOM
4 96 IpippyI False 100 UTILITY
5 25 RyeBreadPitt False 200 TOP
6 330 amumu and yi False 200 UTILITY
7 354 Rotome False 200 MIDDLE
8 331 Onlîne False 200 BOTTOM
9 134 Alece False 200 JUNGLE
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 10 1354 79895 14144
1 16 1354 180560 14429
2 7 1354 58900 10457
3 0 1354 119786 20927
4 23 1354 14169 5124
5 15 1354 92413 20301
6 37 1354 32755 4751
7 18 1354 55302 13307
8 0 1354 61129 8425
9 5 1354 59063 3635
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 23681 5910 127 79
1 23246 9618 18 518
2 9790 0 119 121
3 13611 3683 185 0
4 5023 9340 3 117
5 23895 7884 134 174
6 16341 2291 43 200
7 12444 700 134 166
8 12824 2719 137 3
9 16342 4792 5 161
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 131 1 732
1 27 1 51846
2 74 0 0
3 61 2 6235
4 30 5 324
5 136 1 0
6 116 5 12543
7 169 1 252
8 112 3 1970
9 115 1 4978
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 732 83 1 2
1 3245 122 1 1
2 0 79 0 0
3 0 28 1 3
4 324 30 1 3
5 0 2320 1 1
6 0 597 0 0
7 252 200 0 0
8 0 201 0 0
9 92 981 0 0
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 1 8 0 0
1 1 16 1 0
2 1 19 3 1
3 1 10 0 1
4 1 43 1 2
5 4 12 1 0
6 4 28 0 3
7 4 3 1 0
8 4 4 2 0
9 4 8 0 1
wardsPlaced win
0 4 True
1 4 True
2 8 True
3 6 True
4 22 True
5 8 False
6 14 False
7 2 False
8 4 False
9 3 False ,
assists baronKills bountyLevel champLevel championName \
0 0 0 2 12 Yorick
1 7 0 5 11 Shaco
2 2 0 5 11 Kayle
3 2 0 1 9 Caitlyn
4 3 0 0 8 Senna
5 0 0 0 9 Gwen
6 1 0 0 9 Khazix
7 1 0 0 10 Lucian
8 1 0 0 8 Rengar
9 1 0 0 8 Taric
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 6804 12522 6804
1 709 7395 709
2 1946 1946 1946
3 2332 2332 2332
4 847 847 847
5 0 0 0
6 0 5513 0
7 895 3839 895
8 971 971 971
9 0 0 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 0 0 0 False False
1 1 3 1 False True
2 2 2 0 False False
3 1 0 0 False False
4 2 0 0 False False
5 3 2 0 False False
6 4 2 0 False False
7 5 1 0 False False
8 3 1 0 False False
9 1 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 7400 TOP 0
1 True 7196 JUNGLE 0
2 True 7320 MIDDLE 0
3 True 5005 BOTTOM 0
4 True 4352 UTILITY 0
5 True 3649 TOP 0
6 True 4598 JUNGLE 0
7 True 5449 MIDDLE 0
8 True 5396 BOTTOM 0
9 True 3671 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 0 3078 3044 3111 0 1054
1 0 0 3006 2055 6631 3134 0
2 0 0 1054 0 3006 3115 1082
3 0 0 6670 3006 0 0 0
4 0 0 3864 3070 3009 1029 6660
5 0 0 2033 4635 1055 2055 3070
6 0 0 3133 3134 2031 1001 2055
7 0 0 1055 0 6671 1001 1042
8 0 0 1055 2055 2031 3047 6691
9 0 0 3859 2055 3067 4642 3158
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 0 3340 1 2 2 1
1 0 3364 1 6 5 1
2 0 3363 1 7 5 3
3 1055 3340 0 1 0 1
4 1033 3340 0 0 0 0
5 1001 3340 0 0 0 0
6 0 3340 0 1 0 1
7 0 3340 0 2 0 1
8 0 3340 0 2 0 1
9 0 3364 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 0 11307 2596
1 212 23354 3000
2 501 26048 4670
3 469 190 50
4 462 185 185
5 451 17534 2369
6 243 5351 172
7 315 1111 436
8 495 4223 643
9 930 3666 1510
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 2308 4 0 0
1 940 72 0 0
2 313 0 0 0
3 1073 0 0 0
4 757 0 0 0
5 3418 4 0 0
6 2579 76 0 0
7 3732 0 0 0
8 1079 0 0 0
9 1080 0 0 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 62319 4252 3640
1 31473 4984 7814
2 16055 1897 6418
3 43600 3790 3213
4 8831 4866 3343
5 19337 1179 7226
6 51274 2335 8932
7 40830 6766 5442
8 32785 4118 8800
9 4806 420 4120
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 SUPPORT 2 4 1 12
1 SUPPORT 10 11 4 14
2 SUPPORT 2 4 2 12
3 SUPPORT 2 7 2 4
4 SUPPORT 2 3 2 4
5 SUPPORT 2 4 2 12
6 SUPPORT 9 11 2 4
7 SUPPORT 3 14 2 4
8 DUO 2 7 1 4
9 SUPPORT 4 14 1 4
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 236 zeskgames False 100 TOP
1 131 Pastis False 100 JUNGLE
2 354 Rotome False 100 MIDDLE
3 89 Dublaiar False 100 BOTTOM
4 136 Judge45 False 100 UTILITY
5 127 StevePlex False 200 TOP
6 275 SoapOreo False 200 JUNGLE
7 214 Caique False 200 MIDDLE
8 206 xZiko63 False 200 BOTTOM
9 202 ChoisBoi False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 3 972 74781 6848
1 17 972 65806 9134
2 1 972 42104 6568
3 13 972 43791 3841
4 19 972 9113 5148
5 2 972 45088 5258
6 2 972 62902 2596
7 1 972 44585 7708
8 2 972 42779 4762
9 14 972 13572 2309
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 7658 2182 116 44
1 8963 3584 13 477
2 7117 1669 105 136
3 4457 1141 94 22
4 4308 1325 3 28
5 10666 1615 64 55
6 12052 5880 6 45
7 9521 1434 109 29
8 10164 2294 106 21
9 5255 1973 25 26
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 0 1 1153
1 12 1 10978
2 51 3 0
3 14 2 0
4 35 3 97
5 67 1 8216
6 61 1 6276
7 92 1 2644
8 71 2 5770
9 27 4 5099
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 0 1709 2 2
1 1150 208 0 0
2 0 386 1 1
3 0 170 1 1
4 97 208 0 1
5 1709 22 0 0
6 88 540 0 0
7 506 346 0 0
8 0 284 0 0
9 378 54 0 0
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 0 5 0 1
1 0 15 4 2
2 0 6 2 1
3 0 7 0 1
4 0 26 0 3
5 4 13 4 1
6 4 9 3 1
7 4 12 1 1
8 4 10 3 0
9 4 13 3 0
wardsPlaced win
0 4 True
1 4 True
2 6 True
3 5 True
4 11 True
5 6 False
6 4 False
7 6 False
8 6 False
9 7 False ,
assists baronKills bountyLevel champLevel championName \
0 2 0 2 17 Nasus
1 4 0 0 13 Rengar
2 1 0 0 14 Azir
3 2 0 0 16 Ezreal
4 5 0 0 14 Sett
5 13 0 0 16 DrMundo
6 19 0 10 17 Skarner
7 15 0 3 18 Tryndamere
8 14 0 1 15 Caitlyn
9 17 0 0 15 Lux
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 10502 10502 10502
1 0 9653 0
2 1156 1156 1156
3 1936 3593 1936
4 1613 2110 1613
5 3307 15749 3307
6 575 25470 575
7 14216 22466 14216
8 1181 5310 1181
9 740 2165 740
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 4 2 0 False True
1 12 0 2 False False
2 10 0 0 False False
3 4 1 0 False False
4 9 2 0 False False
5 5 1 1 False False
6 3 1 1 False False
7 3 3 1 False False
8 3 0 0 False False
9 6 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False True False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 15261 TOP 0
1 True 9730 JUNGLE 0
2 True 9343 MIDDLE 0
3 True 14054 BOTTOM 0
4 True 7666 UTILITY 0
5 True 11778 TOP 0
6 True 14493 JUNGLE 1
7 True 17492 MIDDLE 0
8 True 10486 BOTTOM 0
9 True 10014 UTILITY 1
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 2 3075 6632 3047 3742 3065
1 0 2 6691 3036 1031 3047 3057
2 0 2 6653 3115 3020 3916 0
3 0 2 3158 6632 3042 6694 6609
4 0 2 3857 6631 3009 3066 1031
5 0 0 1054 6662 3076 3047 3053
6 1 0 6664 1033 3111 3742 3075
7 2 0 6631 3046 3158 3033 6694
8 0 0 6672 3006 3123 6676 1018
9 1 0 3853 3020 6655 3165 1026
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 3044 3340 2 9 6 1
1 1028 3364 1 3 2 1
2 0 3340 0 1 0 1
3 0 3363 1 6 4 1
4 1028 3364 0 1 0 1
5 3742 3340 1 6 6 2
6 4401 3364 1 11 10 2
7 6675 3363 3 12 4 3
8 1055 3340 1 5 4 1
9 4630 3364 1 5 2 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 1208 29051 10757
1 450 28376 2084
2 689 112074 6963
3 1186 21161 6093
4 791 0 0
5 755 85233 20649
6 814 65599 5565
7 1021 0 0
8 1077 228 228
9 514 79258 17368
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 16999 2 0 0
1 5863 110 0 0
2 8403 19 0 0
3 5562 0 0 0
4 8633 0 0 0
5 10055 42 0 0
6 3745 160 0 0
7 7984 51 0 0
8 2634 4 0 0
9 3324 7 0 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 178431 28068 29120
1 82506 13025 24742
2 15848 711 12585
3 162886 16726 15160
4 23221 6761 14178
5 75555 9280 28936
6 98474 10623 20022
7 246243 32956 26016
8 100562 12133 11830
9 6250 508 10025
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 SOLO 5 4 8 6
1 NONE 14 11 3 4
2 SOLO 5 4 6 21
3 CARRY 4 4 5 7
4 SUPPORT 1 3 6 4
5 SOLO 4 4 2 12
6 NONE 23 11 7 6
7 SOLO 6 4 11 14
8 CARRY 4 7 2 4
9 SUPPORT 5 4 6 14
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 165 kratos59kratos59 False 100 TOP
1 28 SirBoooger False 100 JUNGLE
2 134 MopedTed26 False 100 MIDDLE
3 428 FancyPants ˉ False 100 BOTTOM
4 98 Bramstii False 100 UTILITY
5 354 Rotome False 200 TOP
6 268 DragonDeezBallz False 200 JUNGLE
7 166 LaptopGamer False 200 MIDDLE
8 89 Dublaiar False 200 BOTTOM
9 67 masterlu3 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 22 2163 209122 38825
1 9 2163 118746 15681
2 6 2163 127994 7746
3 4 2163 194229 22930
4 11 2163 33915 10641
5 22 2163 163793 29930
6 55 2163 179488 20022
7 19 2163 257320 35868
8 23 2163 105419 13548
9 42 2163 86178 18545
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 49377 6859 199 155
1 31840 11184 26 180
2 22120 831 155 131
3 22636 7778 248 114
4 23875 162 37 34
5 39904 15657 139 1126
6 24305 9595 23 941
7 35406 13224 218 317
8 15631 6022 131 34
9 13960 1446 56 286
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 194 1 1640
1 384 1 7864
2 398 1 72
3 112 3 10181
4 280 1 10693
5 137 1 3005
6 94 1 15415
7 150 1 11076
8 113 3 4628
9 135 1 669
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 0 3257 3 3
1 572 1234 0 0
2 72 1131 0 0
3 110 1913 0 1
4 3879 1063 1 1
5 0 913 0 1
6 3833 537 1 1
7 2912 1405 4 5
8 1186 1166 2 2
9 669 610 0 2
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 7 28 2 0
1 7 22 0 7
2 7 17 0 3
3 7 26 1 1
4 7 56 2 4
5 5 14 1 1
6 5 22 1 7
7 5 28 3 1
8 5 15 0 2
9 5 53 2 2
wardsPlaced win
0 12 False
1 0 False
2 11 False
3 10 False
4 30 False
5 8 True
6 1 True
7 14 True
8 9 True
9 26 True ,
assists baronKills bountyLevel champLevel championName \
0 3 0 3 17 Gwen
1 9 0 0 14 Kayn
2 10 0 0 15 Orianna
3 8 0 2 16 Swain
4 19 0 0 14 Sett
5 6 0 0 16 Nasus
6 7 0 1 12 FiddleSticks
7 8 0 0 15 Viego
8 8 0 0 14 Caitlyn
9 13 0 3 15 Lux
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 5886 15180 5886
1 186 14991 186
2 4317 4593 4317
3 3519 4417 3519
4 5556 5556 5556
5 6011 6011 6011
6 122 4521 122
7 0 3572 0
8 2702 8266 2702
9 1981 5236 1981
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 2 1 0 False False
1 14 0 2 False False
2 7 2 0 False False
3 6 0 0 False True
4 8 0 0 True False
5 7 1 0 False False
6 4 0 0 False False
7 10 1 1 False False
8 13 0 1 False False
9 10 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False True False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 13644 TOP 0
1 False 9569 JUNGLE 1
2 False 10460 MIDDLE 0
3 False 17589 BOTTOM 0
4 False 9834 UTILITY 1
5 False 11424 TOP 0
6 False 9438 JUNGLE 0
7 False 15977 MIDDLE 0
8 False 9671 BOTTOM 0
9 False 10147 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 1 0 3157 3020 3115 4633 1056
1 1 0 6691 3117 6676 3134 0
2 1 0 2033 6655 0 3020 3040
3 1 0 1058 3157 3020 4637 6653
4 2 0 3857 3047 3053 1037 3076
5 0 2 6632 2033 3111 3065 3075
6 0 2 3152 2031 3020 3191 1052
7 0 2 3123 3153 6673 3006 3508
8 0 2 6672 3006 6676 3123 1042
9 0 2 3853 6655 3020 4628 3191
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 3100 3364 2 9 6 2
1 0 3340 1 5 2 1
2 1052 3340 0 2 0 1
3 3165 3340 6 23 8 3
4 6630 3340 1 4 2 1
5 3066 3340 0 2 0 1
6 0 3330 1 6 3 1
7 3031 3340 5 18 8 2
8 1055 3340 1 4 2 1
9 0 3340 1 6 3 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 1052 80828 11451
1 424 6201 1792
2 854 109116 10388
3 518 136719 35733
4 363 0 0
5 788 79579 9990
6 784 93249 6470
7 590 10222 3893
8 262 516 446
9 300 77225 28462
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 10258 62 0 0
1 10610 82 0 0
2 5445 12 0 1
3 11286 18 0 1
4 13989 0 0 0
5 14451 0 1 0
6 6140 112 1 0
7 20177 24 1 0
8 11654 8 1 0
9 8322 0 1 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 44179 3936 20338
1 89572 13238 21715
2 12173 854 8907
3 20187 2998 19039
4 46517 14724 20522
5 81585 12253 20208
6 5812 170 13897
7 124381 37020 15976
8 81153 9085 8928
9 6252 1342 7436
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 NONE 6 14 3 4
1 NONE 4 4 14 11
2 SOLO 4 4 6 21
3 CARRY 5 4 6 3
4 SUPPORT 4 14 9 4
5 SOLO 4 12 5 4
6 NONE 8 11 3 4
7 SOLO 4 4 2 12
8 CARRY 5 7 4 4
9 SUPPORT 6 14 6 4
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 209 Forgive Desire False 100 TOP
1 73 1upusDominus False 100 JUNGLE
2 237 Star Cluster False 100 MIDDLE
3 78 tmlll False 100 BOTTOM
4 142 Chingwidal False 100 UTILITY
5 160 Dusx Of The Day False 200 TOP
6 137 SlothoftheAbyss False 200 JUNGLE
7 354 Rotome False 200 MIDDLE
8 89 Dublaiar False 200 BOTTOM
9 48 nataxxx False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 11 1861 162098 22035
1 7 1861 102930 15728
2 12 1861 126724 11243
3 48 1861 168216 39772
4 19 1861 60341 20705
5 16 1861 173190 22244
6 28 1861 105388 7083
7 19 1861 142538 41132
8 18 1861 85604 10192
9 83 1861 84245 30573
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 30875 9538 138 194
1 32587 11129 21 218
2 14398 1 178 360
3 30797 11317 150 272
4 35543 4276 47 62
5 40513 3303 207 120
6 20385 10144 2 505
7 39663 7888 156 76
8 23712 4968 113 47
9 17283 562 59 275
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 65 1 37090
1 419 1 7157
2 211 1 5435
3 201 1 11309
4 213 1 13824
5 251 1 12025
6 125 1 6326
7 380 1 7934
8 331 2 3934
9 278 1 768
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 6646 278 2 3
1 697 262 0 1
2 0 44 1 4
3 1039 471 2 3
4 5980 1031 2 3
5 0 5853 2 2
6 442 347 0 0
7 218 3508 0 0
8 659 3130 1 1
9 768 1524 0 1
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 3 9 1 0
1 3 15 0 1
2 3 22 3 0
3 3 15 0 1
4 3 20 0 1
5 9 25 1 0
6 9 22 0 1
7 9 26 7 1
8 9 16 0 2
9 9 40 1 3
wardsPlaced win
0 5 True
1 4 True
2 11 True
3 8 True
4 11 True
5 10 False
6 1 False
7 6 False
8 8 False
9 19 False ,
assists baronKills bountyLevel champLevel championName \
0 19 0 3 18 Riven
1 20 1 3 18 Karthus
2 18 0 1 18 Viego
3 12 0 0 18 Caitlyn
4 29 0 2 18 Braum
5 9 0 0 18 LeeSin
6 8 0 0 18 Camille
7 12 0 0 18 Malphite
8 6 1 0 17 Tristana
9 14 0 0 15 Lulu
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 6462 11752 6462
1 1420 26300 1420
2 4439 11519 4439
3 1642 8110 1642
4 1181 2542 1181
5 1799 34216 1799
6 9413 21834 9413
7 6607 6607 6607
8 2554 18169 2554
9 1172 3931 1172
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 10 4 0 False False
1 12 2 2 False False
2 11 1 0 False False
3 12 0 0 False False
4 5 1 0 False False
5 8 0 2 False False
6 14 1 0 False True
7 11 0 0 False False
8 9 1 2 False False
9 5 4 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False True False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 17411 TOP 0
1 False 19867 JUNGLE 0
2 False 17111 MIDDLE 1
3 False 17161 BOTTOM 0
4 False 11332 UTILITY 0
5 False 18380 JUNGLE 0
6 False 17075 TOP 2
7 False 19976 MIDDLE 0
8 False 12912 BOTTOM 1
9 False 9630 UTILITY 1
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 1 4 3158 6630 2420 3071 3053
1 0 4 3157 6653 3041 3020 3165
2 1 4 3057 3153 6672 3006 3036
3 0 4 6672 3006 3094 3095 3033
4 1 4 3857 3190 3050 3076 3111
5 0 1 6692 3047 3026 3074 3156
6 3 1 3748 6632 3053 3047 3153
7 0 1 4629 3157 3135 3020 3089
8 1 1 6672 3046 3006 3033 1037
9 1 1 0 3158 3853 6617 4643
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 6609 3363 2 7 3 1
1 4637 3364 6 17 3 3
2 3031 3340 3 7 2 2
3 3026 3363 4 13 5 3
4 3109 3364 1 3 2 1
5 4401 3340 3 17 8 2
6 1057 3340 1 9 2 2
7 4636 3340 6 20 5 3
8 1018 3340 0 4 0 1
9 3222 3364 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 405 858 570
1 689 247084 58249
2 534 9381 5150
3 576 11120 3389
4 937 18621 11909
5 851 52260 4389
6 333 2298 2298
7 803 137649 54220
8 585 32182 1419
9 1484 31234 5134
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 11162 18 0 1
1 17739 108 0 0
2 12383 40 0 1
3 18716 13 0 0
4 9731 0 0 1
5 16405 193 1 0
6 26307 18 1 0
7 17188 16 1 0
8 13261 36 1 0
9 8604 0 1 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 242589 28535 26280
1 10090 1245 22230
2 229581 30144 27313
3 155129 19346 13092
4 10890 3735 20783
5 193417 26138 30448
6 180963 20863 41777
7 57845 5335 23010
8 116664 12155 13766
9 5284 449 9938
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 NONE 5 4 4 12
1 NONE 7 3 22 11
2 SOLO 5 4 3 12
3 CARRY 5 7 5 4
4 SUPPORT 6 14 3 4
5 NONE 4 4 21 11
6 SOLO 6 12 10 14
7 SOLO 8 14 5 4
8 CARRY 6 4 7 7
9 SUPPORT 3 14 4 4
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 199 Lammyidk False 100 TOP
1 75 Desukato False 100 JUNGLE
2 354 Rotome False 100 MIDDLE
3 89 Dublaiar False 100 BOTTOM
4 193 MoistureCreature False 100 UTILITY
5 438 BULLY HUNTER 420 False 200 JUNGLE
6 374 Phxs3 False 200 TOP
7 403 ALLAH JR False 200 MIDDLE
8 316 Wickedhawk False 200 BOTTOM
9 235 takaDo False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 42 2571 261379 29771
1 36 2571 267086 61929
2 19 2571 254534 38053
3 18 2571 186099 25875
4 73 2571 40114 18027
5 37 2571 257342 32457
6 23 2571 225466 31870
7 50 2571 201586 61814
8 6 2571 184369 15880
9 45 2571 36970 6035
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 40418 8422 248 199
1 42930 12135 99 507
2 44290 8431 237 125
3 33254 7666 219 117
4 34195 4208 29 289
5 50126 21246 42 277
6 71753 16284 206 151
7 42060 4023 175 762
8 28467 7666 177 42
9 19683 6653 37 429
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 313 1 17931
1 459 1 9909
2 402 2 15571
3 475 3 19849
4 184 5 10602
5 350 1 11664
6 598 1 42205
7 499 1 6091
8 318 4 35522
9 177 5 451
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 666 2975 2 6
1 2433 2960 1 1
2 2758 4594 2 3
3 3140 1445 0 0
4 2382 3680 1 4
5 1929 3271 2 2
6 8708 3668 3 4
7 2258 1861 2 2
8 2305 1439 1 1
9 451 1140 0 1
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 9 38 4 2
1 9 20 2 5
2 9 30 1 0
3 9 22 0 1
4 9 74 1 4
5 6 29 0 3
6 6 22 1 2
7 6 15 0 1
8 6 22 1 3
9 6 109 3 4
wardsPlaced win
0 10 True
1 3 True
2 10 True
3 10 True
4 34 True
5 10 False
6 12 False
7 9 False
8 11 False
9 50 False ,
assists baronKills bountyLevel champLevel championName \
0 10 1 1 18 Chogath
1 10 1 2 18 Graves
2 3 0 1 18 Pantheon
3 12 0 0 18 Ezreal
4 13 0 2 18 Brand
5 8 0 0 18 Lucian
6 5 0 0 17 Viego
7 3 0 0 18 Veigar
8 4 0 0 18 Caitlyn
9 9 0 0 17 Xerath
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 5844 13966 5844
1 0 38926 0
2 3168 6161 3168
3 9145 18855 9145
4 6530 22164 6530
5 4682 9650 4682
6 2167 22069 2167
7 2224 9762 2224
8 398 2325 398
9 425 524 425
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 2 1 False False
1 4 1 3 False False
2 8 0 0 False False
3 4 4 0 False False
4 3 0 0 False False
5 6 0 0 False False
6 10 2 2 True False
7 5 3 0 False True
8 7 0 0 False False
9 10 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 True False False
4 False True False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 15065 TOP 0
1 False 15665 JUNGLE 1
2 False 11643 MIDDLE 1
3 False 17910 BOTTOM 2
4 False 14911 UTILITY 1
5 False 17994 TOP 1
6 False 14925 JUNGLE 0
7 False 14988 MIDDLE 0
8 False 11401 BOTTOM 0
9 False 10002 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 1 1 3083 3193 3047 6662 3075
1 1 1 6691 6676 3047 3179 3156
2 3 1 3071 6692 3111 3123 3133
3 2 1 3078 3074 3158 3042 6609
4 2 1 3158 3089 3860 6653 3116
5 1 5 3042 6672 3181 3006 3036
6 0 5 6672 3006 3153 3053 6333
7 0 5 3135 6656 3157 3089 3020
8 0 5 6672 3006 3094 3095 1036
9 0 5 3853 6655 3020 4628 3916
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 0 3340 1 4 2 1
1 3133 3364 3 8 3 1
2 1031 3340 1 5 2 1
3 3110 3363 2 12 8 3
4 3041 3364 3 9 3 2
5 3153 3340 1 5 3 2
6 0 3364 1 8 4 1
7 0 3363 2 7 4 2
8 1055 3340 1 3 2 2
9 1028 3364 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 804 144881 11639
1 611 12284 1609
2 442 2461 792
3 1451 20039 8228
4 1770 183721 31342
5 662 10036 1568
6 568 19313 2488
7 1297 231277 22126
8 493 4387 583
9 731 99079 18225
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 8723 40 0 1
1 8109 171 0 1
2 6774 8 0 1
3 11994 28 0 1
4 12440 20 0 0
5 9176 16 1 0
6 16422 160 1 0
7 8490 11 1 0
8 9082 0 1 0
9 12517 0 1 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 41386 1971 32380
1 223114 19483 17558
2 118888 10622 15448
3 177659 23629 11656
4 8895 382 5643
5 256538 32378 13577
6 171597 14355 27622
7 15311 594 15378
8 119691 5011 15809
9 2805 492 11617
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 SOLO 5 4 4 12
1 NONE 4 4 16 11
2 SOLO 2 14 4 4
3 CARRY 6 7 5 4
4 SUPPORT 4 14 6 4
5 SOLO 4 4 6 21
6 NONE 3 4 13 11
7 SOLO 4 4 1 12
8 CARRY 4 7 2 4
9 SUPPORT 7 21 1 4
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 294 ASooong False 100 TOP
1 223 sjiforgot False 100 JUNGLE
2 221 Fairy Lied False 100 MIDDLE
3 279 MingGou False 100 BOTTOM
4 338 JiangZeMin1926 False 100 UTILITY
5 67 xXxMommaLoverxXx False 200 TOP
6 160 Chemopig False 200 JUNGLE
7 354 Rotome False 200 MIDDLE
8 89 Dublaiar False 200 BOTTOM
9 193 MoistureCreature False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 67 2274 198698 15962
1 20 2274 256304 22045
2 15 2274 122033 12098
3 6 2274 204780 32617
4 19 2274 196852 32714
5 0 2274 284240 36235
6 15 2274 214270 19431
7 38 2274 247245 22765
8 10 2274 141452 6812
9 22 2274 101884 18718
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 46997 8093 212 1952
1 27907 12585 74 532
2 22844 4653 154 20
3 24868 5728 212 231
4 18249 1430 132 207
5 25973 3203 313 5
6 45681 15638 61 266
7 24598 3878 249 164
8 25004 7372 188 40
9 24312 2457 69 151
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 240 1 12431
1 161 1 20904
2 274 1 683
3 209 2 7081
4 105 1 4236
5 230 1 17664
6 428 1 23359
7 204 1 657
8 188 3 17374
9 301 1 0
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 2350 5892 3 3
1 951 2239 0 0
2 683 621 3 4
3 760 1218 1 6
4 989 165 4 6
5 2287 3220 3 3
6 2586 1636 1 2
7 45 729 0 1
8 1216 112 0 0
9 0 177 0 0
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 4 27 2 3
1 4 37 1 8
2 4 20 0 2
3 4 53 4 5
4 4 52 0 0
5 11 20 0 2
6 11 23 5 3
7 11 27 3 2
8 11 18 0 1
9 11 61 1 6
wardsPlaced win
0 13 True
1 4 True
2 10 True
3 13 True
4 30 True
5 13 False
6 3 False
7 12 False
8 10 False
9 26 False ,
assists baronKills bountyLevel champLevel championName \
0 13 0 0 18 Malphite
1 13 0 0 16 Poppy
2 10 0 0 18 Kayle
3 4 0 0 16 Vayne
4 16 0 0 15 Nami
5 3 0 0 16 Riven
6 5 1 5 18 Khazix
7 6 0 1 17 LeeSin
8 5 0 0 17 Cassiopeia
9 19 1 2 18 Morgana
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3271 9212 3271
1 717 13609 717
2 1085 7538 1085
3 1449 1449 1449
4 798 1058 798
5 3641 9481 3641
6 3388 68537 3388
7 2889 9092 2889
8 9013 17887 9013
9 3814 14108 3814
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 6 0 0 False False
1 8 0 2 False False
2 5 1 0 False False
3 13 0 0 False False
4 7 0 0 False False
5 9 0 0 False False
6 6 2 4 False False
7 1 0 0 False False
8 6 2 0 False True
9 6 0 0 True False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 14205 TOP 0
1 False 13161 JUNGLE 0
2 False 17594 MIDDLE 0
3 False 11355 BOTTOM 0
4 False 9521 UTILITY 0
5 False 10520 TOP 1
6 False 18612 JUNGLE 2
7 False 13058 MIDDLE 1
8 False 18864 BOTTOM 0
9 False 16496 UTILITY 1
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 5 3075 3157 3047 3181 3100
1 0 5 6632 3742 3047 4401 3076
2 0 5 3089 3157 3006 3115 4633
3 0 5 1055 6673 3046 3006 3153
4 0 5 3853 3006 4005 3050 1058
5 1 0 6630 3133 1037 1031 3071
6 3 0 3047 3142 6691 6676 6694
7 4 0 1055 3071 3111 3053 0
8 2 0 3116 3040 6653 3135 3165
9 2 0 3020 3853 3157 3135 6653
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 0 3340 1 4 2 1
1 3211 3340 2 7 4 1
2 3041 3363 2 9 6 1
3 1042 3340 1 6 3 2
4 1058 3364 0 2 0 1
5 3158 3340 0 1 0 1
6 3133 3340 3 11 5 5
7 6630 3340 0 2 0 1
8 3089 3340 3 16 10 2
9 3089 3364 2 9 6 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 581 116939 14880
1 662 13765 2225
2 752 186109 11750
3 359 1012 149
4 575 20227 7735
5 695 0 0
6 577 11355 1715
7 2097 32483 1521
8 671 185285 29651
9 885 130300 27663
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 13761 12 1 0
1 13048 128 1 0
2 7732 4 1 0
3 16943 8 1 0
4 10059 0 1 0
5 10552 9 0 0
6 10759 207 0 0
7 5374 64 0 1
8 8171 26 0 1
9 7649 38 0 1
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 97856 10559 8101
1 123522 17056 17312
2 53673 3372 14894
3 122506 10359 12469
4 2305 144 5745
5 111192 5808 16459
6 301049 24781 28196
7 120280 6798 15011
8 9860 77 11344
9 12451 1253 13225
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 SOLO 4 4 2 12
1 NONE 15 11 5 4
2 SOLO 4 4 4 12
3 CARRY 2 7 4 4
4 SUPPORT 3 4 1 3
5 SOLO 5 4 6 14
6 NONE 6 4 23 11
7 SOLO 3 4 3 14
8 CARRY 5 7 4 4
9 SUPPORT 3 4 6 14
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 67 xXxMommaLoverxXx False 100 TOP
1 137 SlothoftheAbyss False 100 JUNGLE
2 354 Rotome False 100 MIDDLE
3 193 MoistureCreature False 100 BOTTOM
4 40 laineybon False 100 UTILITY
5 62 ReformedCaveman False 200 TOP
6 293 hotmale69 False 200 JUNGLE
7 75 Nessy2468 False 200 MIDDLE
8 297 EnchantedKunaii False 200 BOTTOM
9 181 Boosted Azian False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 29 2369 226264 25440
1 39 2369 150303 21034
2 4 2369 255176 15299
3 4 2369 145139 13383
4 21 2369 22577 7879
5 20 2369 119564 6652
6 20 2369 329569 27946
7 11 2369 160728 8853
8 38 2369 195565 29728
9 78 2369 143736 29726
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 22666 651 269 882
1 31445 6647 31 812
2 23174 9235 319 329
3 30066 3816 161 10
4 16353 6451 19 216
5 27799 2669 132 89
6 40088 22698 75 592
7 21764 6793 138 354
8 20323 6569 229 563
9 23572 7558 78 121
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 200 1 11469
1 283 1 13015
2 210 5 15394
3 359 2 21620
4 220 5 44
5 301 1 8371
6 236 1 17164
7 12 1 7964
8 271 4 420
9 205 1 983
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 0 804 1 1
1 1751 1084 0 0
2 177 546 1 1
3 2873 653 0 0
4 0 548 0 1
5 844 787 1 1
6 1449 1131 1 2
7 534 1377 0 3
8 0 807 5 5
9 809 2697 2 5
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 11 21 0 0
1 11 15 0 2
2 11 32 1 1
3 11 24 0 3
4 11 34 0 2
5 2 21 0 0
6 2 41 2 5
7 2 20 0 1
8 2 19 2 0
9 2 66 0 6
wardsPlaced win
0 12 False
1 6 False
2 10 False
3 12 False
4 19 False
5 13 True
6 14 True
7 11 True
8 10 True
9 23 True ,
assists baronKills bountyLevel champLevel championName \
0 14 0 0 18 Nasus
1 16 2 5 18 FiddleSticks
2 14 0 7 18 Karthus
3 9 0 3 18 Kaisa
4 26 0 0 17 Janna
5 8 0 0 18 Sett
6 4 0 0 16 Poppy
7 8 0 0 18 Orianna
8 7 0 0 16 Ashe
9 13 0 0 15 Nami
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 9468 18256 9468
1 2266 38097 2266
2 6973 20128 6973
3 1354 22364 1354
4 1225 4898 1225
5 10786 13983 10786
6 1025 25542 1025
7 834 834 834
8 7064 10154 7064
9 776 1419 776
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 0 0 False False
1 5 6 2 False False
2 5 0 0 False False
3 7 2 0 False False
4 4 4 0 False False
5 11 0 0 False True
6 8 0 4 False False
7 3 1 0 False False
8 11 1 0 False False
9 8 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 16370 TOP 1
1 False 16105 JUNGLE 0
2 False 18799 MIDDLE 0
3 False 18146 BOTTOM 2
4 False 11968 UTILITY 0
5 False 17883 TOP 1
6 False 12924 JUNGLE 0
7 False 16438 MIDDLE 0
8 False 14683 BOTTOM 0
9 False 9591 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 3 1 1054 3065 3111 6632 3181
1 2 1 4637 3152 3157 1058 3020
2 1 1 4629 6653 3020 4637 3135
3 2 1 6671 3006 3033 6676 3036
4 3 1 3853 2065 3107 3011 6616
5 1 3 3075 6672 3153 3047 3053
6 1 3 6632 1037 3047 3742 3001
7 0 3 3089 3157 6655 3135 3020
8 1 3 3006 6672 3042 3153 3033
9 1 3 3853 3050 3006 4005 3504
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 3110 3340 2 6 3 1
1 1058 3330 2 9 5 2
2 1058 3340 2 11 7 2
3 1018 3363 4 14 4 2
4 3047 3364 0 1 0 1
5 1011 3340 2 8 2 1
6 3044 3340 0 5 0 1
7 3041 3363 1 7 6 1
8 1036 3340 1 6 2 2
9 0 3364 0 2 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 515 28575 6457
1 804 199719 26368
2 587 287865 48457
3 667 16904 7693
4 1276 53314 7492
5 645 3544 1131
6 906 16508 421
7 1539 224585 28242
8 525 4783 2979
9 527 17354 6846
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 13720 15 0 1
1 8581 180 0 1
2 4764 12 0 1
3 11026 13 0 1
4 6212 0 0 0
5 28227 20 1 0
6 20219 207 1 0
7 13760 22 1 0
8 19771 8 1 0
9 16424 0 1 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 2 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 216446 17290 39477
1 11552 52 28307
2 4456 147 14265
3 179208 16543 16794
4 3807 523 11931
5 243576 39392 26209
6 159178 6956 17350
7 22538 896 6507
8 179222 17486 6689
9 2176 336 4208
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 SOLO 6 4 4 12
1 NONE 5 4 19 11
2 SOLO 3 12 4 4
3 CARRY 5 7 5 4
4 SUPPORT 3 14 5 4
5 SOLO 6 4 11 14
6 NONE 17 11 5 4
7 SOLO 6 4 3 12
8 CARRY 4 7 5 4
9 SUPPORT 4 4 1 3
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 262 treemanguy False 100 TOP
1 224 InsomniaTM False 100 JUNGLE
2 304 Bigvemon1 False 100 MIDDLE
3 360 No HESI False 100 BOTTOM
4 152 Qeopt False 100 UTILITY
5 67 xXxMommaLoverxXx False 200 TOP
6 137 SlothoftheAbyss False 200 JUNGLE
7 354 Rotome False 200 MIDDLE
8 192 MoistureCreature False 200 BOTTOM
9 40 laineybon False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 26 2452 251475 24462
1 51 2452 232754 28899
2 16 2452 301726 51301
3 0 2452 213064 24773
4 48 2452 58452 8456
5 45 2452 279142 49593
6 19 2452 194226 8213
7 26 2452 249138 29673
8 51 2452 215953 22820
9 16 2452 19530 7182
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 59292 10931 234 1107
1 40291 21893 49 719
2 19712 1385 291 202
3 28887 6613 211 2
4 19693 17105 43 257
5 56280 6498 246 338
6 38969 11902 11 793
7 21452 5232 313 306
8 27412 6619 201 866
9 22120 9993 11 250
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 248 1 6453
1 142 1 21482
2 199 1 9403
3 245 2 16951
4 137 16 1330
5 465 1 32021
6 269 1 18539
7 102 1 2014
8 368 3 31946
9 252 5 0
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 713 6094 4 6
1 2478 3402 1 4
2 2695 682 3 5
3 536 1067 1 2
4 440 1549 1 3
5 9070 1843 4 4
6 835 1398 0 1
7 534 1183 0 1
8 2354 951 3 3
9 0 1487 0 2
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 9 25 0 2
1 9 101 6 5
2 9 22 0 0
3 9 40 3 4
4 9 63 4 9
5 11 23 0 0
6 11 27 0 2
7 11 22 2 0
8 11 41 1 5
9 11 38 0 4
wardsPlaced win
0 13 True
1 6 True
2 13 True
3 16 True
4 22 True
5 14 False
6 12 False
7 7 False
8 14 False
9 21 False ,
assists baronKills bountyLevel champLevel championName \
0 2 0 0 13 Tryndamere
1 4 0 0 9 Poppy
2 2 0 8 13 Kayle
3 4 0 3 10 Tristana
4 8 0 0 9 Nautilus
5 3 0 0 11 Chogath
6 1 0 0 10 Gwen
7 0 0 0 11 Sett
8 2 0 0 9 Lucian
9 3 0 0 9 Rell
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 1453 10525 1453
1 0 5468 0
2 394 3466 394
3 3068 4696 3068
4 707 941 707
5 820 3517 820
6 0 15435 0
7 0 0 0
8 869 1114 869
9 322 428 322
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 2 0 0 False False
1 3 0 1 False False
2 1 1 0 False False
3 2 1 0 False True
4 2 2 0 True False
5 4 0 0 False False
6 3 1 1 False False
7 3 2 0 False False
8 4 2 0 False False
9 3 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 8821 TOP 0
1 True 4882 JUNGLE 0
2 True 8114 MIDDLE 0
3 True 8433 BOTTOM 0
4 True 4907 UTILITY 0
5 True 5249 TOP 0
6 True 7019 JUNGLE 0
7 True 5337 MIDDLE 0
8 True 6053 BOTTOM 0
9 True 4435 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 0 1055 1037 3006 2055 3181
1 0 0 3044 2031 3047 3067 0
2 0 0 1054 1082 2055 3006 3115
3 0 0 1055 6672 3006 3086 1036
4 0 0 3860 3190 3047 1029 0
5 0 0 1054 2031 3802 3020 1052
6 0 0 4633 2031 3047 1042 1042
7 0 0 1055 1001 6630 0 0
8 0 0 1055 3006 6672 3057 0
9 0 0 3859 0 2010 3190 1001
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 3046 3340 1 3 2 1
1 0 3340 0 0 0 0
2 4635 3340 1 8 8 2
3 1036 3340 2 6 3 2
4 0 3340 0 0 0 0
5 1026 3340 0 0 0 0
6 3191 3364 2 6 4 2
7 0 3340 0 1 0 1
8 0 3340 1 2 2 2
9 1029 3364 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 689 0 0
1 249 7706 237
2 228 32381 7505
3 503 12488 1293
4 383 10520 3260
5 443 42510 4599
6 604 34222 3769
7 495 55 55
8 348 979 379
9 576 6306 3118
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 6355 12 0 0
1 2739 81 0 0
2 1023 0 0 0
3 1669 2 0 0
4 1207 0 0 0
5 1390 0 0 0
6 2972 96 0 0
7 4229 0 0 0
8 2295 0 0 0
9 2440 0 0 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 88216 8309 6514
1 51276 2272 6630
2 17206 2694 4961
3 47654 5663 4397
4 4012 1166 6342
5 11221 1488 6818
6 24315 2134 13982
7 45110 4436 5630
8 47627 7160 5585
9 3701 806 4526
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 SUPPORT 2 4 4 14
1 SUPPORT 9 11 2 4
2 SUPPORT 3 4 2 12
3 SUPPORT 2 4 3 7
4 SUPPORT 3 14 3 4
5 SUPPORT 2 4 3 14
6 SUPPORT 4 14 11 11
7 SUPPORT 3 4 2 12
8 SUPPORT 2 4 3 7
9 SUPPORT 4 14 3 4
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 67 xXxMommaLoverxXx False 100 TOP
1 137 SlothoftheAbyss False 100 JUNGLE
2 354 Rotome False 100 MIDDLE
3 226 RedScript False 100 BOTTOM
4 192 MoistureCreature False 100 UTILITY
5 152 Tongs False 200 TOP
6 269 EdiaLayna False 200 JUNGLE
7 224 Reiåtsu False 200 MIDDLE
8 164 Prostate Boy False 200 BOTTOM
9 191 ThicccGothMommy False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 2 1095 96443 8971
1 11 1095 65575 2971
2 8 1095 51320 10617
3 3 1095 64087 7282
4 28 1095 20779 4801
5 36 1095 62065 7140
6 5 1095 86258 8975
7 12 1095 47201 5084
8 0 1095 55667 7735
9 20 1095 15195 4432
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 16032 6930 139 12
1 9933 4705 3 474
2 6778 1597 128 214
3 6653 2851 135 9
4 7863 0 27 157
5 8575 958 103 360
6 17792 7446 3 144
7 10194 898 120 90
8 8362 2066 128 0
9 7189 863 32 40
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 65 1 8227
1 51 1 6592
2 10 4 1732
3 31 2 3943
4 28 0 6245
5 109 1 8332
6 53 1 27720
7 53 1 2034
8 84 3 7061
9 39 3 5188
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 662 3162 1 1
1 462 563 0 0
2 418 794 0 0
3 325 587 1 1
4 374 313 0 1
5 1052 366 0 0
6 3071 837 0 0
7 591 334 0 0
8 196 480 0 0
9 508 222 0 0
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 0 9 1 0
1 0 7 0 2
2 0 7 2 0
3 0 10 1 1
4 0 16 2 1
5 2 6 0 0
6 2 15 1 1
7 2 13 2 2
8 2 12 2 1
9 2 16 1 2
wardsPlaced win
0 5 True
1 3 True
2 2 True
3 7 True
4 11 True
5 4 False
6 2 False
7 6 False
8 7 False
9 8 False ,
assists baronKills bountyLevel champLevel championName \
0 3 0 5 14 Darius
1 0 0 5 11 Poppy
2 1 0 0 12 Kayle
3 6 0 0 10 Sivir
4 5 0 0 10 Lux
5 1 0 1 12 Gangplank
6 0 0 2 10 Viego
7 0 0 1 11 Lucian
8 4 0 0 9 KogMaw
9 1 0 0 8 Thresh
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 5048 17450 5048
1 0 10431 0
2 2393 2393 2393
3 1926 2508 1926
4 949 949 949
5 280 555 280
6 0 4957 0
7 444 444 444
8 0 0 0
9 0 0 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 0 1 0 False False
1 0 0 1 False False
2 1 1 0 False False
3 2 1 0 True False
4 4 1 0 False True
5 4 0 0 False False
6 6 3 1 False False
7 1 2 0 False False
8 7 1 0 False False
9 3 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 9491 TOP 0
1 True 6818 JUNGLE 0
2 True 6867 MIDDLE 0
3 True 7670 BOTTOM 0
4 True 7228 UTILITY 0
5 True 6695 TOP 0
6 True 6374 JUNGLE 0
7 True 5941 MIDDLE 0
8 True 4703 BOTTOM 0
9 True 4016 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 0 1054 3181 3047 3051 1083
1 0 0 6632 2031 3047 1029 1028
2 0 0 1054 1082 3006 2055 3115
3 0 0 3070 6676 6691 1036 2055
4 0 0 3020 6655 3853 1058 1052
5 0 0 2033 3047 6632 3044 0
6 0 0 3158 2031 6672 1043 0
7 0 0 6671 2031 3006 0 1055
8 0 0 3006 1036 3051 0 1057
9 0 0 3117 3855 1029 3067 2031
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 3057 3340 1 5 5 1
1 0 3340 1 5 5 1
2 4635 3363 0 1 0 1
3 1001 3363 1 4 4 2
4 1052 3364 2 6 3 1
5 0 3340 0 2 0 1
6 0 3364 1 2 2 1
7 0 3363 0 1 0 1
8 0 3340 0 1 0 1
9 1033 3364 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 0 0 0
1 0 9951 354
2 1067 34083 3668
3 798 0 0
4 434 24291 11859
5 388 6783 1196
6 268 7527 359
7 249 1229 404
8 272 5510 2540
9 459 3868 1908
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 1051 8 0 0
1 2074 116 0 0
2 431 4 0 0
3 1400 0 0 0
4 2382 0 0 0
5 1417 4 0 0
6 3189 80 0 0
7 2497 0 0 0
8 5312 0 0 0
9 4846 0 0 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 99646 9806 9130
1 79368 2329 7905
2 19325 1452 6958
3 51755 8618 3502
4 1322 573 3804
5 59283 4976 11442
6 57851 2373 12549
7 55807 5447 3425
8 10152 1887 4526
9 2625 755 4096
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 SUPPORT 3 4 4 6
1 SUPPORT 9 11 3 4
2 SUPPORT 1 4 1 12
3 SUPPORT 3 7 1 4
4 SUPPORT 5 14 4 4
5 SUPPORT 2 4 2 12
6 SUPPORT 2 4 10 11
7 SUPPORT 3 4 2 12
8 SUPPORT 2 4 3 7
9 SUPPORT 3 14 3 4
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 67 xXxMommaLoverxXx False 100 TOP
1 137 SlothoftheAbyss False 100 JUNGLE
2 354 Rotome False 100 MIDDLE
3 171 Doobie503 False 100 BOTTOM
4 214 Swaggernaut59 False 100 UTILITY
5 286 Franda1 False 200 TOP
6 114 JDDog False 200 JUNGLE
7 394 Desgraciado False 200 MIDDLE
8 80 DEADBEAT LOTTE False 200 BOTTOM
9 123 Banana Spanker False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 12 1140 106333 11362
1 11 1140 97910 2986
2 3 1140 56929 5121
3 0 1140 58425 8618
4 38 1140 26192 13011
5 3 1140 69445 7343
6 5 1140 71048 3299
7 0 1140 57037 5852
8 0 1140 20896 5356
9 11 1140 8795 3009
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 11409 2906 163 47
1 9979 5530 1 582
2 7654 1583 148 100
3 5933 1566 119 0
4 6676 0 16 149
5 14334 3531 124 163
6 16254 6873 22 43
7 6107 341 131 9
8 9994 1244 55 0
9 9047 137 25 34
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 0 1 6686
1 0 1 8589
2 38 3 3520
3 60 3 6670
4 102 0 578
5 100 1 3379
6 118 2 5670
7 12 1 0
8 132 2 5233
9 63 1 2300
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 1556 1227 3 3
1 301 0 0 0
2 0 264 1 1
3 0 1030 0 1
4 578 490 1 1
5 1171 1474 0 0
6 566 516 0 0
7 0 184 0 0
8 928 156 0 0
9 346 104 0 0
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 0 14 1 1
1 0 12 0 1
2 0 16 2 3
3 0 14 2 2
4 0 31 1 4
5 5 4 0 0
6 5 10 4 2
7 5 12 2 0
8 5 8 1 0
9 5 9 1 1
wardsPlaced win
0 7 True
1 4 True
2 5 True
3 6 True
4 14 True
5 3 False
6 6 False
7 8 False
8 6 False
9 5 False ,
assists baronKills bountyLevel champLevel championName \
0 2 0 0 12 Darius
1 7 0 0 14 Aatrox
2 8 0 0 14 Annie
3 5 0 1 14 Kaisa
4 19 0 0 13 Yuumi
5 5 0 0 16 XinZhao
6 8 0 2 13 Kindred
7 9 0 5 15 Orianna
8 16 0 0 14 Senna
9 23 1 0 13 Bard
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 524 3595 524
1 0 13639 0
2 3288 7286 3288
3 2365 11155 2365
4 0 0 0
5 15129 26430 15129
6 697 7820 697
7 3657 5326 3657
8 2804 9602 2804
9 1392 5013 1392
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 12 1 0 False False
1 6 3 1 False False
2 7 0 0 False False
3 10 1 0 False False
4 6 0 0 False False
5 4 0 0 False False
6 7 0 1 False False
7 6 2 0 False False
8 5 2 1 True False
9 5 3 1 False True
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 7048 TOP 0
1 False 12469 JUNGLE 0
2 False 11323 MIDDLE 0
3 False 10165 BOTTOM 0
4 False 8167 UTILITY 0
5 False 15114 TOP 2
6 False 9584 JUNGLE 0
7 False 11991 MIDDLE 1
8 False 11637 BOTTOM 0
9 False 9689 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 3 1054 6631 3047 3044 1028
1 0 3 3006 6691 3508 3036 1028
2 0 3 3157 6653 3165 3145 3158
3 0 3 1055 6672 3006 6676 3086
4 0 3 3504 2065 3011 2055 3853
5 2 0 3748 6631 3181 3047 3508
6 0 0 3006 2031 6672 1053 1043
7 1 0 1056 4629 3916 3020 6655
8 1 0 6672 3042 3094 1042 0
9 1 0 3853 4005 3916 3117 3742
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 0 3340 0 1 0 1
1 3133 3364 3 11 6 1
2 1056 3340 2 8 6 2
3 1036 3340 1 5 2 2
4 1004 3364 0 2 0 1
5 1042 3364 1 12 9 2
6 3123 3340 2 6 4 2
7 0 3363 3 10 5 2
8 3009 3363 2 8 4 2
9 2055 3364 1 5 4 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 305 10 10
1 550 5798 63
2 520 79308 16307
3 269 13278 4378
4 549 10709 7505
5 992 4898 1151
6 778 17165 1538
7 559 94642 20426
8 529 1108 274
9 873 19023 11572
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 6479 8 1 0
1 11680 126 1 0
2 8135 12 1 0
3 8511 8 1 0
4 2527 8 1 0
5 6376 22 0 0
6 5001 98 0 1
7 6666 1 0 1
8 5287 8 0 1
9 6221 8 0 1
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 1 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 60265 8101 16376
1 148346 22102 18030
2 10014 1129 9570
3 103879 8184 17557
4 1411 807 6545
5 165872 25774 19726
6 69499 6063 15645
7 10717 864 6273
8 86335 13987 7938
9 4330 2574 13993
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 DUO 3 6 3 4
1 NONE 16 11 4 4
2 DUO 5 4 7 14
3 CARRY 5 7 3 4
4 SUPPORT 6 14 6 3
5 SOLO 4 4 6 14
6 NONE 8 11 4 4
7 SOLO 5 4 2 12
8 CARRY 4 7 3 4
9 SUPPORT 5 14 3 4
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 321 TheActualPotato False 100 TOP
1 406 Krazkun False 100 JUNGLE
2 259 Yogipanda123 False 100 MIDDLE
3 192 MokeyM False 100 BOTTOM
4 410 DAK0 False 100 UTILITY
5 67 xXxMommaLoverxXx False 200 TOP
6 137 SlothoftheAbyss False 200 JUNGLE
7 354 Rotome False 200 MIDDLE
8 288 Taranosaurus04 False 200 BOTTOM
9 356 GamerPengu False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 18 1700 68282 9139
1 22 1700 160271 23272
2 20 1700 93601 18875
3 0 1700 124674 13338
4 22 1700 12964 9117
5 19 1700 176070 28004
6 6 1700 98037 8336
7 24 1700 107556 21887
8 27 1700 93863 15462
9 31 1700 24614 15215
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 24404 2171 106 69
1 30654 13997 27 247
2 18287 540 124 176
3 27228 6166 173 0
4 9517 12404 4 59
5 27634 11551 164 331
6 21810 10075 7 185
7 14234 1265 150 270
8 13659 7606 126 141
9 20945 4935 8 131
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 352 1 8006
1 164 1 6126
2 139 1 4278
3 230 2 7516
4 127 5 844
5 178 1 5299
6 220 9 11372
7 193 1 2196
8 129 4 6419
9 124 5 1260
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 1026 1548 0 0
1 1106 943 0 0
2 1438 581 0 2
3 774 1159 2 2
4 804 444 0 1
5 1078 1530 6 7
6 734 1163 0 2
7 596 1293 2 3
8 1199 433 2 2
9 1068 729 1 3
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 11 23 1 2
1 11 25 3 3
2 11 15 0 1
3 11 14 2 2
4 11 36 2 1
5 2 15 0 2
6 2 10 0 1
7 2 28 2 0
8 2 27 2 1
9 2 42 5 3
wardsPlaced win
0 10 False
1 4 False
2 8 False
3 7 False
4 20 False
5 7 True
6 6 True
7 6 True
8 10 True
9 16 True ,
assists baronKills bountyLevel champLevel championName \
0 2 0 0 17 Sett
1 9 0 0 15 Nidalee
2 6 0 0 16 Lux
3 3 0 0 15 Ashe
4 12 0 0 12 Rakan
5 1 0 2 18 LeeSin
6 9 1 0 14 FiddleSticks
7 3 0 1 17 Veigar
8 4 0 0 15 Jhin
9 4 0 0 13 Senna
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3993 7578 3993
1 0 9380 0
2 392 2106 392
3 3491 5098 3491
4 214 1078 214
5 8258 31348 8258
6 0 15415 0
7 2085 6167 2085
8 6035 15607 6035
9 4225 9564 4225
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 9 2 0 False False
1 4 1 2 False False
2 3 1 0 False False
3 3 2 0 False False
4 7 6 0 False False
5 2 0 0 False True
6 4 0 2 False False
7 4 2 0 False False
8 5 2 0 False False
9 4 3 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 11598 TOP 0
1 False 10602 JUNGLE 0
2 False 11937 MIDDLE 0
3 False 10753 BOTTOM 0
4 False 6881 UTILITY 0
5 False 16451 TOP 1
6 False 10049 JUNGLE 0
7 False 12265 MIDDLE 0
8 False 12323 BOTTOM 1
9 False 8597 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 2 3748 3047 3053 6630 0
1 0 2 4636 2031 3100 3158 3157
2 0 2 1056 6655 3145 3135 3102
3 0 2 6671 3046 3085 1042 1055
4 0 2 3860 3157 3001 2055 1029
5 2 0 3053 6632 3158 3181 3748
6 0 0 3157 3152 3020 2031 4630
7 0 0 3020 6656 3157 3089 1056
8 1 0 6671 3031 0 3009 6676
9 0 0 3864 6672 3158 1033 2055
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 0 3340 1 5 2 1
1 2055 3364 2 5 2 1
2 3020 3363 1 6 5 1
3 3006 3363 0 2 0 1
4 2422 3364 0 1 0 1
5 3067 3340 3 12 7 2
6 1026 3330 1 4 3 1
7 0 3363 1 4 2 1
8 1055 3363 1 5 4 2
9 3094 3364 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 399 0 0
1 783 122256 13232
2 1034 123549 19213
3 614 1495 1295
4 555 10808 5236
5 1228 52706 4515
6 1034 113355 10003
7 1076 145126 9086
8 1062 9939 1266
9 895 772 227
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 10305 12 1 0
1 6223 138 1 0
2 4181 0 1 0
3 1380 8 1 0
4 5416 0 1 0
5 10273 40 0 1
6 10693 132 0 0
7 7803 23 0 0
8 5401 4 0 0
9 8749 0 0 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 153950 19400 23894
1 23604 1664 20796
2 15732 702 5096
3 134435 9827 10775
4 6781 1319 10194
5 157159 19819 22946
6 7083 77 16877
7 16550 704 7534
8 138362 11129 10788
9 41843 7587 4777
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 SOLO 6 4 4 12
1 NONE 4 4 17 11
2 SOLO 2 12 3 4
3 CARRY 3 4 4 7
4 SUPPORT 4 4 7 3
5 NONE 5 4 7 14
6 NONE 11 11 2 4
7 SOLO 4 4 2 12
8 CARRY 6 7 4 4
9 SUPPORT 5 21 4 4
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 153 MojoJojo51 False 100 TOP
1 334 BLACKCHICKEN666 False 100 JUNGLE
2 174 Mona Timn False 100 MIDDLE
3 165 Majin Cluu False 100 BOTTOM
4 378 F0RD False 100 UTILITY
5 67 xXxMommaLoverxXx False 200 TOP
6 137 SlothoftheAbyss False 200 JUNGLE
7 353 Rotome False 200 MIDDLE
8 240 Bruce Swainn False 200 BOTTOM
9 222 sylerjar False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 23 1870 173614 22334
1 5 1870 158141 15958
2 23 1870 139281 19915
3 30 1870 141266 11123
4 31 1870 20956 6556
5 23 1870 229823 25895
6 22 1870 128774 10416
7 20 1870 163216 9790
8 14 1870 151212 12466
9 27 1870 50090 8218
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 35188 7402 196 252
1 27339 14358 28 208
2 9428 854 213 622
3 12504 3243 234 725
4 16173 2007 36 86
5 35169 9316 214 238
6 28178 16218 7 426
7 15599 2846 223 85
8 17220 6003 187 146
9 13672 7684 29 101
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 228 1 19664
1 154 3 12279
2 48 1 0
3 52 2 5335
4 162 4 3366
5 96 1 19957
6 106 1 8335
7 78 1 1540
8 126 3 2910
9 138 4 7474
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 2934 988 0 0
1 1061 319 0 0
2 0 150 0 0
3 0 348 1 1
4 0 562 0 0
5 1560 1950 5 6
6 335 607 0 0
7 0 262 0 2
8 70 1030 4 4
9 403 145 0 2
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 9 21 2 1
1 9 22 2 5
2 9 16 1 1
3 9 26 2 3
4 9 68 7 10
5 1 18 0 2
6 1 29 0 1
7 1 23 3 3
8 1 23 2 1
9 1 58 4 4
wardsPlaced win
0 10 False
1 2 False
2 10 False
3 11 False
4 28 False
5 9 True
6 2 True
7 9 True
8 12 True
9 29 True ,
assists baronKills bountyLevel champLevel championName \
0 2 0 0 10 Akali
1 2 0 0 10 Ekko
2 1 0 0 10 Lux
3 1 0 0 9 Ezreal
4 1 0 0 7 Yuumi
5 0 0 1 11 Chogath
6 1 0 1 9 LeeSin
7 1 0 0 10 Kayle
8 3 0 7 11 Yasuo
9 7 0 0 9 Blitzcrank
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 0 0 0
1 0 5017 0
2 246 246 246
3 1243 1243 1243
4 413 413 413
5 1367 1367 1367
6 774 5308 774
7 1237 1237 1237
8 4515 5894 4515
9 3246 3881 3246
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 1 0 False False
1 4 2 1 False False
2 3 0 0 False False
3 6 0 0 False False
4 5 2 0 False False
5 3 0 0 False True
6 1 1 1 False False
7 2 0 0 False False
8 1 1 0 False False
9 1 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False True False
9 True False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 4482 TOP 0
1 True 5807 JUNGLE 0
2 True 4817 MIDDLE 0
3 True 4673 BOTTOM 0
4 True 3474 UTILITY 0
5 True 6106 TOP 0
6 True 4932 JUNGLE 0
7 True 5289 MIDDLE 0
8 True 10628 BOTTOM 0
9 True 5051 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 2031 0 1026 1056 4635 3020 3340
1 0 3152 2031 3020 3057 0 0 3340
2 0 1026 3070 3802 3158 0 0 3340
3 0 3004 2031 3057 0 1036 1001 3340
4 0 3851 2065 2055 0 0 0 3340
5 0 1054 6662 3111 1028 0 0 3340
6 0 3158 2031 3134 1036 0 0 3340
7 0 1054 1082 3006 3115 0 0 3340
8 0 3006 6673 3031 3123 0 1055 3363
9 0 3859 3117 3190 0 1029 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 1 0 1
1 1 4 2 1
2 0 1 0 1
3 0 1 0 1
4 0 1 0 1
5 1 5 2 1
6 0 2 0 1
7 1 2 2 1
8 2 14 7 3
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 326 30497 6225
1 403 35607 4457
2 537 37112 4442
3 266 6022 1431
4 202 1696 702
5 408 30356 5888
6 682 15050 331
7 783 18339 2275
8 538 6474 1062
9 256 2709 776
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 5340 0 0 0
1 2021 56 0 0
2 1935 0 0 0
3 978 0 0 0
4 551 0 0 0
5 6818 4 0 0
6 3498 66 0 0
7 3965 4 0 0
8 2323 4 0 0
9 1430 1 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 8058
1 0 2 11851
2 0 3 5975
3 0 4 32842
4 0 5 675
5 0 6 14265
6 0 7 33933
7 0 8 17541
8 0 9 86975
9 0 10 4590
physicalDamageDealtToChampions physicalDamageTaken role \
0 1392 6343 SUPPORT
1 1669 10477 SUPPORT
2 659 3346 SUPPORT
3 3802 7266 SUPPORT
4 284 4041 SUPPORT
5 3026 6453 SUPPORT
6 2354 5761 SUPPORT
7 1198 3930 SUPPORT
8 14763 8049 DUO
9 550 3006 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 12 2 14 39
1 9 11 2 4 216
2 4 21 3 4 193
3 3 7 3 4 151
4 3 3 3 14 124
5 2 12 2 4 133
6 10 11 1 4 144
7 1 4 2 12 353
8 2 4 2 3 543
9 4 14 2 4 143
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 NaRuTo sHocK False 100 TOP 0
1 4 the Bloom IZ False 100 JUNGLE 10
2 mahdi 0o0 False 100 MIDDLE 22
3 soju mashija False 100 BOTTOM 0
4 5 the Bloom IZ False 100 UTILITY 1
5 ThePizzaMarine False 200 TOP 41
6 drunkdwarf009 False 200 JUNGLE 4
7 Rotome False 200 MIDDLE 2
8 lnstinctive False 200 BOTTOM 21
9 Righty False 200 UTILITY 7
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 953 41372 7830
1 953 52792 6397
2 953 43088 5101
3 953 38864 5233
4 953 2649 1263
5 953 47184 10390
6 953 55391 2933
7 953 35880 3474
8 953 95085 15874
9 953 12162 1635
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 12507 2320 78 36
1 13194 4837 18 325
2 5369 0 86 187
3 8613 675 95 0
4 4696 1619 0 11
5 13465 3301 81 500
6 9405 3718 9 250
7 7979 1370 94 106
8 10637 4799 136 104
9 4509 250 19 24
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 60 1 2817
1 90 1 5334
2 76 0 0
3 111 3 0
4 54 4 277
5 72 1 2562
6 21 1 6406
7 65 3 0
8 21 1 1636
9 10 1 4862
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 212 823 0 3
1 270 695 0 3
2 0 88 0 3
3 0 368 0 3
4 277 104 0 3
5 1475 194 0 0
6 247 145 0 0
7 0 84 0 0
8 48 264 3 0
9 308 72 0 0
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 6 1 0 6 False
1 13 2 0 7 False
2 8 0 2 4 False
3 7 0 1 4 False
4 9 3 0 6 False
5 11 0 2 5 True
6 7 1 1 3 True
7 6 0 1 3 True
8 7 1 0 5 True
9 8 2 0 6 True ,
assists baronKills bountyLevel champLevel championName \
0 2 0 4 14 Jax
1 1 0 1 13 Nocturne
2 3 0 0 13 Neeko
3 8 0 6 12 Ezreal
4 10 0 8 12 Swain
5 1 0 0 13 Heimerdinger
6 2 0 0 10 Volibear
7 0 0 1 13 Yone
8 1 0 0 10 Xayah
9 0 0 0 8 Nautilus
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2202 2202 2202
1 0 10410 0
2 1857 3933 1857
3 3386 8715 3386
4 2811 2932 2811
5 2294 2294 2294
6 0 14247 0
7 598 2390 598
8 164 259 164
9 0 418 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 0 0 False False
1 2 2 1 False False
2 2 1 0 False False
3 3 1 0 False True
4 0 2 0 True False
5 7 0 0 False False
6 4 2 1 False False
7 4 0 0 False False
8 9 2 0 False False
9 8 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 8016 TOP 0
1 True 8411 JUNGLE 0
2 True 7235 MIDDLE 0
3 True 9620 BOTTOM 0
4 True 8739 UTILITY 0
5 True 7856 TOP 0
6 True 5592 JUNGLE 0
7 True 8514 MIDDLE 0
8 True 5298 BOTTOM 0
9 True 4584 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 2033 3078 3111 1037 1053 1042 3340
1 0 6631 3158 3044 1028 2031 1037 3364
2 0 1056 3152 3020 3191 1052 0 3340
3 0 3042 6632 3158 3024 1029 1029 3363
4 0 3853 3157 1052 3020 6653 0 3364
5 0 1056 6653 3157 0 0 3020 3340
6 0 3047 2031 6632 0 0 0 3340
7 0 3086 3006 6673 1037 1038 0 3340
8 0 1055 6673 0 3006 0 0 3340
9 0 3859 6660 3047 1029 1033 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 5 4 1
1 1 7 6 2
2 0 2 0 1
3 2 10 6 2
4 1 8 8 3
5 2 5 2 1
6 0 0 0 0
7 1 4 2 1
8 0 1 0 1
9 0 2 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 191 13543 1792
1 821 8638 734
2 833 58735 7624
3 177 8167 2200
4 0 35267 12935
5 332 72168 14749
6 543 26428 463
7 444 10078 1514
8 221 0 0
9 270 5831 2098
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 10598 4 0 0
1 6022 124 0 0
2 1329 12 0 0
3 937 0 0 0
4 1350 0 0 0
5 2161 0 0 0
6 5570 88 0 0
7 6524 16 0 0
8 5043 4 0 0
9 7848 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 65642
1 0 2 104125
2 0 3 13212
3 0 4 71789
4 0 5 5106
5 0 6 13107
6 0 7 35742
7 0 8 74032
8 0 9 46989
9 0 10 5602
physicalDamageDealtToChampions physicalDamageTaken role \
0 5371 4394 SOLO
1 5978 11649 NONE
2 819 6187 SOLO
3 10759 5851 CARRY
4 1130 5597 SUPPORT
5 1402 10069 SOLO
6 1603 9203 NONE
7 4744 5914 SOLO
8 3995 8464 CARRY
9 1530 5497 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 2 12 248
1 3 4 10 11 280
2 3 14 3 4 52
3 2 4 3 7 294
4 2 4 3 14 199
5 2 12 3 4 133
6 2 4 10 11 353
7 3 14 3 4 202
8 4 7 3 4 149
9 4 4 4 3 271
summonerName teamEarlySurrendered teamId teamPosition \
0 hekin commie False 100 TOP
1 Jokerfied False 100 JUNGLE
2 YeezyMafia69 False 100 MIDDLE
3 Jacoobin False 100 BOTTOM
4 Littleax False 100 UTILITY
5 ThePizzaMarine False 200 TOP
6 Rotome False 200 JUNGLE
7 tenmo the mighty False 200 MIDDLE
8 Neozal False 200 BOTTOM
9 Mashengo False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 7 1212 82190 7163
1 114 1212 122030 7098
2 18 1212 77899 8660
3 0 1212 88366 12960
4 33 1212 41240 14831
5 18 1212 92166 16151
6 5 1212 72980 2299
7 7 1212 99174 7894
8 1 1212 50339 3995
9 30 1212 13968 3628
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 15022 2056 108 215
1 18009 9924 18 495
2 8938 1462 120 108
3 6789 1556 129 0
4 7025 3301 34 128
5 12370 967 143 131
6 15128 5224 5 218
7 12602 1376 144 161
8 13756 1434 93 4
9 13803 162 30 159
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 78 1 3005
1 48 1 9267
2 14 1 5951
3 30 3 8410
4 0 1 866
5 178 1 6890
6 104 1 10810
7 119 1 15063
8 145 2 3350
9 136 2 2535
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 30 1 1
1 385 337 0 1
2 216 1421 0 1
3 0 0 1 1
4 764 78 1 1
5 0 139 0 3
6 232 355 0 3
7 1635 164 0 3
8 0 249 0 3
9 0 458 0 3
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 6 0 0 4 True
1 15 2 3 2 True
2 19 1 1 7 True
3 14 1 2 7 True
4 21 2 2 9 True
5 8 0 1 5 False
6 12 2 0 4 False
7 7 0 0 5 False
8 16 3 2 7 False
9 13 1 1 7 False ,
assists baronKills bountyLevel champLevel championName \
0 1 0 0 15 Urgot
1 4 0 0 12 Ivern
2 5 0 0 13 Azir
3 6 0 0 12 Jhin
4 4 0 0 13 MissFortune
5 5 0 0 15 Quinn
6 7 0 6 15 Volibear
7 5 0 0 15 Sylas
8 6 1 5 13 Samira
9 14 0 0 13 Lulu
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 4985 12289 4985
1 74 12611 74
2 1705 1705 1705
3 411 1951 411
4 490 3337 490
5 4743 8661 4743
6 871 13284 871
7 552 552 552
8 5240 11499 5240
9 1379 2764 1379
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 4 0 0 False False
1 8 0 0 False False
2 8 0 0 False False
3 6 1 1 False False
4 1 2 1 False False
5 5 1 0 False False
6 2 3 1 False False
7 5 1 0 False False
8 4 0 0 False True
9 3 4 0 True False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 12004 TOP 1
1 True 6553 JUNGLE 0
2 True 8824 MIDDLE 0
3 True 8495 BOTTOM 0
4 True 8227 UTILITY 0
5 True 10900 TOP 0
6 True 11243 JUNGLE 0
7 True 10344 MIDDLE 0
8 True 11396 BOTTOM 0
9 True 7356 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1054 3047 6631 3748 3075 1033 3340
1 0 3117 2031 2065 3011 0 0 3340
2 0 3020 6653 3115 0 0 0 3340
3 0 1055 6671 3009 2055 3036 0 3340
4 0 3853 3133 3123 1028 6653 3158 3364
5 1 6671 1083 2015 1038 6676 3006 3364
6 1 6632 1011 3742 3047 3076 0 3364
7 1 2033 2421 3158 4629 3191 6653 3340
8 1 1055 6673 3006 6676 1018 0 3340
9 1 3114 4643 2065 0 3853 3158 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 9 5 2
1 0 0 0 0
2 1 4 2 2
3 0 1 0 1
4 1 5 5 1
5 1 4 3 1
6 1 6 6 1
7 2 7 4 1
8 1 9 5 3
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 1039 179 144
1 385 6019 2003
2 484 57694 12739
3 721 5560 1638
4 1178 42952 12368
5 417 1275 1176
6 437 50824 1831
7 613 89986 14924
8 525 15684 2503
9 464 9151 2757
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 6854 4 0 0
1 4159 102 0 0
2 5659 0 0 0
3 5316 12 0 0
4 1204 4 0 0
5 2951 8 0 0
6 8030 134 0 0
7 7839 4 0 0
8 9322 10 0 0
9 4723 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 114049
1 0 2 4418
2 0 3 9171
3 0 4 78616
4 0 5 29643
5 0 6 109815
6 0 7 73771
7 0 8 8254
8 0 9 93453
9 0 10 3192
physicalDamageDealtToChampions physicalDamageTaken role \
0 14755 11720 SOLO
1 739 7627 NONE
2 764 9852 SOLO
3 7702 6902 CARRY
4 5600 5585 SUPPORT
5 9729 9632 CARRY
6 7660 15773 SUPPORT
7 711 13461 SOLO
8 12261 10648 CARRY
9 861 5054 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 12 3 4 224
1 17 11 2 4 133
2 3 12 4 4 384
3 4 4 4 7 353
4 4 3 4 4 374
5 2 4 1 12 224
6 16 11 4 4 280
7 3 12 2 4 244
8 5 7 4 4 188
9 3 4 4 3 120
summonerName teamEarlySurrendered teamId teamPosition \
0 haterzunited False 100 TOP
1 ThePizzaMarine False 100 JUNGLE
2 Kawaii Boy Toy False 100 MIDDLE
3 Rotome False 100 BOTTOM
4 Psyrin False 100 UTILITY
5 Startle False 200 TOP
6 psymawn False 200 JUNGLE
7 ThatTastedPurple False 200 MIDDLE
8 kukukukuP False 200 BOTTOM
9 Man of Manis False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 22 1569 125887 16292
1 17 1569 251374 3006
2 11 1569 71011 13504
3 18 1569 84462 9341
4 24 1569 75315 17969
5 14 1569 119044 11106
6 16 1569 134778 10372
7 21 1569 113012 15823
8 0 1569 109265 14893
9 23 1569 12344 3618
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 18983 1123 164 206
1 11943 3110 0 48
2 16067 272 147 98
3 12291 3186 141 109
4 6994 54 76 388
5 12960 3109 190 65
6 23846 10550 19 363
7 22472 3370 170 364
8 20036 5254 147 1
9 9777 476 15 181
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 181 1 11659
1 186 1 240936
2 279 1 4145
3 122 3 286
4 36 1 2720
5 165 1 7953
6 35 1 10182
7 190 1 14771
8 96 3 128
9 56 1 0
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1392 408 4 4
1 264 156 1 4
2 0 556 0 4
3 0 72 0 4
4 0 204 0 4
5 200 376 2 5
6 880 42 0 5
7 188 1171 0 5
8 128 66 2 5
9 0 0 0 5
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 14 0 2 7 False
1 14 0 0 6 False
2 16 0 2 8 False
3 14 2 2 6 False
4 53 2 7 23 False
5 14 1 0 5 True
6 23 3 1 8 True
7 9 1 0 6 True
8 15 0 1 8 True
9 49 8 5 28 True ,
assists baronKills bountyLevel champLevel championName \
0 10 0 0 17 Sett
1 21 0 0 15 FiddleSticks
2 7 0 0 16 Zed
3 12 0 0 16 Twitch
4 16 0 0 14 Shaco
5 5 0 1 18 DrMundo
6 11 1 1 16 Diana
7 10 0 2 17 Pantheon
8 12 0 1 17 Kaisa
9 14 0 0 15 Nautilus
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 5443 8271 5443
1 1651 3225 1651
2 1812 1812 1812
3 3433 11673 3433
4 620 620 620
5 9674 12451 9674
6 3960 44415 3960
7 2174 4653 2174
8 4717 26906 4717
9 837 1990 837
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 0 0 False False
1 9 5 0 False False
2 9 1 0 False False
3 4 0 0 False True
4 6 0 0 True False
5 6 0 0 False False
6 9 3 4 False False
7 7 0 0 False False
8 8 5 1 False False
9 7 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 True False False
2 True False False
3 False True False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 15339 TOP 0
1 True 11279 JUNGLE 0
2 True 15008 MIDDLE 0
3 True 13975 BOTTOM 0
4 True 9785 UTILITY 0
5 True 15107 TOP 0
6 True 13219 JUNGLE 1
7 True 14610 MIDDLE 0
8 True 15895 BOTTOM 0
9 True 8660 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 3071 6631 3111 6609 3053 2421 3340
1 1 3157 3020 3152 3165 2055 0 3330
2 1 6692 2420 3158 6676 3036 3814 3340
3 1 6672 3006 3031 3036 3085 0 3363
4 1 3853 3158 1082 4629 6653 3070 3364
5 0 1054 3068 3047 3075 3065 3083 3340
6 0 2421 3157 4636 3020 3115 0 3364
7 0 6692 3053 1036 3047 3071 3077 3340
8 0 3031 3046 0 3036 6672 3006 3363
9 0 3190 3109 2424 3047 3076 3860 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 9 4 1
1 1 2 2 2
2 4 13 4 3
3 1 9 7 2
4 1 4 2 1
5 2 7 2 1
6 2 7 3 2
7 3 11 4 2
8 3 9 2 2
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 556 0 0
1 849 133231 21097
2 350 8555 1210
3 1623 0 0
4 656 58151 23981
5 456 82931 17843
6 475 153084 23048
7 661 4911 925
8 458 15034 4358
9 587 11962 4753
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 17824 27 0 0
1 13290 127 0 0
2 8844 4 0 0
3 5848 50 0 0
4 8177 0 0 0
5 7072 0 0 0
6 10657 148 0 0
7 8080 4 0 0
8 9748 36 0 0
9 12787 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 183962
1 0 2 6140
2 0 3 110985
3 0 4 143336
4 0 5 3919
5 0 6 91410
6 0 7 30021
7 0 8 124384
8 0 9 174543
9 0 10 12645
physicalDamageDealtToChampions physicalDamageTaken role \
0 27756 27045 SOLO
1 452 22120 NONE
2 22831 13580 SOLO
3 20471 11080 CARRY
4 1115 9832 SUPPORT
5 12162 39159 SOLO
6 1916 19801 NONE
7 19825 19052 SOLO
8 18915 13914 CARRY
9 1400 10000 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 7 14 3 4 362
1 3 4 17 11 358
2 8 14 4 4 177
3 5 4 4 7 248
4 3 3 5 14 477
5 4 12 4 4 133
6 5 4 18 11 439
7 4 4 5 14 352
8 7 7 4 4 271
9 5 4 7 7 145
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 AndyLHYL False 100 TOP 28
1 Rextotious False 100 JUNGLE 54
2 LetMeACE False 100 MIDDLE 10
3 ShiningDitto False 100 BOTTOM 21
4 kiritoCTA False 100 UTILITY 45
5 ThePizzaMarine False 200 TOP 16
6 ArcticDragon False 200 JUNGLE 12
7 Rotome False 200 MIDDLE 17
8 TSM Bot False 200 BOTTOM 0
9 Zooberri False 200 UTILITY 48
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 2104 200392 35245
1 2104 146381 23220
2 2104 121401 25767
3 2104 173446 27448
4 2104 63058 26084
5 2104 187866 31022
6 2104 203273 26303
7 2104 133947 22053
8 2104 205116 25937
9 2104 43163 6154
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 46456 9527 218 320
1 36310 14555 27 855
2 24459 3650 180 154
3 17858 3699 164 434
4 18878 1179 34 442
5 55773 16923 221 265
6 32427 9662 36 209
7 29022 6107 162 26
8 25532 7457 212 76
9 26374 4230 38 227
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 244 1 16430
1 355 1 7009
2 306 1 1860
3 107 2 30109
4 145 1 988
5 192 1 13524
6 325 1 20167
7 298 1 4652
8 277 2 15538
9 236 3 18556
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 7489 1586 2 8
1 1671 900 0 8
2 1726 2034 0 8
3 6977 929 2 8
4 988 868 0 8
5 1016 9541 4 5
6 1338 1968 1 5
7 1302 1890 0 5
8 2663 1869 2 5
9 0 3586 0 5
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 25 0 2 11 False
1 79 6 6 14 False
2 17 1 1 11 False
3 21 0 3 11 False
4 53 1 10 20 False
5 19 1 3 10 True
6 36 3 5 12 True
7 6 2 1 4 True
8 36 5 9 14 True
9 52 0 2 26 True ,
assists baronKills bountyLevel champLevel championName \
0 15 0 0 18 Yone
1 20 0 5 17 Zac
2 12 0 4 18 Pantheon
3 11 0 0 15 Jhin
4 17 0 7 16 Lux
5 7 1 0 17 DrMundo
6 7 1 0 16 Elise
7 8 0 0 17 Yasuo
8 7 0 0 16 Draven
9 7 0 0 13 Leona
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 8899 18560 8899
1 1370 9852 1370
2 3874 10898 3874
3 2696 8367 2696
4 2865 6553 2865
5 6103 16923 6103
6 159 17840 159
7 3706 14697 3706
8 5072 30824 5072
9 737 1300 737
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 4 0 0 False False
1 4 1 2 False False
2 6 2 0 False True
3 7 0 0 False False
4 6 1 0 False False
5 5 1 1 False False
6 7 5 3 False False
7 11 3 0 False False
8 5 0 0 False False
9 6 4 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False True False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 16686 TOP 0
1 False 13008 JUNGLE 0
2 False 15764 MIDDLE 0
3 False 10960 BOTTOM 0
4 False 13316 UTILITY 2
5 False 12267 TOP 0
6 False 12136 JUNGLE 0
7 False 16122 MIDDLE 0
8 False 18663 BOTTOM 1
9 False 8643 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 3035 3047 6673 3033 3031 3072 3340
1 1 3068 3143 3075 3047 3105 1029 3364
2 1 6692 3074 3047 3071 3053 0 3340
3 1 6671 3009 3036 3094 0 1055 3340
4 1 3853 6655 4643 3158 4629 3011 3364
5 2 3065 3068 3047 3075 1011 1028 3340
6 2 3157 3165 4636 1082 3020 4632 3364
7 2 3139 3143 6673 3031 3006 1053 3340
8 2 3033 6673 3009 3031 6676 3072 3363
9 2 3860 3190 3047 3075 3024 1028 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 5 4 1
1 1 6 5 3
2 3 13 5 2
3 1 3 2 1
4 1 7 7 2
5 1 2 2 1
6 1 6 2 1
7 1 7 5 2
8 1 11 11 3
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 1026 53590 6232
1 795 126788 13608
2 322 4068 1710
3 975 8367 542
4 364 104503 29200
5 946 71426 13620
6 662 102098 12583
7 590 13384 2046
8 1299 566 362
9 993 6396 2336
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 9056 48 0 0
1 9721 116 0 0
2 7148 20 0 0
3 4863 20 0 0
4 1895 16 0 0
5 14842 16 1 0
6 10240 119 1 0
7 11100 24 1 0
8 10485 48 1 0
9 7410 0 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 238815
1 0 2 18521
2 0 3 161596
3 0 4 106019
4 0 5 9616
5 0 6 71905
6 0 7 21227
7 0 8 223885
8 0 9 244422
9 0 10 3744
physicalDamageDealtToChampions physicalDamageTaken role \
0 16576 11840 SOLO
1 1070 23595 NONE
2 27652 18064 SOLO
3 10120 14525 CARRY
4 1467 8661 SUPPORT
5 3090 25135 SOLO
6 846 19549 NONE
7 23306 24092 SOLO
8 20932 12399 CARRY
9 1070 7983 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 4 12 263
1 5 4 21 11 183
2 6 4 9 14 352
3 6 7 4 4 87
4 8 14 5 4 193
5 1 12 3 4 52
6 4 4 15 11 345
7 5 4 7 14 354
8 4 4 6 7 277
9 2 4 3 14 167
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 StalwartHide False 100 TOP 21
1 Coolgum15 False 100 JUNGLE 47
2 Rotome False 100 MIDDLE 32
3 Dublaiar False 100 BOTTOM 19
4 lofr False 100 UTILITY 73
5 Bobby Tokoto False 200 TOP 14
6 iStayKrazy False 200 JUNGLE 24
7 Solar Divinity False 200 MIDDLE 25
8 Khano False 200 BOTTOM 12
9 Tiramiisu False 200 UTILITY 25
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 2338 296922 27326
1 2338 157934 16592
2 2338 170261 30982
3 2338 115007 10707
4 2338 117480 31520
5 2338 144812 16711
6 2338 131852 14575
7 2338 240517 26770
8 2338 248876 22885
9 2338 15245 3710
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 21324 2847 260 157
1 35365 39270 49 619
2 26807 8212 190 78
3 19824 5475 114 164
4 10701 597 66 404
5 42237 17174 197 250
6 31601 14736 28 103
7 37737 10897 249 175
8 24153 7034 201 93
9 16263 1530 24 35
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 134 1 4516
1 133 5 12624
2 186 1 4595
3 159 3 620
4 129 1 3360
5 191 1 1480
6 205 1 8527
7 402 1 3248
8 190 4 3887
9 122 1 5104
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 4516 428 3 5
1 1914 2048 1 5
2 1620 1594 1 5
3 44 435 0 5
4 853 144 2 5
5 0 2259 3 7
6 1145 1811 0 7
7 1418 2544 0 7
8 1589 1268 2 7
9 304 870 0 7
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 28 0 2 16 True
1 17 1 7 1 True
2 25 2 2 10 True
3 22 0 1 13 True
4 80 1 7 26 True
5 35 1 1 11 False
6 27 5 2 6 False
7 24 3 3 15 False
8 25 0 1 10 False
9 45 4 2 17 False ,
assists baronKills bountyLevel champLevel championName \
0 4 0 1 15 Nasus
1 5 0 1 13 Shaco
2 4 0 1 14 Ekko
3 3 0 14 14 Jhin
4 18 0 1 13 Morgana
5 1 0 0 14 Kayle
6 3 0 1 13 Rammus
7 3 0 0 13 Pantheon
8 2 0 0 12 Samira
9 2 0 0 12 Zyra
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 14430 21980 14430
1 3232 23060 3232
2 1281 3718 1281
3 7637 13081 7637
4 706 5101 706
5 4886 5961 4886
6 0 4393 0
7 3066 3066 3066
8 0 0 0
9 0 114 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 0 0 False False
1 3 0 2 False False
2 1 1 0 False True
3 0 0 1 True False
4 0 6 0 True False
5 5 0 0 False False
6 3 0 1 False False
7 8 1 0 False False
8 8 0 0 False False
9 7 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False True False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 10933 TOP 2
1 False 8824 JUNGLE 1
2 False 11700 MIDDLE 0
3 False 13824 BOTTOM 1
4 False 8720 UTILITY 0
5 False 9462 TOP 0
6 False 8941 JUNGLE 0
7 False 8387 MIDDLE 0
8 False 6141 BOTTOM 0
9 False 6173 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1054 6632 3158 3110 3211 0 3340
1 0 3006 2031 6691 3057 3133 1018 3340
2 0 3100 3152 3041 3020 1058 0 3340
3 0 1037 6671 3006 3508 3036 1038 3340
4 0 4643 3853 2031 3108 3117 3157 3364
5 4 3006 1056 3115 4633 3057 3113 3340
6 4 3047 6662 2031 3075 1011 1033 3340
7 4 6692 2033 3111 3071 0 0 3363
8 4 6673 3047 3134 0 0 1055 3340
9 4 3853 2420 3020 6653 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 2 0 1
1 0 2 0 1
2 1 12 11 3
3 1 14 14 2
4 0 1 0 1
5 1 3 3 1
6 0 2 0 1
7 1 2 2 1
8 0 0 0 0
9 0 2 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 665 7572 1831
1 751 34075 4027
2 1546 114383 21473
3 0 2561 2301
4 0 27318 11005
5 692 90606 7955
6 805 62634 3615
7 742 5606 475
8 436 4342 186
9 627 30535 8893
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 6373 24 0 0
1 5395 114 0 0
2 4000 12 0 0
3 3239 16 0 0
4 3714 4 0 0
5 6988 20 1 0
6 9364 87 1 0
7 10744 0 1 0
8 8830 0 1 0
9 7233 0 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 156800
1 0 2 73559
2 0 3 18326
3 0 4 144167
4 0 5 3924
5 0 6 41545
6 0 7 23481
7 0 8 92709
8 0 9 41626
9 0 10 3344
physicalDamageDealtToChampions physicalDamageTaken role \
0 7815 17962 SOLO
1 5096 13906 NONE
2 2589 10327 DUO
3 15708 4087 DUO
4 1198 4193 SUPPORT
5 4148 15194 SOLO
6 1215 10620 NONE
7 13293 11093 SOLO
8 1227 8068 CARRY
9 1048 5044 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 6 3 12 259
1 17 11 4 4 62
2 3 4 4 14 265
3 2 7 2 4 293
4 5 3 4 4 294
5 4 4 2 12 113
6 4 4 16 11 263
7 4 4 2 12 352
8 5 7 3 4 87
9 3 4 4 14 183
summonerName teamEarlySurrendered teamId teamPosition \
0 Your Turret False 100 TOP
1 UserNameBrand False 100 JUNGLE
2 REQUlS False 100 MIDDLE
3 Hero Doge False 100 BOTTOM
4 CynicalSynapsis False 100 UTILITY
5 Lougeemlin False 200 TOP
6 StalwartHide False 200 JUNGLE
7 Rotome False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 Coolgum15 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 10 1696 164373 9647
1 21 1696 125190 9769
2 24 1696 134798 24580
3 31 1696 149723 18159
4 56 1696 31242 12203
5 4 1696 143894 12103
6 27 1696 97867 5714
7 17 1696 98316 13768
8 0 1696 46976 1413
9 22 1696 36424 10526
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 24706 1955 179 682
1 19603 7996 12 775
2 14593 4518 164 230
3 7327 4485 169 80
4 8437 2500 9 107
5 22745 6117 183 200
6 20174 5822 47 948
7 22161 3871 155 36
8 17037 3299 102 1
9 12378 1207 23 160
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 121 1 0
1 78 1 17555
2 46 1 2088
3 0 2 2995
4 0 1 0
5 159 3 11741
6 99 5 11751
7 258 1 0
8 188 3 1008
9 129 1 2544
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 370 5 2
1 646 302 1 2
2 518 266 1 2
3 150 0 3 2
4 0 530 1 2
5 0 562 0 11
6 884 190 0 11
7 0 324 1 11
8 0 138 0 11
9 584 100 0 11
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 13 0 0 7 True
1 18 0 0 9 True
2 19 1 0 7 True
3 13 0 1 8 True
4 81 4 6 33 True
5 12 0 0 8 False
6 14 0 0 8 False
7 10 2 0 5 False
8 9 0 0 7 False
9 23 0 2 13 False ,
assists baronKills bountyLevel champLevel championName \
0 6 0 0 18 Fiora
1 10 0 0 16 XinZhao
2 7 0 3 17 Leblanc
3 9 0 0 15 Ashe
4 10 0 0 13 Thresh
5 9 0 0 18 DrMundo
6 11 0 3 17 Khazix
7 5 1 10 18 Kayle
8 12 0 1 16 Samira
9 15 0 1 16 Zyra
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 9144 9344 9144
1 2601 22042 2601
2 2259 4852 2259
3 499 6176 499
4 330 2111 330
5 7049 11217 7049
6 2189 20175 2189
7 8345 25854 8345
8 2007 4631 2007
9 1064 6897 1064
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 8 2 0 True False
1 7 1 0 False True
2 2 1 1 False False
3 4 1 1 False False
4 6 0 0 False False
5 4 0 0 False False
6 8 0 2 False False
7 3 1 1 False False
8 7 0 0 False False
9 5 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 14469 TOP 1
1 False 14021 JUNGLE 0
2 False 13101 MIDDLE 0
3 False 12587 BOTTOM 0
4 False 8566 UTILITY 0
5 False 15355 TOP 0
6 False 12547 JUNGLE 0
7 False 17783 MIDDLE 1
8 False 12128 BOTTOM 0
9 False 10237 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 3053 3074 3047 3026 6630 0 3340
1 1 3006 3100 6609 4636 3115 1033 3364
2 1 3157 6656 3135 3020 3165 0 3340
3 1 3035 6672 2055 3006 3031 3046 3363
4 1 3860 3190 3050 3117 1057 3066 3364
5 1 3065 6662 3075 3009 4401 3077 3340
6 1 6691 2031 3158 6676 3814 1033 3340
7 1 4633 3041 3006 3115 3089 0 3363
8 1 6673 3047 6676 3035 1018 1055 3340
9 1 3853 3157 1011 3020 6653 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 3 0 1
1 3 9 3 1
2 2 6 3 1
3 2 5 2 2
4 1 4 2 1
5 2 5 2 1
6 1 4 3 2
7 1 11 10 2
8 0 3 0 1
9 1 4 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 663 2409 989
1 598 78655 7647
2 909 123804 16850
3 921 2413 2213
4 711 11262 5514
5 634 81810 20858
6 660 9043 838
7 1260 209535 20775
8 657 11526 1423
9 514 64330 26417
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 22417 10 1 0
1 15564 165 1 0
2 11526 4 1 1
3 10428 20 1 0
4 12584 1 1 0
5 9512 4 0 0
6 6702 168 0 0
7 7475 41 0 0
8 6754 8 0 0
9 5553 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 201089
1 0 2 117942
2 0 3 18341
3 0 4 132241
4 0 5 4436
5 0 6 130019
6 0 7 159635
7 0 8 51695
8 0 9 97136
9 0 10 3942
physicalDamageDealtToChampions physicalDamageTaken role \
0 19691 18784 SOLO
1 14415 22647 NONE
2 1824 10318 SOLO
3 14846 6017 CARRY
4 502 5673 SUPPORT
5 8556 25348 SOLO
6 13383 24640 NONE
7 3723 15218 SOLO
8 5057 12205 CARRY
9 802 6759 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 3 12 241
1 5 4 16 11 236
2 4 4 4 14 225
3 5 7 4 4 84
4 3 4 3 14 92
5 6 6 4 12 263
6 20 11 5 4 271
7 4 4 4 12 352
8 6 7 4 4 87
9 5 4 6 14 183
summonerName teamEarlySurrendered teamId teamPosition \
0 ONNNIII CHAAANNN False 100 TOP
1 ChaosRepulsor False 100 JUNGLE
2 isobasso False 100 MIDDLE
3 DaFlamingPanda False 100 BOTTOM
4 The Spicy Noodle False 100 UTILITY
5 StalwartHide False 200 TOP
6 SugoiOverlord False 200 JUNGLE
7 Rotome False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 Coolgum15 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 11 2108 227089 31116
1 25 2108 210493 23560
2 25 2108 157880 19054
3 42 2108 147218 18405
4 29 2108 19912 6611
5 23 2108 222568 29414
6 6 2108 177968 15313
7 8 2108 302525 25280
8 0 2108 128983 6577
9 64 2108 82882 28200
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 42157 14957 284 209
1 39060 20259 37 562
2 22105 4458 231 55
3 16700 2926 218 648
4 18887 1627 40 91
5 43635 15746 264 1420
6 33093 14144 17 186
7 24275 15220 258 372
8 20446 4406 180 3
9 12973 1008 48 243
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 334 3 23589
1 236 1 13896
2 53 1 15735
3 112 4 12563
4 152 3 4213
5 153 1 10738
6 268 1 9289
7 83 5 41295
8 221 3 20320
9 166 1 14610
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 10435 955 3 8
1 1498 848 2 8
2 380 260 1 8
3 1345 254 0 8
4 594 630 0 8
5 0 8775 2 6
6 1091 1750 2 6
7 781 1581 3 6
8 96 1486 1 6
9 980 660 0 6
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 28 2 0 12 False
1 29 1 1 9 False
2 40 1 2 13 False
3 21 2 1 8 False
4 61 0 6 25 False
5 20 0 1 12 True
6 21 0 2 7 True
7 27 1 5 7 True
8 20 0 1 12 True
9 58 1 5 24 True ,
assists baronKills bountyLevel champLevel championName \
0 3 0 0 16 Volibear
1 4 0 0 13 Khazix
2 3 0 0 18 Kayle
3 5 0 2 15 Jhin
4 2 0 1 14 Xerath
5 5 1 1 18 Singed
6 11 1 0 17 Rumble
7 7 0 2 18 Galio
8 9 0 0 16 Ashe
9 5 0 1 15 Pyke
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 7036 11216 7036
1 172 9254 172
2 2903 4043 2903
3 1535 2924 1535
4 477 1490 477
5 736 17334 736
6 778 43382 778
7 893 6145 893
8 5110 11465 5110
9 544 2969 544
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 1 0 False False
1 5 1 2 False False
2 4 1 0 False False
3 4 0 0 False False
4 7 0 0 False False
5 2 0 0 False False
6 1 5 4 False False
7 0 0 0 False False
8 6 0 0 False True
9 5 2 0 True False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False True False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 12122 TOP 0
1 True 9681 JUNGLE 0
2 True 13416 MIDDLE 0
3 True 11600 BOTTOM 0
4 True 9630 UTILITY 0
5 True 13131 TOP 0
6 True 13330 JUNGLE 0
7 True 11809 MIDDLE 0
8 True 15285 BOTTOM 0
9 True 14342 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3108 6632 3158 3115 3110 3067 3340
1 0 2003 6691 3158 6676 1037 0 3340
2 0 3041 3006 0 3115 4633 3089 3363
3 0 6671 3009 6676 3094 3123 1055 3340
4 0 3853 2420 3020 4628 3108 6655 3340
5 0 3916 1082 3742 4637 6653 3111 3364
6 0 3020 3108 3157 4636 3067 4637 3364
7 0 3152 3157 3165 1011 3047 1052 3340
8 0 3153 6671 3006 3046 3085 1038 3340
9 0 6693 3142 3117 3179 6695 3857 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 1 0 1
1 1 2 2 1
2 0 3 0 1
3 1 3 2 1
4 0 5 0 1
5 1 5 4 1
6 0 1 0 1
7 1 2 2 1
8 2 7 2 1
9 3 12 6 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 515 95626 5245
1 1310 7587 152
2 943 130036 5361
3 528 3235 659
4 418 84594 21400
5 1100 147417 11404
6 1922 192168 14096
7 0 147697 16051
8 409 6023 4327
9 675 0 0
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 18039 24 0 0
1 6232 136 0 0
2 14214 26 0 0
3 5908 4 0 0
4 3281 1 0 0
5 5506 16 0 0
6 8093 188 0 0
7 2330 14 0 0
8 9618 8 0 0
9 11490 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 83577
1 0 2 103280
2 0 3 51056
3 0 4 112464
4 0 5 1286
5 0 6 9349
6 0 7 26702
7 0 8 6354
8 0 9 151243
9 0 10 39682
physicalDamageDealtToChampions physicalDamageTaken role \
0 6525 8495 DUO
1 6097 14285 NONE
2 2007 7276 DUO
3 7932 9521 CARRY
4 506 8907 SUPPORT
5 441 13233 SOLO
6 446 17489 NONE
7 54 7752 SOLO
8 13048 9860 CARRY
9 11736 12763 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 4 12 263
1 2 4 19 11 163
2 4 4 3 12 352
3 5 7 4 4 87
4 5 4 5 14 183
5 7 14 5 6 186
6 17 11 3 4 196
7 4 4 4 12 37
8 4 4 4 7 78
9 5 4 5 14 281
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 StalwartHide False 100 TOP 16
1 Dorito Taco False 100 JUNGLE 1
2 Rotome False 100 MIDDLE 5
3 Dublaiar False 100 BOTTOM 24
4 Coolgum15 False 100 UTILITY 25
5 Randolph LS False 200 TOP 16
6 Draw Me Closer False 200 JUNGLE 9
7 TALOOK False 200 MIDDLE 24
8 2002 hundayi False 200 BOTTOM 42
9 TR Ankara 06 False 200 UTILITY 29
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 2161 199642 11771
1 2161 123591 6627
2 2161 195181 7794
3 2161 118137 8591
4 2161 86719 22745
5 2161 157958 13038
6 2161 235951 15793
7 2161 158282 16105
8 2161 167270 17376
9 2161 50677 14676
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 28473 3802 229 500
1 21741 10154 21 167
2 22629 7063 270 246
3 15783 4080 180 106
4 12915 824 64 179
5 18850 2909 199 92
6 25614 11604 51 496
7 10227 1285 205 77
8 20012 2181 220 686
9 25076 7824 58 139
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 271 1 20438
1 201 1 12724
2 191 4 14087
3 101 2 2437
4 176 1 838
5 52 1 1192
6 54 1 17080
7 0 1 4230
8 201 2 10003
9 165 1 10995
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 1938 2 4
1 378 1224 0 4
2 424 1139 1 4
3 0 353 1 4
4 838 727 0 4
5 1192 110 0 4
6 1250 32 2 4
7 0 143 0 4
8 0 533 2 4
9 2940 821 0 4
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 17 1 1 12 False
1 22 1 3 9 False
2 12 1 1 8 False
3 18 0 6 10 False
4 42 0 5 26 False
5 29 0 7 5 True
6 43 5 5 13 True
7 21 0 1 11 True
8 22 0 1 12 True
9 76 4 9 37 True ,
assists baronKills bountyLevel champLevel championName \
0 10 0 0 18 Olaf
1 15 0 0 18 Zac
2 18 0 0 18 Zoe
3 14 0 1 18 Varus
4 20 0 1 18 Lux
5 24 0 0 18 Shen
6 20 2 5 18 LeeSin
7 12 0 4 18 Veigar
8 15 0 0 18 Samira
9 19 0 0 18 Morgana
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 6368 26357 6368
1 1113 19168 1113
2 1626 10904 1626
3 7365 12489 7365
4 1986 3836 1986
5 8389 14735 8389
6 3967 37884 3967
7 9057 56737 9057
8 206 19655 206
9 0 8467 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 11 1 0 False True
1 12 1 2 False False
2 6 1 0 False False
3 9 2 0 False False
4 6 1 0 False False
5 12 5 0 False False
6 9 0 5 False False
7 4 2 0 False False
8 9 0 2 False False
9 6 20 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 True False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 19616 TOP 1
1 False 18002 JUNGLE 0
2 False 19514 MIDDLE 0
3 False 22243 BOTTOM 0
4 False 15442 UTILITY 0
5 False 23032 TOP 0
6 False 21642 JUNGLE 1
7 False 25048 MIDDLE 2
8 False 18037 BOTTOM 0
9 False 15102 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 3 3065 3047 3143 6630 3053 3075 3364
1 3 3068 3143 3065 3001 3075 3111 3340
2 3 3157 6655 3089 3041 3158 3135 3340
3 3 6693 3158 3142 6694 3042 6676 3363
4 3 3853 6655 3157 3020 3102 3135 3363
5 1 3748 3065 3001 3111 6662 3075 3340
6 1 3111 3026 6692 3071 6333 3053 3340
7 1 3165 6656 3157 3742 3089 3135 3363
8 1 6673 3047 6676 3033 3026 3036 3340
9 1 3853 4005 3157 4643 4637 3117 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 9 5 1
1 0 4 0 1
2 2 8 4 1
3 2 11 5 1
4 3 8 3 1
5 1 8 3 1
6 2 12 5 2
7 3 14 4 2
8 1 4 2 2
9 1 6 2 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 899 3417 368
1 632 236591 21082
2 1035 242784 42220
3 774 16920 8024
4 885 101839 43453
5 561 93278 19369
6 629 79417 6825
7 1322 460988 50621
8 991 26073 2366
9 971 47770 19426
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 37125 27 1 0
1 29254 169 1 0
2 12119 16 1 0
3 14927 46 1 0
4 7589 17 1 0
5 34199 51 0 0
6 32603 143 0 1
7 18686 39 0 0
8 19536 60 0 0
9 14850 8 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 220248
1 0 2 28846
2 0 3 26024
3 0 4 338779
4 0 5 5585
5 0 6 216022
6 0 7 200285
7 0 8 25923
8 0 9 190671
9 0 10 4892
physicalDamageDealtToChampions physicalDamageTaken role \
0 19433 28675 SOLO
1 1178 50800 NONE
2 2110 14099 SOLO
3 66902 19405 CARRY
4 615 8710 SUPPORT
5 26576 34728 SOLO
6 34914 33367 NONE
7 1510 19802 SOLO
8 13456 26650 CARRY
9 1054 14344 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 10 6 3 12 103
1 8 4 24 11 164
2 8 12 12 4 141
3 9 4 13 7 169
4 8 14 7 4 101
5 13 14 9 12 174
6 5 4 32 11 73
7 8 4 5 12 352
8 8 7 4 4 87
9 7 4 6 14 62
summonerName teamEarlySurrendered teamId teamPosition \
0 Kiiwi False 100 TOP
1 xXgoon69Xx False 100 JUNGLE
2 ErnieTEETS False 100 MIDDLE
3 Alex Summers False 100 BOTTOM
4 TypeElectric False 100 UTILITY
5 FistedWontons False 200 TOP
6 ninjaguy2511 False 200 JUNGLE
7 Rotome False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 IOnlyPlayYuumiM8 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 26 3514 264023 28493
1 55 3514 290943 27259
2 58 3514 312855 50868
3 84 3514 384449 79957
4 96 3514 115243 49246
5 61 3514 346576 54601
6 18 3514 305432 45394
7 71 3514 498010 55915
8 3 3514 220396 17209
9 80 3514 55821 22671
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 69811 15071 216 728
1 92183 94613 86 696
2 27944 7931 262 236
3 36174 14053 306 788
4 17099 1302 38 316
5 79316 13824 271 1552
6 75889 32940 109 198
7 43179 15289 351 246
8 50605 15859 190 38
9 31970 8715 31 122
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 529 1 40357
1 451 5 25505
2 353 3 44046
3 404 4 28750
4 243 1 7817
5 547 1 37276
6 388 1 25730
7 225 1 11098
8 390 3 3651
9 284 1 3158
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 8691 4010 3 10
1 4998 12129 0 10
2 6536 1725 0 10
3 5030 1841 5 10
4 5177 798 0 10
5 8656 10388 4 9
6 3654 9919 2 9
7 3783 4689 4 9
8 1386 4418 0 9
9 2190 2774 0 9
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 47 1 8 14 False
1 79 1 6 23 False
2 38 1 3 18 False
3 93 2 6 21 False
4 101 1 7 55 False
5 67 5 5 26 True
6 30 0 3 14 True
7 31 3 5 11 True
8 39 0 4 22 True
9 132 18 10 71 True ,
assists baronKills bountyLevel champLevel championName \
0 1 0 1 14 Fiora
1 2 1 1 13 Khazix
2 6 0 1 16 Malzahar
3 5 0 2 14 Tristana
4 6 0 0 12 Thresh
5 2 0 0 13 Renekton
6 7 0 0 13 Lillia
7 5 0 0 15 Veigar
8 1 0 3 12 Ezreal
9 9 0 0 12 Yuumi
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 4752 9417 4752
1 1986 34335 1986
2 5910 9449 5910
3 9688 17602 9688
4 569 1302 569
5 1035 3268 1035
6 0 9435 0
7 782 4800 782
8 0 600 0
9 0 80 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 1 0 0 False True
1 5 5 3 False False
2 5 0 0 False False
3 1 1 0 False False
4 3 3 0 False False
5 8 1 0 False False
6 5 3 1 False False
7 2 1 0 False False
8 1 0 0 False False
9 3 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 10103 TOP 1
1 False 8558 JUNGLE 0
2 False 12757 MIDDLE 0
3 False 10267 BOTTOM 2
4 False 7023 UTILITY 0
5 False 6663 TOP 0
6 False 8615 JUNGLE 0
7 False 11247 MIDDLE 0
8 False 8964 BOTTOM 0
9 False 5304 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3076 3047 6673 3133 1053 1031 3340
1 0 6691 3134 1036 1028 0 3158 3364
2 0 3041 6655 3040 1058 3020 1058 3340
3 0 6672 1055 3006 3095 1037 2055 3340
4 0 3068 1057 3857 1028 3111 0 3364
5 3 1055 6631 2055 1053 3047 1042 3340
6 3 3020 2031 6653 3191 3108 2055 3364
7 3 3020 6656 2421 3089 2033 3108 3363
8 3 6632 3158 3004 1036 0 1055 3340
9 3 3851 6617 3114 1052 1052 0 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 1 8 7 2
1 0 2 0 1
2 1 5 3 1
3 1 3 2 1
4 0 1 0 1
5 0 0 0 0
6 1 3 2 1
7 1 8 8 1
8 1 4 3 2
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 1393 1448 603
1 493 5926 498
2 470 152956 23066
3 1267 22232 2109
4 758 9870 4796
5 569 2370 410
6 474 97643 11635
7 1529 128494 16310
8 1180 4857 1755
9 955 8413 3914
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 6678 18 0 0
1 8940 115 0 1
2 6417 8 0 0
3 5105 0 0 0
4 8995 4 0 0
5 5710 12 1 0
6 10583 100 1 0
7 8189 4 1 0
8 7340 4 1 0
9 1142 0 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 70549
1 0 2 94542
2 0 3 11890
3 1 4 85200
4 0 5 3669
5 0 6 78300
6 0 7 10692
7 0 8 14116
8 0 9 69846
9 0 10 4
physicalDamageDealtToChampions physicalDamageTaken role \
0 6855 8154 NONE
1 7438 12041 NONE
2 0 2745 SOLO
3 16494 3554 CARRY
4 442 4566 SUPPORT
5 3708 12556 DUO
6 658 15841 NONE
7 728 8178 DUO
8 4753 11735 CARRY
9 0 3596 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 14 2 4 149
1 16 11 4 4 205
2 4 12 4 4 343
3 3 7 3 4 131
4 3 4 2 14 213
5 3 4 3 12 289
6 4 4 15 11 414
7 4 4 1 12 352
8 4 7 2 4 87
9 3 14 1 3 98
summonerName teamEarlySurrendered teamId teamPosition \
0 Karñia False 100 TOP
1 Ley Dud False 100 JUNGLE
2 22Tango False 100 MIDDLE
3 LebronIsLove False 100 BOTTOM
4 BagfootBandit False 100 UTILITY
5 CaptainMetal False 200 TOP
6 Audileminialex1 False 200 JUNGLE
7 Rotome False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 BabygirlMoon False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 8 1599 99365 9628
1 2 1599 117414 8058
2 45 1599 176161 23066
3 4 1599 116262 20679
4 21 1599 20377 5473
5 7 1599 91276 4118
6 19 1599 144499 16410
7 31 1599 147960 17038
8 0 1599 75639 6509
9 7 1599 8757 4254
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 16329 7025 123 132
1 21511 10474 16 76
2 9706 24 212 310
3 9242 4209 172 11
4 14865 917 32 70
5 20705 2889 132 52
6 27256 7307 55 363
7 16869 2523 193 136
8 19710 3527 139 39
9 4934 11385 2 23
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 42 5 27368
1 137 1 16946
2 178 1 11315
3 39 2 8829
4 85 4 6837
5 191 1 10605
6 159 1 36163
7 49 1 5349
8 33 2 936
9 96 5 340
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 2169 1496 1 0
1 121 530 4 0
2 0 543 2 0
3 2075 582 4 0
4 234 1304 0 0
5 0 2437 0 11
6 4117 830 0 11
7 0 501 0 11
8 0 634 0 11
9 340 196 0 11
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 16 0 1 8 True
1 27 5 2 7 True
2 13 0 1 8 True
3 12 2 3 4 True
4 50 3 3 24 True
5 16 3 0 7 False
6 21 5 5 4 False
7 8 1 0 7 False
8 11 0 0 9 False
9 15 0 1 9 False ,
assists baronKills bountyLevel champLevel championName \
0 3 0 1 17 Gangplank
1 7 1 2 16 Vi
2 8 0 6 17 Ahri
3 9 0 1 16 Ezreal
4 13 1 0 14 Senna
5 4 0 0 13 Khazix
6 2 0 0 16 Fiora
7 4 0 0 15 Talon
8 4 0 0 14 Jhin
9 5 0 0 13 Lux
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 6806 10402 6806
1 1826 24362 1826
2 3998 11322 3998
3 4851 26202 4851
4 4147 9559 4147
5 0 9252 0
6 4097 5870 4097
7 0 909 0
8 0 2345 0
9 0 674 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 9 1 0 False False
1 3 6 1 False False
2 2 1 2 False False
3 3 0 0 False False
4 4 5 1 False False
5 8 2 1 False False
6 7 0 0 False True
7 8 5 0 False False
8 4 0 0 False False
9 8 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False True False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 12601 TOP 1
1 False 12914 JUNGLE 1
2 False 15980 MIDDLE 0
3 False 12661 BOTTOM 1
4 False 9938 UTILITY 0
5 False 8935 JUNGLE 0
6 False 13683 TOP 0
7 False 10440 MIDDLE 0
8 False 8608 BOTTOM 0
9 False 6786 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3078 3047 2033 3053 6609 2055 3363
1 0 0 3078 3047 3071 6333 0 3364
2 0 1056 6656 3157 4629 3089 3158 3340
3 0 1055 6632 3110 3042 3158 1053 3363
4 0 3864 6632 3004 0 3009 0 3364
5 3 3158 2031 6691 6695 3133 1036 3364
6 3 6609 3047 0 3508 6673 3074 3340
7 3 3074 6630 3133 3067 3111 0 3364
8 3 6671 3009 3134 1018 0 1055 3340
9 3 3853 6655 3020 3145 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 3 2 1
1 2 8 5 2
2 3 17 9 1
3 1 6 4 1
4 0 1 0 1
5 0 3 0 1
6 3 11 6 2
7 0 3 0 1
8 1 3 2 1
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 306 5823 3093
1 796 7354 0
2 1287 88332 26281
3 761 17923 6358
4 789 0 0
5 553 8788 642
6 912 2168 938
7 385 0 0
8 1105 11557 656
9 491 26891 15769
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 1021 19 0 0
1 4246 133 0 0
2 3779 16 0 0
3 7362 8 0 0
4 4436 12 0 0
5 8985 106 1 0
6 8535 16 1 0
7 7632 4 1 0
8 6964 4 1 0
9 6266 0 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 162088
1 0 2 136550
2 0 3 15518
3 0 4 128903
4 0 5 29848
5 0 6 100631
6 0 7 129824
7 0 8 126463
8 0 9 104491
9 0 10 1690
physicalDamageDealtToChampions physicalDamageTaken role \
0 12656 20078 SOLO
1 12542 16989 NONE
2 1290 13441 DUO
3 18669 11346 DUO
4 5821 8229 SUPPORT
5 6895 19939 NONE
6 17884 25177 SOLO
7 10775 17764 SOLO
8 6697 9077 CARRY
9 424 8294 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 5 4 4 12 235
1 20 11 4 4 148
2 6 14 4 4 272
3 3 4 4 7 158
4 7 7 4 4 60
5 4 4 17 11 352
6 5 4 8 14 24
7 6 14 5 4 237
8 3 7 3 4 87
9 4 4 2 14 134
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 iHaxx False 100 TOP 7
1 ToastyTaco1 False 100 JUNGLE 23
2 Pan The Panda False 100 MIDDLE 34
3 Miggles False 100 BOTTOM 1
4 ZeigElric False 100 UTILITY 30
5 Rotome False 200 JUNGLE 4
6 RyeBreadPitt False 200 TOP 6
7 Libra In Orbit False 200 MIDDLE 3
8 Dublaiar False 200 BOTTOM 23
9 Alece False 200 UTILITY 57
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1933 187675 18289
1 1933 158685 13046
2 1933 146011 33718
3 1933 149730 25288
4 1933 29848 5821
5 1933 116756 8376
6 1933 137654 24484
7 1933 127938 12251
8 1933 133600 7405
9 1933 28794 16406
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 24016 5967 193 308
1 23084 8063 35 339
2 18573 4752 193 88
3 20182 5399 189 44
4 13653 9875 14 83
5 32007 13067 30 89
6 35743 14167 165 101
7 29009 5671 191 208
8 16296 4312 129 181
9 15031 858 14 197
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 241 1 19763
1 88 1 14780
2 91 1 42161
3 81 2 2904
4 134 5 0
5 264 1 7338
6 268 2 5661
7 218 1 1475
8 141 3 17551
9 192 1 212
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 2539 2915 2 1
1 504 1848 0 1
2 6145 1352 2 1
3 260 1473 3 1
4 0 987 3 1
5 838 3082 0 11
6 5661 2030 1 11
7 1475 3611 0 11
8 51 254 0 11
9 212 469 0 11
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 29 3 1 11 True
1 33 6 4 9 True
2 29 3 3 11 True
3 12 0 2 6 True
4 55 5 3 24 True
5 22 2 3 6 False
6 20 0 4 10 False
7 22 5 3 9 False
8 8 0 0 7 False
9 29 0 1 17 False ,
assists baronKills bountyLevel champLevel championName \
0 2 0 0 13 Teemo
1 1 0 0 13 DrMundo
2 4 0 0 14 Kayle
3 2 0 0 12 Jhin
4 7 0 0 11 Seraphine
5 6 1 2 16 Akali
6 4 0 0 14 MasterYi
7 7 0 1 13 Leona
8 1 0 9 16 Kayn
9 9 0 1 14 Lucian
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3639 3639 3639
1 0 7075 0
2 577 4446 577
3 0 426 0
4 0 456 0
5 3263 10015 3263
6 6154 27479 6154
7 903 2051 903
8 2780 26677 2780
9 7060 17518 7060
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 10 0 0 False False
1 5 0 1 False True
2 4 2 0 True False
3 2 0 0 False False
4 6 0 0 False False
5 3 0 0 False False
6 5 0 0 False False
7 0 0 0 False False
8 0 2 1 False False
9 1 1 1 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 7944 TOP 0
1 False 10034 JUNGLE 0
2 False 8449 MIDDLE 0
3 False 6866 BOTTOM 0
4 False 5786 UTILITY 0
5 False 13139 TOP 2
6 False 10159 MIDDLE 0
7 False 7327 UTILITY 0
8 False 13282 JUNGLE 0
9 False 11587 BOTTOM 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 2 3068 3115 3020 0 0 0 3340
1 2 6662 3801 3047 3075 1011 3067 3364
2 2 1054 3006 1082 3115 4633 0 3363
3 2 6671 3009 3035 2031 0 1055 3363
4 2 3853 4005 3158 3916 1052 0 3364
5 0 3157 4637 1054 1082 4633 3020 3340
6 0 6672 2031 3006 3153 3123 3086 3340
7 0 3857 3190 3158 1011 3076 0 3364
8 0 6693 6676 3158 6695 3133 3067 3364
9 0 6672 1036 3153 1055 3006 3070 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 0 1 0 1
1 1 6 3 1
2 0 1 0 1
3 0 1 0 1
4 0 0 0 0
5 4 12 5 2
6 1 3 2 2
7 0 1 0 1
8 1 9 9 1
9 0 2 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 478 58612 9033
1 922 64510 9997
2 974 51459 6672
3 883 2126 0
4 516 21540 5975
5 896 92294 23878
6 561 183 0
7 0 7346 1808
8 0 13646 3398
9 1448 4382 857
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 7667 8 1 0
1 10932 121 1 0
2 6032 4 1 0
3 3703 1 1 0
4 3418 0 1 0
5 10856 4 0 0
6 8350 8 0 0
7 4138 0 0 0
8 7532 203 0 0
9 3907 5 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 24766
1 0 2 42105
2 0 3 30187
3 0 4 58428
4 0 5 2336
5 0 6 12765
6 0 7 97259
7 0 8 9991
8 0 9 198526
9 0 10 117801
physicalDamageDealtToChampions physicalDamageTaken role \
0 1860 13067 NONE
1 4494 19650 NONE
2 2761 10762 SOLO
3 5105 5343 CARRY
4 697 6330 SUPPORT
5 1139 11228 SOLO
6 7932 9588 SOLO
7 1433 5962 SUPPORT
8 18032 17367 NONE
9 9580 8524 CARRY
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 1 4 0 12 25
1 4 4 16 11 24
2 3 4 2 12 352
3 3 7 2 4 87
4 5 4 4 14 134
5 5 14 3 12 185
6 3 4 2 14 22
7 2 4 2 3 49
8 2 4 18 11 39
9 2 4 3 7 23
summonerName teamEarlySurrendered teamId teamPosition \
0 TheVoidNeedsFood False 100 TOP
1 RyeBreadPitt False 100 JUNGLE
2 Rotome False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 Alece False 100 UTILITY
5 mugggetsu False 200 TOP
6 EladioCarrionn False 200 MIDDLE
7 IsJustPoppy False 200 UTILITY
8 Murdererr False 200 JUNGLE
9 BenjaDAs False 200 BOTTOM
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 16 1662 94948 10894
1 12 1662 116646 15536
2 6 1662 83979 9434
3 15 1662 60555 5105
4 18 1662 24588 7385
5 1 1662 112033 27274
6 1 1662 118322 9620
7 18 1662 22088 3241
8 7 1662 229993 21990
9 0 1662 131093 10917
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 22388 223 142 270
1 32366 14581 14 952
2 17413 3941 183 170
3 9212 2725 122 62
4 10513 293 18 145
5 23158 6641 157 53
6 18192 3995 150 22
7 10101 2233 43 29
8 24899 16157 21 379
9 12859 3259 214 2
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 355 1 11570
1 192 1 10030
2 108 5 2331
3 68 3 0
4 169 3 712
5 125 1 6973
6 176 1 20880
7 0 4 4750
8 0 1 17820
9 40 3 8908
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 1652 1 10
1 1044 1782 0 10
2 0 617 0 10
3 0 166 0 10
4 712 764 0 10
5 2256 1074 1 1
6 1688 254 3 1
7 0 0 0 1
8 559 0 2 1
9 478 428 4 1
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 12 0 1 7 False
1 15 0 2 0 False
2 18 2 1 9 False
3 8 0 0 6 False
4 25 0 0 16 False
5 13 0 0 8 True
6 4 0 0 3 True
7 39 0 5 16 True
8 27 2 4 6 True
9 19 1 0 10 True ,
assists baronKills bountyLevel champLevel championName \
0 2 0 9 13 Sylas
1 7 0 3 13 Kayn
2 5 0 2 13 Ziggs
3 2 0 0 12 Vayne
4 14 0 1 10 Nami
5 1 0 0 10 Rumble
6 1 0 0 11 Darius
7 4 0 0 11 Ryze
8 2 0 1 11 Ezreal
9 4 0 0 10 Yuumi
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 0 3017 0
1 0 17502 0
2 30122 32639 30122
3 3259 3259 3259
4 559 957 559
5 0 7499 0
6 635 1519 635
7 0 3516 0
8 0 1069 0
9 0 0 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 0 4 0 False False
1 3 1 1 False False
2 0 1 0 False False
3 5 0 0 True False
4 2 1 0 False True
5 7 2 2 False False
6 5 1 0 False False
7 6 4 0 False False
8 6 0 0 False False
9 3 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False True False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 8627 TOP 0
1 True 8472 JUNGLE 0
2 True 10027 MIDDLE 0
3 True 9620 BOTTOM 0
4 True 6547 UTILITY 0
5 True 6595 JUNGLE 0
6 True 6366 TOP 0
7 True 6117 MIDDLE 0
8 True 5796 BOTTOM 0
9 True 5355 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3158 6656 0 3157 0 0 3340
1 0 3158 2031 3134 1036 6693 1028 3364
2 0 1056 6655 3020 3040 0 0 3340
3 0 1055 6672 2055 3046 3006 1053 3363
4 0 3853 4005 3158 2055 1052 3114 3364
5 0 4633 2031 3108 3020 2055 1052 3364
6 0 1055 6631 3111 3067 1036 2055 3340
7 0 3070 6656 3111 0 0 2055 3364
8 0 3057 3158 3133 3067 3044 1055 3340
9 0 3853 6617 3114 1052 1052 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 9 9 2
1 1 4 3 1
2 1 2 2 1
3 3 10 4 2
4 0 2 0 1
5 0 3 0 1
6 0 1 0 1
7 0 1 0 1
8 0 1 0 1
9 1 2 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 0 49924 15820
1 457 6935 1335
2 0 105558 11103
3 580 430 269
4 862 7089 4505
5 644 50195 5960
6 333 0 0
7 525 58889 6555
8 246 3572 1480
9 574 9130 5794
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 3369 4 0 0
1 6552 128 0 0
2 2567 4 0 0
3 3960 0 0 0
4 4338 0 0 0
5 10638 88 0 0
6 11076 9 0 0
7 5920 0 0 0
8 3208 0 0 0
9 3967 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 10990
1 0 2 110690
2 0 3 9821
3 0 4 54608
4 0 5 3321
5 0 6 12778
6 0 7 73364
7 0 8 7156
8 0 9 34381
9 0 10 1627
physicalDamageDealtToChampions physicalDamageTaken role \
0 67 9364 SOLO
1 9432 12623 NONE
2 259 2227 SOLO
3 9196 8134 CARRY
4 712 3346 SUPPORT
5 273 11188 NONE
6 7928 4953 SOLO
7 689 8406 SOLO
8 2776 5569 CARRY
9 1226 2893 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 12 3 4 229
1 14 11 3 4 281
2 1 21 3 4 237
3 2 4 2 7 193
4 4 14 3 4 173
5 2 4 11 11 352
6 3 4 4 14 263
7 2 12 4 4 239
8 2 7 1 4 87
9 3 4 4 14 134
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 Q killed you False 100 TOP 22
1 BennnyyyG False 100 JUNGLE 5
2 Albaricoque False 100 MIDDLE 9
3 BobDoodlePants False 100 BOTTOM 7
4 jerryfoot82 False 100 UTILITY 16
5 Rotome False 200 JUNGLE 7
6 StalwartHide False 200 TOP 16
7 BF109G False 200 MIDDLE 22
8 Dublaiar False 200 BOTTOM 0
9 Alece False 200 UTILITY 10
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1287 66993 16773
1 1287 132206 11243
2 1287 146778 11363
3 1287 63638 12685
4 1287 10820 5627
5 1287 70581 6805
6 1287 75300 9864
7 1287 66089 7289
8 1287 40448 4256
9 1287 15393 7606
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 14365 3836 121 244
1 19746 8714 21 277
2 4795 0 164 182
3 12418 2979 133 42
4 8299 6472 6 82
5 22599 6076 15 273
6 16955 2463 127 104
7 15648 805 120 52
8 9838 886 88 0
9 7769 6240 12 28
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 0 1 6078
1 61 1 14580
2 0 0 31398
3 142 2 8599
4 51 5 410
5 174 1 7607
6 91 1 1936
7 185 1 44
8 109 2 2495
9 43 5 4636
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 885 1631 0 0
1 474 570 0 0
2 0 0 6 0
3 3219 322 1 0
4 410 614 0 0
5 572 772 0 7
6 1936 926 0 7
7 44 1321 0 7
8 0 1060 0 7
9 586 908 0 7
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 17 4 1 10 True
1 20 1 4 2 True
2 18 1 0 7 True
3 10 1 0 6 True
4 33 2 3 14 True
5 9 3 2 4 False
6 13 2 1 8 False
7 17 6 1 8 False
8 6 0 0 4 False
9 14 0 3 4 False ,
assists baronKills bountyLevel champLevel championName \
0 9 0 2 17 Jayce
1 22 0 0 14 Thresh
2 8 0 0 14 Jhin
3 10 0 1 17 Katarina
4 9 1 4 18 Khazix
5 3 0 0 18 Tryndamere
6 10 0 0 15 Nunu
7 1 0 0 11 Galio
8 8 0 0 15 Twitch
9 15 0 0 14 Pyke
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 6927 17666 6927
1 956 956 956
2 4973 6388 4973
3 2055 5959 2055
4 1838 22380 1838
5 10670 30457 10670
6 0 13681 0
7 1872 1872 1872
8 581 6115 581
9 684 1731 684
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 1 0 False False
1 8 4 0 True False
2 8 1 0 False True
3 8 3 1 False False
4 3 2 1 False False
5 6 3 0 False False
6 13 0 3 False False
7 7 1 0 False False
8 11 1 0 False False
9 14 0 1 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 False False False
7 False False False
8 False False False
9 True False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 14600 TOP 1
1 False 9860 UTILITY 0
2 False 12767 BOTTOM 0
3 False 16254 MIDDLE 0
4 False 16019 JUNGLE 1
5 False 18278 TOP 0
6 False 11595 JUNGLE 0
7 False 9386 MIDDLE 0
8 False 13242 BOTTOM 0
9 False 9842 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 6692 3071 6694 3814 3158 0 3363
1 0 3190 3857 3050 3109 3117 1029 3364
2 0 1055 6671 3031 3009 6676 0 3340
3 0 3157 3020 6662 3115 4637 3082 3364
4 0 6691 3142 2055 3158 6694 3814 3364
5 2 6671 6675 3035 3072 3031 3006 3364
6 2 4636 3020 4628 3089 0 0 3364
7 2 2031 3152 2421 3047 1056 1011 3340
8 2 3006 3085 6671 1038 6676 1018 3340
9 2 3857 3179 3117 6693 3134 1037 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 9 5 2
1 1 3 3 1
2 2 6 3 1
3 4 13 4 2
4 3 20 12 2
5 2 9 4 1
6 2 6 3 1
7 2 7 4 2
8 2 9 3 1
9 1 3 2 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 534 12159 3188
1 619 15916 8744
2 824 7342 2465
3 423 129647 27535
4 764 6434 1938
5 810 2782 2231
6 489 79130 24041
7 365 49647 12063
8 434 1211 1211
9 362 0 0
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 6555 8 0 0
1 8163 0 0 0
2 5956 20 0 0
3 14100 12 0 0
4 7092 123 0 0
5 11330 51 1 0
6 13317 108 1 0
7 5107 0 1 0
8 9160 17 1 0
9 8767 8 1 1
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 149913
1 0 2 9766
2 0 3 117032
3 0 4 14702
4 0 5 147968
5 0 6 312927
6 0 7 28167
7 0 8 5157
8 0 9 119409
9 0 10 31691
physicalDamageDealtToChampions physicalDamageTaken role \
0 27514 17215 SOLO
1 3285 15090 SUPPORT
2 10563 15832 SOLO
3 2290 22005 CARRY
4 34737 20721 NONE
5 26684 31216 SOLO
6 1349 35718 NONE
7 1143 12541 SOLO
8 23951 18800 CARRY
9 10701 22324 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 1 12 4 4 513
1 3 4 5 14 43
2 5 4 6 7 351
3 5 4 5 14 315
4 6 4 22 11 263
5 4 4 7 6 302
6 3 4 16 11 215
7 2 12 4 4 238
8 7 4 7 7 193
9 6 14 6 4 246
summonerName teamEarlySurrendered teamId teamPosition \
0 Unrável False 100 TOP
1 L9 indianscammer False 100 UTILITY
2 Rotome False 100 BOTTOM
3 PROJECT Katarina False 100 MIDDLE
4 StalwartHide False 100 JUNGLE
5 Vîrus False 200 TOP
6 Frontline Worker False 200 JUNGLE
7 smurfing pisslo False 200 MIDDLE
8 TrÍnÌty False 200 BOTTOM
9 Owen Merritt False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 12 2110 166552 30992
1 57 2110 30142 12815
2 14 2110 124698 13108
3 8 2110 145393 30750
4 8 2110 164110 38349
5 8 2110 315709 28915
6 38 2110 157846 25901
7 31 2110 56490 13361
8 9 2110 140338 28459
9 37 2110 38009 11532
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 24471 4421 217 101
1 24542 3373 37 136
2 22331 5194 160 106
3 37404 9844 178 410
4 28776 16729 22 201
5 43057 12619 264 49
6 49707 21037 42 434
7 18329 119 95 72
8 29212 6933 145 263
9 31729 7170 56 125
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 218 1 4479
1 224 5 4459
2 245 3 324
3 276 1 1044
4 91 1 9707
5 220 1 0
6 423 1 50548
7 195 1 1686
8 324 3 19717
9 433 1 6318
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 289 700 3 5
1 786 1288 1 5
2 80 543 2 5
3 924 1298 0 5
4 1673 962 1 5
5 0 511 4 8
6 510 672 0 8
7 154 680 1 8
8 3296 1252 0 8
9 831 637 0 8
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 39 2 2 12 True
1 65 4 4 28 True
2 13 2 2 6 True
3 15 3 1 3 True
4 39 3 4 3 True
5 20 3 4 7 False
6 16 0 4 2 False
7 3 3 0 5 False
8 24 1 2 13 False
9 43 0 4 20 False ,
assists baronKills bountyLevel champLevel championName \
0 1 0 0 13 Yone
1 2 0 0 12 Teemo
2 0 0 0 14 Kayle
3 0 0 0 12 Ezreal
4 2 0 0 11 Nami
5 5 0 9 16 Riven
6 9 0 6 14 Volibear
7 8 0 1 15 Urgot
8 8 0 5 14 Jhin
9 19 0 0 13 Soraka
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 0 0 0
1 0 7066 0
2 0 0 0
3 189 6226 189
4 51 762 51
5 3871 6739 3871
6 2649 12044 2649
7 6591 6591 6591
8 9329 14680 9329
9 2127 2611 2127
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 0 0 False False
1 7 0 1 False False
2 8 0 0 False False
3 7 0 0 False False
4 5 0 1 False False
5 0 0 0 True False
6 2 0 1 False True
7 5 0 0 False False
8 0 3 1 False False
9 2 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False True False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 7361 TOP 0
1 False 6882 JUNGLE 0
2 False 9740 MIDDLE 0
3 False 7306 BOTTOM 0
4 False 5165 UTILITY 0
5 False 13306 TOP 0
6 False 11167 JUNGLE 1
7 False 13174 MIDDLE 1
8 False 10582 BOTTOM 0
9 False 7672 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 2 1055 6673 1001 1018 1038 1037 3340
1 2 6653 2031 3158 3108 3067 0 3364
2 2 1054 2420 3006 3115 4633 1082 3363
3 2 3057 3042 3044 3158 3067 0 3340
4 2 3853 3009 4005 1004 3916 0 3364
5 0 1037 6630 3111 3071 3044 0 3340
6 0 6632 2031 3111 1028 1037 3157 3340
7 0 1055 3748 6631 3047 3075 3133 3340
8 0 0 6673 3009 6676 1018 1042 3340
9 0 3853 3158 2065 2055 3067 3114 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 1 0 1
1 0 1 0 1
2 2 5 3 2
3 0 1 0 1
4 0 0 0 0
5 1 9 9 3
6 2 10 6 2
7 1 7 5 2
8 1 5 5 1
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 618 16586 2121
1 368 82035 14204
2 386 69188 10953
3 398 7954 3886
4 934 12313 4979
5 0 0 0
6 276 52273 3340
7 502 554 112
8 0 0 0
9 805 15004 5719
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 1387 10 1 0
1 1939 76 1 0
2 2105 3 1 0
3 1409 7 1 0
4 3605 4 1 0
5 6396 12 0 0
6 9963 99 0 0
7 10559 24 0 0
8 2716 12 0 0
9 6892 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 80684
1 0 2 16910
2 0 3 28636
3 0 4 85098
4 0 5 1788
5 0 6 150726
6 0 7 67329
7 0 8 168999
8 0 9 113368
9 0 10 2917
physicalDamageDealtToChampions physicalDamageTaken role \
0 5853 13762 SOLO
1 839 16108 NONE
2 3031 21246 SOLO
3 8359 14368 CARRY
4 284 10576 SUPPORT
5 15460 14053 SOLO
6 11838 17872 NONE
7 17986 13622 SOLO
8 10155 7080 CARRY
9 969 6834 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 2 12 263
1 5 4 15 11 26
2 4 4 3 12 351
3 3 4 3 7 161
4 3 4 1 3 35
5 2 14 4 4 200
6 15 11 3 4 358
7 6 14 3 4 357
8 2 7 1 4 144
9 5 3 2 4 370
summonerName teamEarlySurrendered teamId teamPosition \
0 StalwartHide False 100 TOP
1 chinajiunian False 100 JUNGLE
2 Rotome False 100 MIDDLE
3 Trooper5150 False 100 BOTTOM
4 laineybon False 100 UTILITY
5 Kaiiiys False 200 TOP
6 Dog of wisdom1 False 200 JUNGLE
7 kaidaddyyy False 200 MIDDLE
8 Eggyt623 False 200 BOTTOM
9 Kidz Bop Is Gr8 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 10 1653 98025 8729
1 33 1653 108430 16189
2 10 1653 102625 14646
3 0 1653 96572 12246
4 20 1653 14101 5263
5 19 1653 153137 15486
6 27 1653 123911 16265
7 29 1653 179954 19808
8 14 1653 119391 10168
9 38 1653 17922 6688
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 15661 1719 133 66
1 19017 4112 42 670
2 24508 3966 151 235
3 15961 1432 136 0
4 14195 5642 9 190
5 20917 7317 232 107
6 29480 12965 16 388
7 24923 3735 203 276
8 9994 4258 161 32
9 14240 17911 16 169
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 121 1 754
1 177 1 9485
2 221 5 4800
3 197 2 3520
4 125 5 0
5 0 1 2411
6 26 1 4308
7 180 1 10400
8 0 2 6022
9 65 5 0
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 754 512 0 10
1 1145 968 0 10
2 662 1156 0 10
3 0 184 0 10
4 0 12 0 10
5 26 467 2 0
6 1086 1644 1 0
7 1709 740 5 0
8 12 196 1 0
9 0 512 1 0
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 14 0 0 8 False
1 13 0 6 0 False
2 11 1 2 5 False
3 9 0 0 8 False
4 27 0 3 13 False
5 2 0 0 1 True
6 14 0 0 8 True
7 10 0 1 5 True
8 21 3 2 7 True
9 35 3 2 15 True ,
assists baronKills bountyLevel champLevel championName \
0 4 0 1 18 Gwen
1 6 0 0 15 Nidalee
2 8 1 0 18 Kayle
3 10 0 1 15 Jinx
4 17 0 0 15 Nami
5 3 0 3 17 Samira
6 3 0 0 16 DrMundo
7 3 0 0 16 Ahri
8 4 0 0 17 Ezreal
9 16 0 0 15 Thresh
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 10790 24728 10790
1 176 11549 176
2 4739 18570 4739
3 5015 13819 5015
4 875 1466 875
5 6351 17276 6351
6 3810 15117 3810
7 2918 5961 2918
8 2975 2975 2975
9 1404 2851 1404
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 0 0 False False
1 11 0 2 False False
2 4 0 0 False False
3 4 1 0 False False
4 7 0 0 False False
5 6 4 1 False False
6 6 0 2 False True
7 8 1 0 False False
8 6 0 0 False False
9 5 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 False False False
7 False False False
8 False False False
9 True False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 16950 TOP 2
1 False 10834 JUNGLE 0
2 False 16891 MIDDLE 0
3 False 11326 BOTTOM 0
4 False 8753 UTILITY 0
5 False 20200 BOTTOM 0
6 False 13649 JUNGLE 1
7 False 11665 MIDDLE 0
8 False 10551 TOP 0
9 False 9741 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 3115 3047 4629 4633 3165 1058 3340
1 1 4636 3020 3041 4629 1052 0 3364
2 1 3041 3157 3006 3115 4633 3165 3363
3 1 3006 6672 3085 1055 1038 1037 3364
4 1 3853 3009 4005 3011 3114 1057 3364
5 2 3031 6673 3006 3072 3033 3036 3363
6 2 3065 6609 6632 3083 0 3047 3364
7 2 3020 6656 3165 4628 0 0 3363
8 2 1055 3042 3158 6632 3024 3082 3340
9 2 3857 3190 3107 3109 3117 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 12 5 2
1 1 5 2 1
2 3 11 6 2
3 0 2 0 1
4 0 1 0 1
5 5 19 5 4
6 2 10 6 1
7 0 3 0 1
8 0 0 0 0
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 1032 121024 20203
1 368 101618 15894
2 1103 167504 27211
3 474 2026 784
4 629 16406 7778
5 581 23030 4267
6 569 51839 11785
7 539 84007 13055
8 904 10542 2541
9 781 23200 9863
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 12972 19 0 0
1 13196 108 0 0
2 10115 32 0 0
3 4022 9 0 0
4 3575 0 0 0
5 14209 48 1 0
6 26329 139 1 0
7 10849 8 1 0
8 9107 0 1 0
9 13762 4 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 50519
1 0 2 12938
2 0 3 46337
3 0 4 140712
4 0 5 1780
5 0 6 228292
6 0 7 115046
7 0 8 19868
8 0 9 152395
9 0 10 6910
physicalDamageDealtToChampions physicalDamageTaken role \
0 5485 23981 SOLO
1 259 27140 NONE
2 6456 16569 SOLO
3 14973 12789 CARRY
4 263 11908 SUPPORT
5 37535 10763 DUO
6 14804 22707 NONE
7 1867 9233 SOLO
8 4871 8871 DUO
9 1492 7128 SOLO
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 12 9 14 262
1 6 4 20 11 26
2 5 4 4 12 351
3 5 4 5 7 48
4 4 4 2 3 35
5 6 7 5 4 260
6 15 11 2 4 379
7 3 4 7 14 239
8 3 12 3 4 120
9 7 3 5 4 118
summonerName teamEarlySurrendered teamId teamPosition \
0 StalwartHide False 100 TOP
1 chinajiunian False 100 JUNGLE
2 Rotome False 100 MIDDLE
3 golden broccoli False 100 BOTTOM
4 laineybon False 100 UTILITY
5 GPhox False 200 BOTTOM
6 Harpoonie False 200 JUNGLE
7 Jeniichu False 200 MIDDLE
8 JadeHamster False 200 TOP
9 ToastyMain False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 8 2169 221071 36642
1 3 2169 131701 16542
2 8 2169 216904 35199
3 21 2169 155792 16783
4 20 2169 18305 8160
5 6 2169 262878 42597
6 18 2169 175746 27677
7 39 2169 151185 21168
8 0 2169 169318 7413
9 47 2169 34407 11355
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 40424 14763 228 128
1 41657 13996 20 146
2 29544 12489 232 286
3 16962 5666 187 68
4 15811 7977 8 202
5 26439 5741 262 100
6 55215 30116 42 397
7 22414 2190 190 144
8 20545 2622 208 13
9 22520 1276 37 146
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 317 1 49528
1 261 1 17144
2 130 5 3061
3 119 4 13053
4 192 5 118
5 231 3 11554
6 226 1 8860
7 254 1 47310
8 233 1 6380
9 154 5 4296
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 10953 3470 5 6
1 388 1319 1 6
2 1531 2859 1 6
3 1024 150 1 6
4 118 328 0 6
5 794 1467 2 8
6 1088 6179 2 8
7 6245 2330 1 8
8 0 2566 1 8
9 0 1630 0 8
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 21 0 2 14 True
1 14 0 5 0 True
2 21 0 4 8 True
3 17 1 5 3 True
4 39 0 4 19 True
5 55 4 3 13 False
6 22 0 4 2 False
7 35 1 1 13 False
8 14 0 0 9 False
9 50 0 4 27 False ,
assists baronKills bountyLevel champLevel championName \
0 17 0 0 16 Shen
1 6 0 3 15 Khazix
2 16 1 8 16 Kayle
3 5 0 0 14 Yasuo
4 21 0 1 14 Nami
5 2 0 0 14 Sion
6 9 0 0 13 Senna
7 8 0 0 14 Rumble
8 9 0 0 14 Diana
9 22 0 0 13 Rell
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2785 6811 2785
1 1063 18556 1063
2 6534 22193 6534
3 2823 4655 2823
4 1123 1761 1123
5 3663 6207 3663
6 3048 8619 3048
7 583 12015 583
8 297 28881 297
9 879 1482 879
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 2 0 1 True False
1 7 1 1 False True
2 3 1 0 False False
3 11 0 0 False False
4 6 0 0 False False
5 5 0 0 False False
6 6 1 0 False False
7 10 7 0 False False
8 8 2 2 False False
9 7 6 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False True False
7 False False False
8 False False False
9 True False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 11991 TOP 0
1 False 11924 JUNGLE 0
2 False 15541 MIDDLE 1
3 False 10173 BOTTOM 0
4 False 8279 UTILITY 0
5 False 8759 TOP 0
6 False 13992 BOTTOM 0
7 False 9292 MIDDLE 0
8 False 11115 JUNGLE 0
9 False 8651 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1054 6662 3009 3065 3075 3024 3340
1 0 6691 3142 2031 3158 3134 1036 3364
2 0 3041 3157 3006 3115 0 4633 3363
3 0 3033 3006 6673 1018 1036 0 3340
4 0 3853 3222 4005 3009 0 0 3364
5 1 3047 3068 3075 2033 3082 0 3340
6 1 3864 6672 3124 3094 3036 3009 3363
7 1 3135 3152 3020 3916 1028 0 3363
8 1 3157 1082 3115 3020 4636 0 3364
9 1 3860 3190 3075 2055 1011 3047 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 8 4 3
1 2 9 3 2
2 2 13 8 3
3 1 4 3 2
4 0 2 0 1
5 0 1 0 1
6 2 13 8 2
7 0 4 0 1
8 2 10 4 1
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 1467 38328 6813
1 430 6769 848
2 693 98872 28702
3 284 8835 577
4 525 12777 9411
5 1330 43380 4270
6 1160 1963 781
7 458 98541 13863
8 686 113423 13340
9 740 18071 10077
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 6883 8 0 0
1 9191 118 0 0
2 13484 12 0 0
3 7626 8 0 0
4 6366 0 0 0
5 14050 20 1 0
6 4138 4 1 0
7 8465 14 1 0
8 10276 115 1 0
9 11564 0 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 35597
1 0 2 119062
2 0 3 34220
3 0 4 114622
4 0 5 1910
5 0 6 64492
6 0 7 84770
7 0 8 18603
8 0 9 24294
9 0 10 5928
physicalDamageDealtToChampions physicalDamageTaken role \
0 6012 15833 SOLO
1 17783 15534 NONE
2 5544 8774 SOLO
3 8758 14337 CARRY
4 642 4048 SUPPORT
5 4912 11494 SOLO
6 22064 11188 CARRY
7 1231 17404 SOLO
8 2615 15623 NONE
9 1682 9928 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 5 14 27
1 5 4 19 11 262
2 4 4 2 12 351
3 2 4 4 14 26
4 4 4 3 3 35
5 3 12 4 4 144
6 4 4 4 7 132
7 4 4 7 14 150
8 4 4 13 11 107
9 7 14 3 4 141
summonerName teamEarlySurrendered teamId teamPosition \
0 RuppSux False 100 TOP
1 StalwartHide False 100 JUNGLE
2 Rotome False 100 MIDDLE
3 chinajiunian False 100 BOTTOM
4 laineybon False 100 UTILITY
5 dillybarIsLeet False 200 TOP
6 StampingElephant False 200 BOTTOM
7 BankPlankzedster False 200 MIDDLE
8 JarlWeichel False 200 JUNGLE
9 aknesoH False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 46 1808 83643 14166
1 7 1808 135418 19576
2 14 1808 141858 36877
3 11 1808 128443 9967
4 40 1808 14688 10054
5 29 1808 114767 9182
6 42 1808 110268 25270
7 17 1808 127072 16000
8 9 1808 148328 16410
9 51 1808 30774 12599
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 24552 2260 142 986
1 26115 10911 17 181
2 23310 9538 172 243
3 23065 2861 161 133
4 10663 7737 7 172
5 27126 3369 148 597
6 16140 7957 138 198
7 26720 1709 149 274
8 26777 7728 21 89
9 22917 1896 36 101
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 45 1 9717
1 224 1 9587
2 114 5 8766
3 263 1 4986
4 143 5 0
5 115 1 6895
6 193 5 23534
7 321 1 9927
8 289 1 10611
9 218 4 6773
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1340 1835 0 4
1 944 1389 0 4
2 2631 1051 5 4
3 632 1100 1 4
4 0 248 0 4
5 0 1580 1 7
6 2425 814 1 7
7 905 850 0 7
8 455 877 1 7
9 839 1424 0 7
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 22 0 5 9 True
1 21 1 5 2 True
2 25 1 5 9 True
3 12 0 2 6 True
4 47 0 5 23 True
5 16 0 3 7 False
6 36 1 0 15 False
7 25 7 0 15 False
8 15 4 2 2 False
9 57 7 5 27 False ,
assists baronKills bountyLevel champLevel championName \
0 1 0 0 13 Mordekaiser
1 1 0 0 12 Vi
2 2 0 0 12 Zed
3 8 0 0 10 FiddleSticks
4 5 0 0 11 Kindred
5 0 0 3 14 Illaoi
6 10 0 0 12 Rammus
7 2 0 6 14 Kayle
8 7 0 0 11 Caitlyn
9 10 0 0 11 Nami
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 0 0 0
1 0 11670 0
2 0 0 0
3 1223 2640 1223
4 2586 5024 2586
5 6050 6050 6050
6 487 9159 487
7 7148 15698 7148
8 412 412 412
9 523 771 523
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 6 1 0 False False
1 4 2 3 False False
2 4 1 0 False False
3 7 0 0 False True
4 4 0 0 True False
5 1 0 0 False False
6 2 1 0 False False
7 0 1 0 False False
8 7 0 0 False False
9 4 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False True False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 7491 TOP 0
1 True 6379 JUNGLE 0
2 True 7216 JUNGLE 0
3 True 7093 UTILITY 0
4 True 7769 BOTTOM 0
5 True 10937 TOP 0
6 True 9154 JUNGLE 0
7 True 11487 MIDDLE 0
8 True 7242 BOTTOM 1
9 True 6972 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 4633 1026 1043 1052 3047 0 3340
1 1 3078 3111 3044 0 0 0 3364
2 1 2031 3158 6693 3133 1036 3067 3364
3 1 3853 6655 2421 3020 3191 0 3330
4 1 1055 6672 3006 1053 3035 0 3340
5 0 2033 6632 3047 6333 3044 0 3340
6 0 6662 2055 3047 3066 3075 1031 3364
7 0 1054 1082 3006 3115 4633 1058 3363
8 0 6693 3004 3158 0 0 0 3340
9 0 3853 3009 4005 3504 1028 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 2 2 1
1 0 1 0 1
2 1 5 4 2
3 1 4 2 1
4 0 2 0 1
5 2 8 5 3
6 2 5 3 2
7 1 6 6 2
8 0 2 0 1
9 2 4 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 477 60417 11369
1 529 8102 0
2 605 5253 490
3 495 34920 14423
4 759 3839 1120
5 1196 134 85
6 1012 69059 7188
7 0 73199 7872
8 237 1674 708
9 593 8213 5018
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 1159 4 0 0
1 3479 101 0 1
2 5206 0 0 0
3 5703 0 0 0
4 6178 4 0 0
5 8665 4 0 0
6 5813 114 0 0
7 1574 12 0 0
8 7720 4 0 0
9 4925 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 16758
1 0 2 86717
2 0 3 50253
3 0 4 1121
4 0 5 65492
5 0 6 139794
6 0 7 22237
7 0 8 35549
8 0 9 68551
9 0 10 1366
physicalDamageDealtToChampions physicalDamageTaken role \
0 1413 12318 SOLO
1 3377 12531 NONE
2 5676 3811 SOLO
3 312 7578 SUPPORT
4 8254 8237 CARRY
5 14932 6400 SOLO
6 1559 12222 NONE
7 2827 6952 SOLO
8 6749 5256 CARRY
9 469 3470 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 3 12 257
1 10 11 2 4 463
2 3 14 2 4 102
3 3 4 4 3 134
4 2 4 4 7 227
5 4 4 4 14 262
6 14 11 4 4 68
7 2 4 5 12 351
8 4 4 5 7 26
9 3 4 2 3 35
summonerName teamEarlySurrendered teamId teamPosition \
0 Im Anivia False 100 TOP
1 Serapheeling False 100 JUNGLE
2 Its Sophia False 100 MIDDLE
3 RedWalrus False 100 UTILITY
4 ViaGladius False 100 BOTTOM
5 StalwartHide False 200 TOP
6 FrenchConnec7ion False 200 JUNGLE
7 Rotome False 200 MIDDLE
8 chinajiunian False 200 BOTTOM
9 laineybon False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 4 1380 77870 13339
1 8 1380 103573 3836
2 2 1380 55775 6435
3 59 1380 36041 14735
4 1 1380 71767 10453
5 3 1380 144869 15698
6 31 1380 103121 9535
7 5 1380 114123 10813
8 5 1380 70226 7457
9 12 1380 9579 5488
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 14005 2765 127 30
1 16030 5159 27 247
2 9450 524 117 36
3 13448 2699 22 340
4 14853 7004 117 10
5 16241 5779 183 22
6 18943 6492 7 1029
7 8952 5500 200 206
8 13047 1820 101 45
9 8581 5196 4 113
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 162 1 694
1 101 1 8753
2 130 1 268
3 173 1 0
4 131 13 2435
5 44 1 4940
6 72 5 11825
7 0 4 5374
8 155 4 0
9 105 5 0
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 556 527 0 7
1 458 20 0 7
2 268 432 0 7
3 0 166 1 7
4 1079 437 0 7
5 680 1175 3 1
6 788 907 1 1
7 114 425 3 1
8 0 71 0 1
9 0 185 0 1
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 17 1 0 5 False
1 10 2 1 4 False
2 2 1 0 2 False
3 32 0 4 8 False
4 9 0 1 6 False
5 11 0 0 7 True
6 16 2 1 2 True
7 15 2 2 7 True
8 8 0 1 4 True
9 22 0 1 11 True ,
assists baronKills bountyLevel champLevel championName \
0 10 0 0 16 Garen
1 8 1 0 17 DrMundo
2 2 0 0 15 Kayle
3 10 0 0 13 Ezreal
4 12 0 0 13 Braum
5 5 0 0 14 Jax
6 6 0 0 14 RekSai
7 18 0 0 16 Karma
8 7 0 7 15 Vayne
9 22 0 0 14 Thresh
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 5222 5222 5222
1 3924 26537 3924
2 3000 4813 3000
3 0 2626 0
4 23 486 23
5 4446 7624 4446
6 1341 26767 1341
7 3354 4810 3354
8 9068 38256 9068
9 4713 6018 4713
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 0 0 False True
1 4 1 1 False False
2 7 1 0 False False
3 10 0 0 False False
4 9 7 0 False False
5 10 0 0 False False
6 6 6 2 False False
7 3 1 0 False False
8 3 1 2 False False
9 5 5 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 16119 TOP 0
1 False 14094 JUNGLE 0
2 False 11088 MIDDLE 0
3 False 8880 BOTTOM 0
4 False 8279 UTILITY 0
5 False 9683 TOP 1
6 False 11807 JUNGLE 0
7 False 10346 MIDDLE 1
8 False 18910 BOTTOM 1
9 False 9098 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 3 3053 3006 6631 3742 3075 3133 3340
1 3 6632 3075 3748 3047 3742 0 3364
2 3 1058 1082 3006 3115 4633 1058 3340
3 3 1055 2031 3042 6632 3158 3024 3363
4 3 3047 3860 3109 3190 0 3076 3364
5 0 6632 2033 3047 3153 3044 1028 3340
6 0 3814 3026 6693 3123 3047 0 3364
7 0 3504 4638 2065 1082 3011 3158 3364
8 0 3139 3124 6672 3046 3153 3006 3363
9 0 3190 3860 3050 3158 4643 3076 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 11 4 2
1 2 9 5 2
2 2 5 2 2
3 0 0 0 0
4 0 2 0 1
5 0 3 0 1
6 3 8 2 1
7 1 4 2 1
8 3 20 8 4
9 1 2 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 461 5631 1493
1 801 56579 10056
2 481 79951 8511
3 299 14390 6496
4 275 9892 4364
5 346 23896 3727
6 472 9700 0
7 1046 62375 15065
8 1013 2006 1349
9 717 15161 7001
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 6492 12 1 0
1 8257 127 1 1
2 6591 14 1 0
3 2420 9 1 0
4 5507 0 1 0
5 6804 4 0 0
6 6715 151 0 0
7 7152 0 0 0
8 4618 36 0 0
9 7845 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 121632
1 0 2 111501
2 0 3 31916
3 1 4 87612
4 0 5 5639
5 0 6 86013
6 0 7 135057
7 0 8 14485
8 0 9 170577
9 0 10 10063
physicalDamageDealtToChampions physicalDamageTaken role \
0 22779 21085 NONE
1 10023 23393 NONE
2 1414 11492 SOLO
3 12450 16136 CARRY
4 412 11675 SUPPORT
5 9929 17830 CARRY
6 8600 21038 NONE
7 2124 9785 SOLO
8 33104 14969 SOLO
9 1417 13524 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 8 14 5 4 335
1 6 6 15 11 262
2 2 4 3 12 350
3 3 4 5 7 419
4 6 4 8 14 257
5 4 4 3 12 181
6 4 4 17 11 217
7 1 12 5 4 240
8 4 4 5 7 318
9 7 14 3 4 314
summonerName teamEarlySurrendered teamId teamPosition \
0 TheDogeAvenger False 100 TOP
1 StalwartHide False 100 JUNGLE
2 Rotome False 100 MIDDLE
3 TURBOGANDALF87 False 100 BOTTOM
4 robobotic False 100 UTILITY
5 ILove2BeCarried False 200 TOP
6 TheEPiX False 200 JUNGLE
7 A Baked Cookii False 200 MIDDLE
8 Ikkuya False 200 BOTTOM
9 Veganism False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 42 1923 134200 29100
1 17 1923 187637 20800
2 11 1923 112246 10241
3 0 1923 102003 18946
4 26 1923 22356 5746
5 15 1923 113645 13657
6 17 1923 172476 11058
7 27 1923 88736 17190
8 10 1923 228085 57964
9 44 1923 30643 9506
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 38887 7517 174 256
1 36529 20405 58 470
2 20303 4624 178 240
3 21942 2887 157 0
4 22446 883 48 138
5 26418 5019 138 43
6 29822 15776 28 362
7 17684 4207 125 272
8 21459 10618 201 100
9 21732 2060 34 112
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 205 1 6936
1 79 1 19557
2 231 4 379
3 302 3 0
4 250 5 6824
5 296 1 3735
6 219 1 27717
7 131 1 11875
8 119 3 55502
9 184 1 5418
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 4826 11310 2 9
1 720 4878 3 9
2 316 2218 0 9
3 0 3385 0 9
4 970 5263 0 9
5 0 1783 1 5
6 2457 2068 0 5
7 0 746 2 5
8 23510 1871 2 5
9 1088 362 2 5
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 19 0 1 10 False
1 35 1 5 3 False
2 9 2 1 5 False
3 16 0 4 6 False
4 86 7 15 33 False
5 13 0 0 8 True
6 43 6 9 8 True
7 14 4 2 7 True
8 32 1 4 11 True
9 78 3 8 36 True ,
assists baronKills bountyLevel champLevel championName \
0 7 0 0 17 Jax
1 5 1 0 17 Mordekaiser
2 12 0 1 18 Veigar
3 10 0 3 18 Aphelios
4 17 0 0 15 Swain
5 18 0 0 17 Shen
6 20 0 0 17 Orianna
7 25 0 0 16 Lulu
8 12 0 0 17 Jhin
9 25 0 0 15 Senna
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 6458 8723 6458
1 883 33794 883
2 3675 17373 3675
3 14902 30737 14902
4 2131 2526 2131
5 2272 4037 2272
6 1759 14012 1759
7 1202 1583 1202
8 6084 15096 6084
9 2936 4761 2936
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 9 3 0 False True
1 8 1 3 False False
2 5 0 0 False False
3 13 0 0 False False
4 10 0 0 False False
5 10 0 0 False False
6 6 2 2 False False
7 6 0 0 False False
8 9 1 1 False False
9 9 5 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 15330 TOP 0
1 False 13197 JUNGLE 0
2 False 13600 MIDDLE 0
3 False 20815 BOTTOM 1
4 False 12158 UTILITY 0
5 False 13044 TOP 0
6 False 15611 JUNGLE 0
7 False 10893 MIDDLE 0
8 False 18122 BOTTOM 0
9 False 12696 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 6632 3047 0 3153 3053 3026 3340
1 0 4633 3108 3020 3116 4629 3191 3364
2 0 2033 6656 3089 3020 4629 1029 3363
3 0 3031 3139 3006 6672 3085 6676 3363
4 0 3853 3157 4633 3116 3020 0 3364
5 1 1011 3068 3111 3076 3748 3083 3340
6 1 3040 6655 3020 3165 1082 4637 3340
7 1 1056 3020 2065 3011 4629 3114 3340
8 1 3072 6671 3031 3009 6676 3094 3363
9 1 3042 6691 3864 4643 3095 3158 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 7 3 1
1 1 7 3 1
2 0 4 0 1
3 5 17 4 3
4 0 5 0 1
5 1 6 3 1
6 3 10 4 1
7 0 3 0 1
8 5 19 5 2
9 1 6 5 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 322 28548 4360
1 672 153126 14186
2 682 156864 16080
3 411 3183 454
4 437 75407 25979
5 498 56174 14457
6 811 184424 33819
7 1005 59328 10198
8 408 10509 2935
9 792 915 392
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 19121 45 0 0
1 11217 160 0 0
2 8436 8 0 0
3 9433 44 0 0
4 17181 4 0 0
5 19549 8 1 0
6 11537 156 1 0
7 8409 0 1 0
8 14765 18 1 0
9 8390 0 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 142000
1 0 2 26193
2 0 3 15830
3 0 4 261877
4 0 5 7666
5 0 6 87357
6 0 7 17751
7 0 8 13431
8 0 9 222226
9 0 10 60336
physicalDamageDealtToChampions physicalDamageTaken role \
0 21923 21071 NONE
1 1496 30690 NONE
2 393 11404 SOLO
3 37681 17753 CARRY
4 2287 21813 SUPPORT
5 12202 24127 SOLO
6 1504 19991 NONE
7 344 14645 SOLO
8 32114 14290 CARRY
9 21257 13446 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 6 12 337
1 6 6 19 11 262
2 3 4 1 12 350
3 5 4 6 7 168
4 5 4 7 21 367
5 5 4 4 12 169
6 6 4 22 11 367
7 4 4 3 14 102
8 6 4 6 7 468
9 6 4 7 14 335
summonerName teamEarlySurrendered teamId teamPosition \
0 shadfett False 100 TOP
1 StalwartHide False 100 JUNGLE
2 Rotome False 100 MIDDLE
3 cold toothpaste False 100 BOTTOM
4 Tottwin False 100 UTILITY
5 Neofyx False 200 TOP
6 Beko False 200 JUNGLE
7 HelloNello False 200 MIDDLE
8 pugly False 200 BOTTOM
9 Banh Mami False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 25 2255 170990 26468
1 13 2255 197418 17754
2 41 2255 174378 16545
3 14 2255 284470 40973
4 86 2255 84514 29317
5 41 2255 159013 27840
6 30 2255 212204 36976
7 23 2255 75601 11124
8 28 2255 235287 36671
9 49 2255 62155 22553
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 42197 8126 170 147
1 42848 15689 47 335
2 20249 4735 212 117
3 28564 4184 223 136
4 40204 13080 56 364
5 45539 2155 183 289
6 32943 8142 67 652
7 24574 1331 155 359
8 29630 3285 214 118
9 22682 22979 45 135
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 295 1 440
1 254 1 18097
2 191 1 1684
3 499 2 19409
4 298 1 1440
5 336 1 15481
6 197 5 10028
7 222 1 2842
8 239 4 2551
9 200 5 904
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 184 2005 2 5
1 2072 940 0 5
2 72 407 2 5
3 2837 1377 5 5
4 1050 1209 0 5
5 1181 1862 0 9
6 1652 1415 0 9
7 582 1519 0 9
8 1621 574 2 9
9 904 845 2 9
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 34 4 2 16 True
1 21 1 4 2 True
2 19 0 2 8 True
3 27 0 5 12 True
4 72 0 6 39 True
5 5 1 0 4 False
6 49 2 8 15 False
7 26 0 2 13 False
8 31 1 2 12 False
9 101 5 11 39 False ,
assists baronKills bountyLevel champLevel championName \
0 13 0 0 18 DrMundo
1 19 1 0 18 Maokai
2 14 0 1 18 Veigar
3 15 0 3 18 KogMaw
4 5 1 0 16 Pyke
5 4 0 0 16 Teemo
6 17 0 0 17 Rammus
7 10 0 0 18 Viktor
8 9 0 0 17 Ezreal
9 14 0 0 18 Senna
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 6036 18425 6036
1 557 14415 557
2 4355 12208 4355
3 12444 43391 12444
4 1742 5618 1742
5 0 9167 0
6 238 14304 238
7 5472 12613 5472
8 1197 9009 1197
9 2144 10355 2144
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 6 0 0 False False
1 10 1 1 False False
2 10 0 1 False False
3 10 1 1 True False
4 9 2 0 False True
5 9 0 0 False False
6 17 1 2 False False
7 8 0 0 False False
8 14 0 1 False False
9 10 4 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False True False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 19146 TOP 0
1 False 13778 JUNGLE 0
2 False 21035 MIDDLE 1
3 False 20516 BOTTOM 0
4 False 18918 UTILITY 0
5 False 10911 TOP 0
6 False 12614 JUNGLE 0
7 False 19999 MIDDLE 0
8 False 15227 BOTTOM 0
9 False 21979 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3075 3065 3068 3111 3083 3748 3363
1 0 3066 3065 3068 1031 3075 3111 3340
2 0 3135 6656 3742 3102 3020 3089 3340
3 0 3042 6672 3111 3153 3091 3124 3363
4 0 3857 3142 6035 3047 6691 3179 3364
5 1 6653 3115 3165 0 0 3020 3340
6 1 4636 2031 3020 4628 3135 1058 3340
7 1 3020 3089 3100 6655 3135 3165 3363
8 1 6694 3111 6632 3042 3123 3156 3363
9 1 3033 6672 3036 3094 3071 3124 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 4 11 4 1
1 0 1 0 1
2 4 19 10 2
3 2 12 3 2
4 4 15 7 2
5 0 0 0 0
6 0 3 0 1
7 3 16 7 2
8 2 8 2 1
9 6 18 5 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 837 91851 19335
1 567 144806 15121
2 598 257394 41547
3 548 88699 15078
4 1173 18 18
5 463 118917 12739
6 417 109700 17739
7 681 263941 56395
8 283 18305 6496
9 514 433 123
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 28192 18 0 0
1 19995 149 0 0
2 18949 15 0 0
3 14499 60 0 0
4 15023 8 0 0
5 15026 24 1 0
6 24379 146 1 0
7 19221 16 1 0
8 24067 14 1 0
9 12148 40 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 118559
1 0 2 33663
2 0 3 15517
3 0 4 176420
4 0 5 37323
5 0 6 32958
6 0 7 30392
7 0 8 12969
8 0 9 144817
9 0 10 188170
physicalDamageDealtToChampions physicalDamageTaken role \
0 11339 35972 SOLO
1 1511 31488 NONE
2 1137 15810 SOLO
3 17564 16413 CARRY
4 15041 14250 SUPPORT
5 1215 11624 SOLO
6 3179 20826 NONE
7 850 13451 SOLO
8 28354 17491 CARRY
9 42851 15968 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 10 14 6 4 133
1 13 11 6 4 185
2 6 4 3 12 350
3 5 4 8 7 238
4 5 4 9 14 314
5 5 14 6 4 146
6 23 11 6 4 453
7 6 14 7 4 387
8 2 12 6 4 521
9 10 3 7 4 230
summonerName teamEarlySurrendered teamId teamPosition \
0 ThePizzaMarine False 100 TOP
1 Trashúo False 100 JUNGLE
2 Rotome False 100 MIDDLE
3 Negi Valentine False 100 BOTTOM
4 Yavoh False 100 UTILITY
5 NegativeIQjungle False 200 TOP
6 ShortstackAttack False 200 JUNGLE
7 Scorchingtail False 200 MIDDLE
8 Hollowww False 200 BOTTOM
9 papajohnsshrimp False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 17 2709 227378 32266
1 76 2709 189879 17204
2 47 2709 273477 42745
3 10 2709 295493 36443
4 29 2709 49249 20406
5 30 2709 154409 14918
6 49 2709 154726 23111
7 35 2709 282984 59481
8 2 2709 164038 34851
9 42 2709 229624 49579
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 69356 10868 256 226
1 54227 17629 31 1011
2 36262 5981 261 159
3 32112 5226 220 342
4 30633 6399 44 167
5 27594 4536 158 624
6 48844 11214 27 559
7 34877 8818 289 540
8 43835 5960 200 94
9 30423 8285 102 220
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 302 1 16967
1 418 5 11409
2 434 1 566
3 411 3 30372
4 397 1 11906
5 366 1 2534
6 627 1 14632
7 310 1 6074
8 525 1 916
9 298 5 41019
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1592 5192 2 4
1 571 2743 1 4
2 60 1501 1 4
3 3801 1199 4 4
4 5346 1360 0 4
5 964 943 0 10
6 2192 3639 0 10
7 2236 2204 2 10
8 0 2276 0 10
9 6604 2307 1 10
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 29 0 2 15 True
1 35 1 4 15 True
2 16 2 2 7 True
3 59 1 3 16 True
4 87 2 10 37 True
5 21 0 0 13 False
6 38 1 4 15 False
7 29 0 3 11 False
8 11 0 1 7 False
9 53 6 4 23 False ,
assists baronKills bountyLevel champLevel championName \
0 8 0 12 14 Volibear
1 5 0 0 13 LeeSin
2 8 0 7 15 Kayle
3 11 0 0 12 Lucian
4 16 0 0 11 Senna
5 1 0 0 12 Sett
6 1 0 0 11 Kayn
7 3 0 0 12 Talon
8 3 0 3 13 Jhin
9 11 0 0 10 Braum
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 7167 14959 7167
1 1337 28373 1337
2 6133 10201 6133
3 3041 3969 3041
4 5456 7039 5456
5 0 2590 0
6 148 1070 148
7 871 871 871
8 789 789 789
9 1759 1759 1759
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 1 0 0 False False
1 3 6 3 False False
2 0 1 0 False False
3 7 0 0 False False
4 5 0 1 False False
5 5 0 0 False False
6 8 0 0 False False
7 7 1 0 False False
8 5 2 0 False True
9 9 1 0 True False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 13121 TOP 1
1 False 10375 JUNGLE 0
2 False 11701 MIDDLE 1
3 False 8274 BOTTOM 0
4 False 8599 UTILITY 0
5 False 6847 TOP 0
6 False 7698 JUNGLE 0
7 False 7150 MIDDLE 0
8 False 10637 BOTTOM 0
9 False 6223 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3191 6632 2420 3053 3110 3047 3340
1 0 6692 3158 0 3814 3133 3067 3340
2 0 1054 3041 3006 3115 4633 1029 3363
3 0 1055 6672 3006 3508 0 0 3340
4 0 6692 3864 3504 3009 1036 1036 3364
5 2 6631 3111 3044 1028 1054 0 3340
6 2 6630 2031 1001 6676 0 0 3364
7 2 1055 6691 3123 3158 3134 0 3363
8 2 1055 3009 6671 6676 3035 1018 3340
9 2 3857 3047 3190 3076 2003 1028 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 12 12 2
1 2 8 4 2
2 1 7 7 2
3 1 4 3 1
4 0 3 0 1
5 0 2 0 1
6 1 4 2 2
7 0 2 0 1
8 3 8 3 2
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 179 43435 6018
1 1007 30299 1781
2 1497 83459 10192
3 678 1097 459
4 533 99 79
5 374 0 0
6 771 6055 762
7 779 132 132
8 437 6770 1983
9 343 8017 5231
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 1994 12 0 0
1 1996 132 0 0
2 166 12 0 0
3 2653 0 0 0
4 2148 4 0 0
5 4536 28 1 0
6 7055 80 1 0
7 3790 0 1 0
8 1820 0 1 0
9 3334 0 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 70136
1 0 2 87926
2 0 3 35825
3 0 4 68197
4 0 5 33302
5 0 6 65654
6 0 7 73249
7 0 8 69488
8 0 9 103915
9 0 10 7165
physicalDamageDealtToChampions physicalDamageTaken role \
0 17571 17343 SOLO
1 11152 17298 NONE
2 3229 10249 SOLO
3 11940 14680 CARRY
4 13623 12096 SUPPORT
5 3244 14313 SUPPORT
6 6929 19572 NONE
7 10451 12737 DUO
8 16095 14455 DUO
9 1272 15628 SOLO
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 5 14 2 4 133
1 15 11 4 4 273
2 2 4 2 12 350
3 5 7 2 4 192
4 3 4 5 14 238
5 5 7 4 4 205
6 13 11 2 4 328
7 5 14 4 4 459
8 3 4 4 7 417
9 4 4 5 3 348
summonerName teamEarlySurrendered teamId teamPosition \
0 ThePizzaMarine False 100 TOP
1 Dëcay False 100 JUNGLE
2 Rotome False 100 MIDDLE
3 MoistureCreature False 100 BOTTOM
4 Negi Valentine False 100 UTILITY
5 bgonce False 200 TOP
6 fartmander21 False 200 JUNGLE
7 Friedwongtons False 200 MIDDLE
8 bluuchese False 200 BOTTOM
9 k3hbin False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 26 1502 114664 24342
1 13 1502 140029 13230
2 4 1502 123363 13618
3 0 1502 72747 13141
4 24 1502 34059 14360
5 10 1502 72054 4779
6 4 1502 85955 7950
7 2 1502 82034 11337
8 25 1502 111043 18380
9 22 1502 20576 6503
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 20585 9696 132 592
1 20356 7264 14 554
2 11222 6572 194 178
3 17665 4596 99 0
4 14644 11026 24 42
5 19140 1563 91 105
6 27405 7356 31 180
7 17091 2129 136 97
8 16657 3152 175 117
9 19593 250 29 129
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 10 1 1092
1 75 1 21803
2 0 4 4079
3 188 3 3452
4 109 5 658
5 96 3 6399
6 227 1 6651
7 249 1 12414
8 128 3 357
9 221 1 5393
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 752 1248 4 1
1 296 1061 1 1
2 196 806 2 1
3 741 332 1 1
4 658 400 2 1
5 1534 290 0 10
6 258 777 0 10
7 754 563 0 10
8 301 382 0 10
9 0 630 1 10
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 11 0 1 6 True
1 17 6 1 14 True
2 20 1 1 6 True
3 7 0 0 6 True
4 37 0 4 20 True
5 12 0 1 8 False
6 13 0 1 5 False
7 21 2 0 9 False
8 18 2 1 9 False
9 24 1 3 12 False ,
assists baronKills bountyLevel champLevel championName \
0 3 0 1 14 Sett
1 12 0 2 14 Bard
2 4 0 6 16 Kayle
3 8 0 0 13 Samira
4 8 0 0 13 Ivern
5 5 0 0 15 Gangplank
6 5 0 0 13 Nocturne
7 5 0 1 14 Vladimir
8 4 0 0 13 Ezreal
9 5 0 0 11 Lux
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 6177 6177 6177
1 1602 2039 1602
2 11736 18976 11736
3 4295 6284 4295
4 673 673 673
5 2071 2071 2071
6 0 9994 0
7 1481 1481 1481
8 1374 2111 1374
9 688 2695 688
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 3 1 0 False False
1 2 2 0 False True
2 2 0 2 False False
3 6 0 0 True False
4 6 1 0 False False
5 6 5 0 False False
6 8 0 1 False False
7 5 0 0 False False
8 3 2 0 False False
9 5 3 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 True False False
2 True False False
3 False True False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 9520 TOP 1
1 True 8368 UTILITY 0
2 True 14037 MIDDLE 0
3 True 8405 BOTTOM 0
4 True 9122 JUNGLE 0
5 True 10439 TOP 0
6 True 8583 JUNGLE 0
7 True 8640 MIDDLE 0
8 True 9165 BOTTOM 0
9 True 8329 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1054 6630 3053 3158 0 0 3340
1 0 4005 3853 3107 3158 3916 0 3364
2 0 1058 3041 3006 3115 4633 1058 3363
3 0 1055 6673 3006 1038 1053 0 3340
4 0 3117 2065 2424 3011 3504 0 3340
5 1 6632 1037 3158 3044 6695 1028 3340
6 1 3158 2031 3053 1036 0 6631 3340
7 1 4629 3020 3152 0 3916 0 3340
8 1 6632 3004 3133 3158 0 2055 3340
9 1 3853 6655 3020 1058 3916 2031 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 4 0 1
1 2 5 2 1
2 3 10 6 3
3 0 2 0 1
4 2 6 2 1
5 0 2 0 1
6 1 4 2 1
7 1 5 2 1
8 1 3 3 1
9 1 5 4 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 1042 1654 1078
1 656 21161 11248
2 806 123809 15235
3 314 5709 684
4 501 13144 5375
5 592 10612 4676
6 439 7410 1108
7 497 70687 15575
8 1352 14738 5037
9 757 39674 12985
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 8382 4 0 0
1 8821 0 0 0
2 7106 32 0 0
3 6624 8 0 0
4 8449 87 0 0
5 7748 8 0 0
6 9152 101 0 0
7 7773 0 0 0
8 5617 12 0 0
9 5663 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 83415
1 0 2 3013
2 0 3 39956
3 0 4 72052
4 0 5 3982
5 0 6 118131
6 0 7 93389
7 0 8 11293
8 0 9 91862
9 0 10 3215
physicalDamageDealtToChampions physicalDamageTaken role \
0 13555 17626 SOLO
1 1739 5278 SUPPORT
2 4348 12859 SOLO
3 5902 10034 CARRY
4 2591 7235 NONE
5 14594 10965 SOLO
6 8997 17513 NONE
7 873 10336 SOLO
8 11274 6720 CARRY
9 596 4168 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 12 3 4 219
1 1 4 5 14 237
2 3 4 4 12 350
3 4 7 2 4 192
4 15 11 3 4 132
5 3 12 4 4 164
6 1 4 9 11 112
7 4 4 5 14 236
8 3 7 2 4 324
9 3 14 4 4 90
summonerName teamEarlySurrendered teamId teamPosition \
0 PopeOfDope21 False 100 TOP
1 Negi Valentine False 100 UTILITY
2 Rotome False 100 MIDDLE
3 MoistureCreature False 100 BOTTOM
4 ThePizzaMarine False 100 JUNGLE
5 bbqpoptart False 200 TOP
6 Scott Sterling69 False 200 JUNGLE
7 CorvosFTW False 200 MIDDLE
8 DaFives False 200 BOTTOM
9 melloemel False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 20 1626 93274 16856
1 27 1626 25352 14119
2 14 1626 182432 21365
3 0 1626 85162 6586
4 36 1626 223240 8714
5 11 1626 146336 21207
6 155 1626 110539 10438
7 4 1626 87381 17098
8 0 1626 111471 16312
9 43 1626 43468 13931
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 27565 4481 145 131
1 14339 8721 19 153
2 20722 9023 206 549
3 17014 3714 120 0
4 16044 3689 10 180
5 21281 5399 191 336
6 27266 9899 26 449
7 18998 12012 136 75
8 13582 3193 161 0
9 10414 437 35 225
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 120 1 8204
1 46 5 1177
2 74 5 18667
3 166 3 7400
4 140 1 206114
5 159 1 17592
6 178 1 9739
7 136 1 5401
8 80 4 4870
9 162 1 578
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 2223 1556 1 1
1 1131 239 0 1
2 1780 755 4 1
3 0 356 2 1
4 748 359 0 1
5 1936 2567 1 7
6 332 600 0 7
7 650 887 0 7
8 0 1244 0 7
9 350 582 0 7
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 16 1 5 4 True
1 53 2 4 22 True
2 17 0 3 6 True
3 12 0 1 8 True
4 35 1 2 10 True
5 24 5 1 13 False
6 12 0 1 7 False
7 13 0 1 8 False
8 15 4 0 8 False
9 43 4 3 24 False ,
assists baronKills bountyLevel champLevel championName \
0 2 0 0 13 Aatrox
1 5 0 1 11 Vi
2 2 0 1 11 Ahri
3 3 0 1 11 Samira
4 8 0 0 10 Taric
5 2 0 0 11 Singed
6 2 0 0 10 Udyr
7 0 0 1 11 Talon
8 4 0 0 11 Ashe
9 6 0 1 9 Blitzcrank
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 4697 5086 4697
1 541 7484 541
2 1292 1368 1292
3 1259 3300 1259
4 797 1277 797
5 1367 1367 1367
6 0 13147 0
7 612 3146 612
8 782 782 782
9 195 195 195
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 0 0 False False
1 2 0 1 True False
2 1 2 0 False True
3 2 1 0 False False
4 3 0 0 False False
5 7 2 0 False False
6 2 0 2 False False
7 5 1 0 False False
8 6 0 0 False False
9 3 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 8910 TOP 0
1 True 7142 JUNGLE 0
2 True 5885 MIDDLE 0
3 True 8643 BOTTOM 0
4 True 5793 UTILITY 0
5 True 5598 TOP 0
6 True 6325 JUNGLE 0
7 True 7254 MIDDLE 0
8 True 6240 BOTTOM 0
9 True 5273 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1054 6631 3047 3071 2031 1036 3340
1 0 3078 2031 3047 3044 0 0 3364
2 0 1056 6655 3020 1052 2055 0 3340
3 0 1055 2055 6673 3009 1037 1038 3340
4 0 3860 2065 0 3047 0 0 3340
5 0 1082 2031 3047 3116 0 0 3340
6 0 3111 2031 3068 3066 1029 0 3340
7 0 6693 2031 3133 3070 3158 1036 3364
8 0 1055 6672 3086 3006 0 0 3340
9 0 3859 3076 6660 1033 3117 1029 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 8 3 1
1 1 4 3 2
2 0 2 0 1
3 2 8 4 2
4 0 1 0 1
5 0 1 0 1
6 1 3 3 1
7 1 6 3 2
8 0 2 0 1
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 309 0 0
1 618 6574 103
2 957 26084 3962
3 884 5944 1374
4 744 8594 2826
5 238 59038 10765
6 1107 42372 3588
7 420 0 0
8 347 1013 713
9 603 5331 3069
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 12352 2 0 0
1 2687 94 0 0
2 622 0 0 0
3 1520 1 0 0
4 1474 4 0 0
5 50 0 0 0
6 2613 84 0 0
7 2426 4 0 0
8 2424 0 0 0
9 1527 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 83346
1 0 2 75036
2 0 3 9122
3 0 4 54487
4 0 5 6314
5 0 6 5499
6 0 7 29904
7 0 8 49056
8 0 9 52136
9 0 10 5497
physicalDamageDealtToChampions physicalDamageTaken role \
0 19658 9469 SUPPORT
1 5999 8329 SUPPORT
2 641 3860 SUPPORT
3 10409 6903 DUO
4 1086 7569 SUPPORT
5 618 14934 SUPPORT
6 2764 15808 SUPPORT
7 8207 8167 SUPPORT
8 6577 8709 SUPPORT
9 1955 6544 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 12 3 4 22
1 3 4 13 11 19
2 2 14 3 4 27
3 3 4 3 3 350
4 4 3 4 4 25
5 2 12 3 4 26
6 11 11 2 4 22
7 4 14 3 4 23
8 3 4 4 7 29
9 4 14 3 4 19
summonerName teamEarlySurrendered teamId teamPosition \
0 NuxiaTrx False 100 TOP
1 RyeBreadPitt False 100 JUNGLE
2 MementosMori False 100 MIDDLE
3 Rotome False 100 BOTTOM
4 8902348092323890 False 100 UTILITY
5 Gobezu False 200 TOP
6 RedGlitch False 200 JUNGLE
7 RÂZ0r False 200 MIDDLE
8 Birdeyeiii False 200 BOTTOM
9 lIlIlllIllllllll False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 25 1194 83346 19658
1 13 1194 91308 6445
2 11 1194 51525 6732
3 2 1194 60431 11784
4 25 1194 20840 3913
5 21 1194 64538 11384
6 28 1194 79465 7369
7 2 1194 52314 8745
8 29 1194 57929 7480
9 24 1194 16719 5499
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 22607 9644 114 268
1 11220 4189 8 259
2 4913 779 94 25
3 8613 596 133 9
4 9653 3077 27 55
5 14984 690 111 192
6 19549 7393 13 129
7 11549 1421 74 120
8 11258 1777 117 480
9 8335 676 30 59
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 89 1 0
1 49 1 9697
2 32 1 16317
3 63 1 0
4 79 3 5930
5 140 1 0
6 33 1 7188
7 125 1 3258
8 98 2 4779
9 56 4 5890
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 786 1 0
1 341 204 0 0
2 2128 430 1 0
3 0 190 1 0
4 0 609 0 0
5 0 0 0 3
6 1016 1128 0 3
7 538 954 0 3
8 190 124 0 3
9 474 263 0 3
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 10 0 1 6 True
1 8 0 1 1 True
2 19 3 1 8 True
3 8 2 1 5 True
4 20 0 2 12 True
5 15 2 1 6 False
6 11 0 0 5 False
7 10 1 0 5 False
8 11 0 1 5 False
9 16 2 2 8 False ,
assists baronKills bountyLevel champLevel championName \
0 14 0 0 16 Malphite
1 9 1 0 18 Khazix
2 10 0 4 16 Kayle
3 11 0 0 14 Jinx
4 17 0 0 14 Thresh
5 13 0 1 17 Renekton
6 9 0 0 15 Zac
7 4 0 0 14 Akali
8 16 0 0 15 Senna
9 13 0 0 13 Nautilus
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 1999 3436 1999
1 2440 44860 2440
2 5688 13882 5688
3 4904 5013 4904
4 879 4943 879
5 1058 1058 1058
6 2553 11172 2553
7 3001 3001 3001
8 3232 7947 3232
9 350 6299 350
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 9 1 0 True False
1 3 1 4 False True
2 5 1 0 False False
3 6 3 0 False False
4 7 3 0 False False
5 6 3 0 False False
6 7 0 1 False False
7 8 0 0 False False
8 5 1 0 False False
9 9 3 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False True False
9 True False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 10624 TOP 0
1 True 18125 JUNGLE 0
2 True 13455 MIDDLE 0
3 True 10296 BOTTOM 1
4 True 8183 UTILITY 0
5 True 12990 TOP 0
6 True 13587 JUNGLE 0
7 True 11176 MIDDLE 0
8 True 12598 BOTTOM 0
9 True 7971 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 4401 3047 3075 6662 0 0 3340
1 0 6691 3142 6694 3158 3814 3053 3364
2 0 1054 3115 1082 3006 4633 1058 3340
3 0 3085 6672 3006 1038 0 0 3363
4 0 3857 3190 3107 2055 3009 3801 3364
5 1 6630 3071 3053 3111 2055 0 3340
6 1 4633 4637 4629 3041 3020 0 3364
7 1 3100 0 3157 3020 4636 0 3340
8 1 3124 6672 3123 3006 3094 3134 3340
9 1 3860 3190 2055 3109 3076 3117 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 3 0 1
1 3 21 13 2
2 2 9 4 4
3 0 1 0 1
4 0 1 0 1
5 2 6 2 2
6 3 11 4 4
7 3 7 2 2
8 1 3 2 2
9 0 3 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 320 54348 14874
1 890 9585 2410
2 703 98933 20724
3 462 532 202
4 532 12861 6010
5 443 5408 2822
6 709 145567 23527
7 717 78633 18446
8 663 1751 200
9 487 10028 5404
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 10219 4 0 0
1 10582 168 0 0
2 12137 13 0 0
3 10407 0 0 0
4 9247 0 0 0
5 15469 4 0 0
6 12864 140 0 0
7 8613 4 0 0
8 4822 34 0 0
9 5455 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 43896
1 0 2 207323
2 0 3 38707
3 0 4 112601
4 0 5 6927
5 0 6 135614
6 0 7 23421
7 0 8 12444
8 0 9 115503
9 0 10 10296
physicalDamageDealtToChampions physicalDamageTaken role \
0 6312 13227 SOLO
1 33693 22503 NONE
2 5041 7213 SOLO
3 17405 4673 CARRY
4 1570 7531 SUPPORT
5 16877 22712 SOLO
6 951 27349 NONE
7 433 15791 SOLO
8 10671 11793 CARRY
9 2601 17556 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 3 12 26
1 4 4 22 11 19
2 3 4 3 12 350
3 5 4 5 7 23
4 3 4 3 14 17
5 2 12 4 4 14
6 2 4 16 11 18
7 4 14 3 12 21
8 3 4 4 7 28
9 7 4 7 14 328
summonerName teamEarlySurrendered teamId teamPosition \
0 hateweakside False 100 TOP
1 RyeBreadPitt False 100 JUNGLE
2 Rotome False 100 MIDDLE
3 vikixkitkat False 100 BOTTOM
4 GloryToArstotzkå False 100 UTILITY
5 BigDickCroc False 200 TOP
6 Collinmonster18 False 200 JUNGLE
7 Mórtém False 200 MIDDLE
8 JhinhaleTheDope False 200 BOTTOM
9 Lanzhou Noods False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 46 1936 114391 21668
1 8 1936 231005 37679
2 11 1936 145750 28047
3 11 1936 134284 18800
4 34 1936 27390 9392
5 29 1936 141023 19699
6 46 1936 181221 28540
7 1 1936 98731 19367
8 41 1936 134924 11433
9 67 1936 31050 8992
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 24505 2601 156 1113
1 34174 22051 30 223
2 20518 7193 208 272
3 16360 3640 191 39
4 18016 3310 40 97
5 40060 13247 207 42
6 44456 40097 45 544
7 25167 2367 161 83
8 16900 10798 181 140
9 24102 740 34 237
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 273 1 16146
1 65 1 14095
2 194 5 8107
3 192 3 21150
4 164 7 7601
5 220 1 0
6 228 1 12233
7 283 1 7654
8 130 5 17670
9 219 1 10726
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 481 1058 0 5
1 1575 1089 1 5
2 2281 1167 4 5
3 1192 1279 1 5
4 1811 1237 0 5
5 0 1878 0 6
6 4061 4241 2 6
7 488 762 1 6
8 561 285 2 6
9 986 1089 0 6
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 16 1 1 9 True
1 24 1 0 8 True
2 11 1 1 6 True
3 24 3 3 13 True
4 62 4 8 25 True
5 30 4 1 12 False
6 12 1 4 0 False
7 18 0 0 10 False
8 21 1 1 12 False
9 63 4 11 25 False ,
assists baronKills bountyLevel champLevel championName \
0 0 0 6 12 Urgot
1 3 0 0 10 Tryndamere
2 1 0 2 11 Akali
3 6 0 1 9 Jhin
4 5 0 1 9 Lux
5 1 0 0 9 Camille
6 1 0 0 9 Graves
7 0 0 2 11 Xerath
8 1 0 0 8 MissFortune
9 3 0 0 8 Pyke
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3337 4256 3337
1 0 15706 0
2 541 541 541
3 1636 1636 1636
4 1726 1726 1726
5 0 0 0
6 0 3932 0
7 821 821 821
8 1440 1440 1440
9 0 1117 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 1 3 0 False False
1 2 1 1 False True
2 1 0 0 False False
3 1 0 0 False False
4 1 3 0 False False
5 5 0 0 False False
6 3 1 1 False False
7 1 1 0 False False
8 6 1 0 False False
9 4 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 7458 TOP 0
1 True 6550 JUNGLE 0
2 True 5526 MIDDLE 0
3 True 6009 BOTTOM 0
4 True 5668 UTILITY 0
5 True 3333 TOP 0
6 True 5551 JUNGLE 0
7 True 5588 MIDDLE 0
8 True 5035 BOTTOM 0
9 True 3552 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1055 2055 6631 3077 1036 3111 3363
1 0 6672 2031 1018 3006 0 0 3364
2 0 1054 1082 2031 3020 3145 1028 3340
3 0 1055 6670 3009 2055 1037 1018 3340
4 0 1001 6655 3853 0 0 0 3364
5 0 1054 3044 1001 2055 3067 0 3340
6 0 6673 2031 1029 1001 0 0 3340
7 0 3070 6655 3020 1052 0 0 3340
8 0 1055 6671 0 1042 0 1001 3340
9 0 3855 3134 3158 0 1036 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 6 6 2
1 1 4 4 2
2 1 3 2 1
3 1 3 2 1
4 1 3 2 2
5 0 0 0 0
6 1 2 2 1
7 1 3 2 1
8 0 1 0 1
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 229 0 0
1 708 5984 0
2 717 28134 3694
3 723 1775 119
4 702 22887 5048
5 423 250 250
6 336 5523 127
7 499 56591 6863
8 397 1438 1108
9 393 0 0
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 338 12 0 0
1 2268 96 0 0
2 5250 0 0 0
3 396 0 0 0
4 1012 0 0 0
5 245 0 0 0
6 1962 80 0 0
7 1404 0 0 0
8 3949 0 0 0
9 2768 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 61269
1 0 2 68819
2 0 3 10000
3 0 4 41886
4 0 5 3779
5 0 6 16206
6 0 7 52965
7 0 8 5778
8 0 9 38638
9 0 10 7477
physicalDamageDealtToChampions physicalDamageTaken role \
0 7120 7506 SUPPORT
1 4555 13616 SUPPORT
2 285 2914 SUPPORT
3 5011 3607 SUPPORT
4 870 3695 SUPPORT
5 2583 9199 SUPPORT
6 3720 7375 SUPPORT
7 929 1601 SUPPORT
8 5347 5834 DUO
9 2221 3853 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 4 14 24
1 3 6 9 11 19
2 2 14 2 4 26
3 3 4 2 3 350
4 2 4 2 14 20
5 3 4 1 12 27
6 9 11 2 4 247
7 2 4 0 21 137
8 3 7 2 4 285
9 3 14 2 4 21
summonerName teamEarlySurrendered teamId teamPosition \
0 GoofyWhiteBoi False 100 TOP
1 RyeBreadPitt False 100 JUNGLE
2 lemelleur False 100 MIDDLE
3 Rotome False 100 BOTTOM
4 xizahk False 100 UTILITY
5 ToxiçToxiçToxiç False 200 TOP
6 hom1esexual False 200 JUNGLE
7 Leam False 200 MIDDLE
8 Conki False 200 BOTTOM
9 Lostmylulu False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 30 966 66651 9057
1 6 966 86601 5478
2 0 966 44736 4166
3 10 966 47011 5130
4 13 966 27146 6397
5 8 966 17984 3391
6 8 966 63833 4134
7 12 966 63849 7792
8 5 966 42682 6455
9 11 966 12576 2685
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 8490 1186 94 234
1 16249 8776 6 256
2 8374 346 89 24
3 4094 842 98 49
4 4707 0 27 152
5 11555 983 48 68
6 9695 3386 9 141
7 3105 0 105 119
8 10340 873 97 42
9 7022 979 27 50
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 10 1 5382
1 55 1 11797
2 30 1 6601
3 21 1 3350
4 21 0 479
5 113 1 1526
6 53 1 5343
7 21 0 1480
8 118 1 2605
9 71 1 5098
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1936 645 1 0
1 923 364 0 0
2 186 210 0 0
3 0 90 0 0
4 479 0 1 0
5 557 2110 0 2
6 287 357 0 2
7 0 100 0 2
8 0 556 0 2
9 464 400 0 2
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 15 4 1 7 True
1 8 1 0 2 True
2 11 0 3 5 True
3 1 1 0 1 True
4 17 3 7 6 True
5 1 2 1 1 False
6 15 1 2 5 False
7 7 1 1 5 False
8 5 1 0 5 False
9 20 2 2 13 False ,
assists baronKills bountyLevel champLevel championName \
0 6 0 8 16 Mordekaiser
1 11 0 2 15 Hecarim
2 16 0 2 16 Gangplank
3 15 0 0 14 Tristana
4 20 0 1 13 Thresh
5 9 0 0 14 Jayce
6 7 0 0 13 LeeSin
7 2 0 0 14 Kayle
8 9 0 0 14 Samira
9 9 0 0 11 Pyke
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 4605 11101 4605
1 2515 15130 2515
2 3319 4605 3319
3 9357 15680 9357
4 1652 2249 1652
5 3020 3020 3020
6 0 6680 0
7 826 1968 826
8 2383 3258 2383
9 1555 2325 1555
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 1 0 False False
1 4 0 1 False False
2 3 0 1 False False
3 4 0 0 False True
4 7 8 0 True False
5 7 1 0 False False
6 9 0 1 False False
7 8 0 0 False False
8 11 1 0 False False
9 8 5 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False True False
9 True False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 13526 TOP 0
1 False 14536 JUNGLE 1
2 False 13226 MIDDLE 0
3 False 12032 BOTTOM 0
4 False 8264 UTILITY 0
5 False 9797 TOP 0
6 False 10286 JUNGLE 0
7 False 10317 MIDDLE 0
8 False 11232 BOTTOM 0
9 False 8709 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 4637 3047 4633 3076 1011 0 3340
1 0 6632 3047 3053 6333 3134 1018 3340
2 0 3508 2033 3158 6691 6676 1037 3340
3 0 1055 6672 3006 3046 3033 1037 3340
4 0 3190 4643 3857 3158 3067 1029 3364
5 1 3133 3004 6692 3158 1036 1036 3340
6 1 3158 6630 2031 3074 3044 1028 3340
7 1 1054 1082 3006 3115 4633 3191 3340
8 1 1055 6673 3047 6676 1038 1037 3340
9 1 3857 6691 1036 3117 3179 1036 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 12 8 2
1 3 17 9 2
2 3 8 3 2
3 1 5 4 2
4 0 1 0 1
5 1 5 3 1
6 1 5 2 2
7 1 3 2 1
8 2 5 2 2
9 2 5 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 677 132281 21064
1 572 16529 2943
2 746 7964 4104
3 684 18673 1069
4 459 15567 8355
5 621 6893 3749
6 601 23080 2157
7 492 70238 12430
8 338 10912 2614
9 461 0 0
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 5190 32 0 0
1 7854 122 0 0
2 4936 9 0 0
3 1726 20 0 0
4 2586 0 0 0
5 11500 0 1 0
6 9019 91 1 0
7 6049 0 1 0
8 7171 0 1 0
9 5261 0 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 19864
1 0 2 116462
2 0 3 124186
3 0 4 103947
4 0 5 6241
5 0 6 90524
6 0 7 71704
7 0 8 32927
8 0 9 102056
9 0 10 17184
physicalDamageDealtToChampions physicalDamageTaken role \
0 3204 24358 SOLO
1 22660 31438 NONE
2 13267 14217 SOLO
3 12230 14043 CARRY
4 1609 17836 SUPPORT
5 21723 9172 SOLO
6 13074 19941 NONE
7 4132 15269 SOLO
8 24140 15084 CARRY
9 9201 10091 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 3 12 22
1 17 11 4 4 223
2 5 4 4 14 10
3 4 4 5 7 23
4 7 3 11 4 25
5 2 12 5 4 277
6 5 4 15 11 19
7 4 4 2 12 350
8 4 4 6 7 12
9 3 4 6 14 27
summonerName teamEarlySurrendered teamId teamPosition \
0 BossBabyCreampie False 100 TOP
1 ƒIooƒy False 100 JUNGLE
2 zummu False 100 MIDDLE
3 Yuichi95 False 100 BOTTOM
4 Donquijote D False 100 UTILITY
5 Vaeldon False 200 TOP
6 RyeBreadPitt False 200 JUNGLE
7 Rotome False 200 MIDDLE
8 Cerahii False 200 BOTTOM
9 PeterWuzHere False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 8 1766 156222 25812
1 30 1766 147151 28222
2 8 1766 144818 19423
3 5 1766 134928 14545
4 48 1766 25575 9965
5 11 1766 104210 25565
6 29 1766 101525 16380
7 8 1766 106797 16942
8 0 1766 115719 26900
9 34 1766 24727 10424
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 30195 12244 152 81
1 41102 23635 29 310
2 19393 5973 187 219
3 16171 7428 154 35
4 20820 1811 33 143
5 21674 3847 139 83
6 31326 7304 15 325
7 23221 3656 196 171
8 24246 4748 176 0
9 15551 2221 31 90
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 96 1 4076
1 108 1 14159
2 112 1 12668
3 132 3 12307
4 171 5 3766
5 276 1 6793
6 235 1 6740
7 264 4 3630
8 259 2 2750
9 182 1 7542
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1543 646 2 2
1 2618 1809 1 2
2 2051 238 0 2
3 1245 402 6 2
4 0 397 0 2
5 93 1001 1 9
6 1148 2365 0 9
7 379 1901 0 9
8 145 1990 1 9
9 1223 198 0 9
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 22 2 0 7 True
1 17 0 1 8 True
2 9 0 0 7 True
3 18 0 6 9 True
4 55 9 6 28 True
5 8 1 0 6 False
6 10 0 0 8 False
7 1 1 1 0 False
8 13 1 4 6 False
9 45 5 10 16 False ,
assists baronKills bountyLevel champLevel championName \
0 2 0 3 14 FiddleSticks
1 12 0 1 12 Zac
2 4 0 0 12 Kayle
3 7 0 1 11 Samira
4 6 0 0 10 Pyke
5 1 0 0 11 Riven
6 2 0 0 11 MasterYi
7 3 0 0 12 Qiyana
8 2 0 0 10 Jhin
9 7 0 0 10 Nami
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3380 5573 3380
1 1250 9959 1250
2 2930 2930 2930
3 2091 5156 2091
4 1221 3896 1221
5 381 381 381
6 1441 8036 1441
7 391 1319 391
8 3926 3926 3926
9 1486 1486 1486
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 2 0 0 False True
1 2 0 2 False False
2 2 0 0 False False
3 3 0 0 False False
4 2 1 0 False False
5 8 1 0 False False
6 2 0 1 False False
7 5 0 0 False False
8 6 3 0 False False
9 5 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 True False False
7 False False False
8 False True False
9 True False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 10010 TOP 0
1 True 8586 JUNGLE 0
2 True 7212 MIDDLE 0
3 True 6688 BOTTOM 0
4 True 6432 UTILITY 0
5 True 4893 TOP 0
6 True 8852 JUNGLE 0
7 True 7327 MIDDLE 0
8 True 6735 BOTTOM 0
9 True 5738 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3047 3157 2033 6653 3082 0 3330
1 0 3111 2031 3068 3075 1029 1029 3340
2 0 1054 1082 3115 3047 0 0 3363
3 0 6673 3047 1036 1036 0 1055 3340
4 0 3855 3047 6691 1036 1036 0 3364
5 0 6692 0 0 0 0 1001 3340
6 0 3006 6691 2031 3153 1042 0 3364
7 0 3111 2031 6693 3134 1037 0 3340
8 0 6671 3134 3009 0 0 1055 3340
9 0 4005 3114 3853 3158 1052 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 11 7 2
1 1 6 4 2
2 1 4 3 1
3 1 3 2 1
4 1 2 2 1
5 0 1 0 1
6 2 5 3 2
7 1 2 2 1
8 0 2 0 1
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 890 68963 13753
1 876 69155 9292
2 883 27739 4063
3 558 4061 874
4 892 0 0
5 234 0 0
6 1057 5941 188
7 388 1811 427
8 307 6367 1392
9 319 10850 4633
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 750 1 0 0
1 2397 81 0 0
2 391 0 0 0
3 2500 0 0 0
4 1532 1 0 0
5 7003 0 0 0
6 5792 117 0 0
7 5377 0 0 0
8 5991 0 0 0
9 5115 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 9426
1 0 2 15857
2 0 3 20091
3 0 4 30803
4 0 5 14375
5 0 6 43858
6 0 7 95066
7 0 8 47901
8 0 9 59641
9 0 10 1769
physicalDamageDealtToChampions physicalDamageTaken role \
0 966 11524 SOLO
1 1749 13213 NONE
2 2407 8189 SOLO
3 3929 8334 CARRY
4 4054 6156 SUPPORT
5 5316 3986 SOLO
6 6595 11825 NONE
7 8395 4649 SOLO
8 9129 7046 CARRY
9 377 4073 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 12 6 14 132
1 2 4 15 11 181
2 2 4 3 12 349
3 4 7 1 4 84
4 3 14 4 4 179
5 3 4 2 14 225
6 2 4 8 11 171
7 3 4 3 14 332
8 3 4 4 7 243
9 4 14 4 4 192
summonerName teamEarlySurrendered teamId teamPosition \
0 ThePizzaMarine False 100 TOP
1 Coolgum15 False 100 JUNGLE
2 Rotome False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 Thick2BThighs False 100 UTILITY
5 Ebawnyy False 200 TOP
6 14siuqraM False 200 JUNGLE
7 mouth pee False 200 MIDDLE
8 ColossalYodas False 200 BOTTOM
9 CrotchBlaster500 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 51 1280 83469 15904
1 33 1280 92047 12142
2 4 1280 51351 6470
3 1 1280 37870 4803
4 11 1280 19505 4604
5 15 1280 44014 5472
6 1 1280 118347 8630
7 17 1280 50055 9165
8 3 1280 66008 10522
9 16 1280 13225 5616
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 12604 4391 131 386
1 16919 20524 26 426
2 9304 2537 117 130
3 11160 3233 85 1
4 7951 1994 24 73
5 11704 601 77 70
6 18532 8391 22 78
7 10584 776 119 67
8 13499 2314 131 105
9 9376 4900 11 139
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 51 1 5079
1 66 4 7035
2 68 5 3520
3 64 2 3005
4 52 1 5130
5 171 1 156
6 69 1 17339
7 110 1 342
8 143 3 0
9 115 4 605
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1184 329 1 1
1 1101 1308 1 1
2 0 723 1 1
3 0 325 1 1
4 550 262 0 1
5 156 714 0 4
6 1846 915 0 4
7 342 556 0 4
8 0 461 1 4
9 605 187 0 4
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 30 0 3 0 True
1 9 0 0 6 True
2 6 1 1 4 True
3 17 0 4 6 True
4 17 1 1 13 True
5 11 1 1 7 False
6 16 0 1 5 False
7 10 0 1 7 False
8 12 3 2 9 False
9 27 1 2 14 False ,
assists baronKills bountyLevel champLevel championName \
0 8 0 1 14 Nasus
1 8 1 4 14 JarvanIV
2 7 0 0 14 Fizz
3 8 0 0 13 Ashe
4 15 0 0 12 Seraphine
5 3 0 0 15 Kled
6 4 0 0 12 Zac
7 3 0 0 14 Veigar
8 8 0 0 13 Jhin
9 4 0 1 12 Xerath
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3594 7673 3594
1 3562 30819 3562
2 4020 7471 4020
3 3069 14179 3069
4 1840 3489 1840
5 3568 3568 3568
6 24 8416 24
7 1179 5242 1179
8 0 3255 0
9 0 2169 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 0 0 True False
1 4 2 1 False True
2 4 0 0 False False
3 7 0 1 False False
4 4 2 0 False False
5 5 0 0 False False
6 7 1 1 False False
7 6 0 1 False False
8 1 0 0 False False
9 5 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 True False False
2 False False False
3 False True False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 9206 TOP 0
1 False 11641 JUNGLE 2
2 False 9582 MIDDLE 0
3 False 9737 BOTTOM 0
4 False 7936 UTILITY 0
5 False 10185 TOP 0
6 False 7012 JUNGLE 0
7 False 10168 MIDDLE 0
8 False 6475 BOTTOM 0
9 False 8420 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 6632 1054 3158 3110 3067 1033 3340
1 0 6630 2421 3111 2031 1038 3053 3364
2 0 3057 3157 2033 4636 3158 3113 3340
3 0 3085 6672 3006 2031 1036 1036 3340
4 0 3853 6617 3158 3504 1026 0 3364
5 2 1055 3748 3068 3047 3044 1028 3340
6 2 3068 2031 3111 3076 1011 0 3340
7 2 1056 6656 3020 3102 1058 0 3340
8 2 6671 3009 1036 1036 0 1055 3340
9 2 3853 3020 6655 4628 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 2 0 1
1 3 8 4 2
2 1 5 2 2
3 2 7 3 2
4 0 2 0 1
5 3 8 4 1
6 0 0 0 0
7 2 9 3 1
8 0 0 0 0
9 2 7 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 622 14735 4535
1 715 7487 433
2 802 38116 7460
3 328 1794 1184
4 733 30493 12077
5 508 9047 4058
6 718 89766 7363
7 736 84439 22283
8 715 3175 530
9 725 40145 20609
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 9415 0 0 0
1 14024 92 0 0
2 10895 0 0 0
3 13757 8 0 0
4 8308 4 0 0
5 8406 8 1 0
6 5798 112 1 0
7 5648 8 1 0
8 4435 0 1 0
9 3507 0 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 82547
1 0 2 90770
2 0 3 19238
3 0 4 80009
4 0 5 4016
5 0 6 104670
6 0 7 17766
7 0 8 10272
8 0 9 71675
9 0 10 1907
physicalDamageDealtToChampions physicalDamageTaken role \
0 11990 20546 SOLO
1 13577 17859 NONE
2 1267 3175 SOLO
3 14911 4496 CARRY
4 1923 5802 SUPPORT
5 22446 28469 SOLO
6 617 19106 NONE
7 603 10220 SOLO
8 6455 6763 CARRY
9 288 6074 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 6 6 3 12 40
1 4 4 16 11 240
2 2 14 1 4 41
3 2 4 4 7 53
4 3 4 5 3 77
5 4 12 7 14 132
6 3 4 17 11 181
7 2 4 2 12 349
8 3 7 3 4 84
9 5 3 3 4 179
summonerName teamEarlySurrendered teamId teamPosition \
0 Xyta False 100 TOP
1 FourLeafedElfMan False 100 JUNGLE
2 Dr Spongy False 100 MIDDLE
3 Pastor Geronimo False 100 BOTTOM
4 sirjames2003 False 100 UTILITY
5 ThePizzaMarine False 200 TOP
6 Coolgum15 False 200 JUNGLE
7 Rotome False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 Thick2BThighs False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 16 1591 98254 17003
1 23 1591 120975 16110
2 7 1591 62021 9106
3 34 1591 92672 18907
4 30 1591 34558 14049
5 12 1591 122049 27620
6 33 1591 117694 8940
7 47 1591 94711 22887
8 26 1591 74851 6986
9 25 1591 44563 20897
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 31108 6941 150 368
1 32036 11913 40 331
2 16070 2726 131 88
3 18466 2090 137 506
4 14175 9672 21 160
5 37880 6788 164 93
6 29129 26046 16 379
7 16536 1632 152 127
8 11198 3990 112 95
9 10001 24 22 116
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 102 1 971
1 121 1 22718
2 109 1 4665
3 206 2 10869
4 114 5 48
5 110 1 8330
6 179 5 10160
7 181 1 0
8 21 2 0
9 106 1 2511
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 477 1145 2 1
1 2099 152 4 1
2 378 2000 1 1
3 2810 212 1 1
4 48 64 0 1
5 1115 1003 1 9
6 958 4224 0 9
7 0 666 0 9
8 0 0 0 9
9 0 419 0 9
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 8 0 0 5 True
1 24 2 5 3 True
2 11 0 0 6 True
3 8 0 0 4 True
4 27 2 3 7 True
5 12 0 0 8 False
6 9 1 0 5 False
7 8 0 0 5 False
8 9 0 0 6 False
9 24 2 2 12 False ,
assists baronKills bountyLevel champLevel championName \
0 2 0 7 13 Nasus
1 4 0 1 11 Zac
2 0 0 2 12 Kayle
3 1 0 1 10 Samira
4 1 0 1 9 Brand
5 0 0 0 10 Mordekaiser
6 1 0 0 10 Diana
7 0 0 0 10 Yone
8 2 0 0 9 Ashe
9 3 0 0 10 Morgana
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 4257 4257 4257
1 0 3555 0
2 4535 5561 4535
3 318 318 318
4 0 1143 0
5 0 0 0
6 0 7257 0
7 1165 2622 1165
8 2939 2939 2939
9 895 895 895
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 0 0 0 False False
1 2 2 0 False False
2 0 1 0 False False
3 3 0 0 False False
4 4 2 1 False False
5 5 0 0 False False
6 2 1 1 False False
7 2 1 0 False False
8 2 0 0 False True
9 3 0 0 True False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 8990 TOP 0
1 True 5260 JUNGLE 0
2 True 6430 MIDDLE 0
3 True 5036 BOTTOM 0
4 True 5107 UTILITY 0
5 True 3892 TOP 0
6 True 5174 JUNGLE 0
7 True 5851 MIDDLE 0
8 True 6055 BOTTOM 0
9 True 6080 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1054 3158 6632 3024 3082 0 3340
1 0 1029 2031 6660 1001 1033 2055 3364
2 0 1056 1082 3006 3115 0 0 3340
3 0 6673 1029 0 0 0 1055 3340
4 0 3853 3020 3108 3802 0 0 3364
5 0 1056 4635 3047 1026 0 0 3340
6 0 4636 2031 3020 0 0 0 3340
7 0 6673 3006 1018 0 0 0 3340
8 0 6672 3006 1055 1018 1042 0 3340
9 0 6653 3853 3020 0 0 0 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 1 7 7 2
1 0 1 0 1
2 1 2 2 1
3 0 1 0 1
4 1 3 2 2
5 0 0 0 0
6 0 0 0 0
7 1 3 2 1
8 1 2 2 1
9 2 4 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 0 12679 2782
1 563 48875 3007
2 0 30372 3308
3 299 2826 137
4 421 15306 6696
5 391 27821 6356
6 798 49139 2166
7 710 5413 942
8 749 609 409
9 753 22566 9584
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 9161 0 0 0
1 4652 77 0 0
2 2346 0 0 0
3 2360 0 0 0
4 2474 4 0 0
5 2397 0 0 0
6 2814 100 0 0
7 3241 0 0 0
8 4736 0 0 0
9 3724 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 72276
1 0 2 13803
2 0 3 19219
3 0 4 28047
4 0 5 1096
5 0 6 9994
6 0 7 17540
7 0 8 41133
8 0 9 51478
9 0 10 3645
physicalDamageDealtToChampions physicalDamageTaken role \
0 11388 6642 DUO
1 587 10684 SUPPORT
2 1962 3814 SUPPORT
3 1315 3187 SUPPORT
4 447 3936 SUPPORT
5 1068 8481 SUPPORT
6 591 7797 SUPPORT
7 3851 6290 DUO
8 6724 2219 SUPPORT
9 1011 3435 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 12 2 4 132
1 2 4 11 11 180
2 2 4 2 12 349
3 2 7 1 4 84
4 3 14 2 4 179
5 1 4 1 12 39
6 2 4 10 11 170
7 2 4 4 14 115
8 2 7 3 4 92
9 1 4 2 3 195
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 ThePizzaMarine False 100 TOP 14
1 Coolgum15 False 100 JUNGLE 13
2 Rotome False 100 MIDDLE 4
3 Dublaiar False 100 BOTTOM 0
4 Thick2BThighs False 100 UTILITY 9
5 MeerNoob False 200 TOP 2
6 Aecxd False 200 JUNGLE 2
7 uhhhhhhhhhhm False 200 MIDDLE 6
8 Fluffykittenn False 200 BOTTOM 23
9 ObenOW False 200 UTILITY 37
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1062 89455 14384
1 1062 70085 4100
2 1062 62382 5270
3 1062 32414 1452
4 1062 16815 7556
5 1062 37815 7425
6 1062 74340 3326
7 1062 53610 6247
8 1062 55782 7678
9 1062 26517 10773
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 16373 4245 148 117
1 16508 16545 3 309
2 6995 1895 126 109
3 5547 1248 86 0
4 6714 853 7 15
5 10982 1286 67 20
6 10680 4304 11 128
7 9839 997 106 44
8 7225 878 114 419
9 7406 1101 19 70
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 0 1 4499
1 43 3 7406
2 0 2 12790
3 53 3 1540
4 74 1 412
5 134 1 0
6 60 1 7660
7 30 1 7063
8 51 3 3693
9 57 1 305
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 214 569 1 1
1 506 1172 0 1
2 0 835 1 1
3 0 0 0 1
4 412 303 0 1
5 0 104 0 2
6 568 68 0 2
7 1453 308 0 2
8 544 270 1 2
9 177 246 0 2
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 7 0 0 5 True
1 12 4 2 4 True
2 6 1 0 3 True
3 6 0 0 5 True
4 26 2 1 15 True
5 8 0 0 5 False
6 18 1 3 3 False
7 12 1 0 6 False
8 6 0 0 4 False
9 6 0 1 3 False ,
assists baronKills bountyLevel champLevel championName \
0 1 0 1 11 Elise
1 6 0 5 13 DrMundo
2 4 0 0 12 Kayle
3 4 0 5 14 Vayne
4 13 0 0 9 Ahri
5 5 0 1 13 Aatrox
6 6 0 0 11 Morgana
7 1 0 0 11 Sylas
8 4 0 0 10 Jinx
9 6 0 1 9 Braum
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 1164 1257 1164
1 2274 21670 2274
2 2162 5380 2162
3 7517 7517 7517
4 1651 1651 1651
5 748 2060 748
6 111 13739 111
7 2847 2847 2847
8 0 2374 0
9 0 0 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 8 2 0 False False
1 0 0 1 False False
2 2 0 0 False False
3 1 0 0 False True
4 6 3 0 True False
5 2 2 0 False False
6 4 4 1 False False
7 9 3 0 False False
8 4 2 0 False False
9 5 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False True False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 5869 TOP 0
1 True 9256 JUNGLE 0
2 True 8600 MIDDLE 0
3 True 10988 BOTTOM 0
4 True 7161 UTILITY 0
5 True 8733 TOP 0
6 True 9096 JUNGLE 0
7 True 6864 MIDDLE 0
8 True 6033 BOTTOM 0
9 True 5022 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1055 1028 3916 1043 3047 3145 3363
1 0 3111 3068 3065 3066 0 0 3340
2 0 1056 3006 1082 3115 4633 0 3340
3 0 1055 2031 3006 6672 3046 1037 3340
4 0 3070 6656 3853 1052 3020 0 3364
5 0 6630 1055 3047 0 3071 0 3364
6 0 4637 2420 6653 3158 2031 0 3340
7 0 2033 6656 2421 3158 1052 1029 3363
8 0 1055 1042 0 6672 3006 2015 3363
9 0 3855 3117 1027 3190 1029 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 2 0 1
1 1 5 5 2
2 1 6 6 1
3 2 9 5 2
4 0 2 0 1
5 1 6 4 1
6 1 6 4 1
7 0 3 0 1
8 0 0 0 0
9 0 2 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 247 20675 5541
1 0 59484 3712
2 1072 36920 6835
3 655 0 0
4 345 19158 8030
5 519 0 0
6 517 76964 10707
7 425 52025 8732
8 472 784 52
9 345 3589 2437
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 2067 0 0 0
1 5184 112 0 0
2 5477 4 0 0
3 5148 4 0 0
4 5654 1 0 0
5 7383 6 0 0
6 3492 81 0 0
7 9464 0 0 0
8 1419 10 0 0
9 3109 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 17611
1 0 2 45826
2 0 3 24814
3 0 4 93185
4 0 5 3892
5 0 6 84726
6 0 7 14868
7 0 8 6373
8 0 9 61492
9 0 10 4557
physicalDamageDealtToChampions physicalDamageTaken role \
0 1721 9571 NONE
1 4047 12954 NONE
2 2942 4736 SOLO
3 11476 5848 CARRY
4 1304 4978 SUPPORT
5 13564 8999 NONE
6 1063 12616 NONE
7 190 8921 SOLO
8 5043 6257 CARRY
9 586 4803 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 12 4 14 689
1 11 11 2 4 132
2 2 4 2 12 349
3 2 4 3 7 165
4 5 14 4 4 522
5 3 4 1 12 188
6 3 4 7 11 172
7 4 4 4 14 29
8 1 1 2 4 180
9 3 14 4 4 356
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 Darling Panda False 100 TOP 17
1 ThePizzaMarine False 100 JUNGLE 6
2 Rotome False 100 MIDDLE 4
3 ZíppoBolter False 100 BOTTOM 5
4 Supah Sugoi False 100 UTILITY 33
5 machinepieguy False 200 TOP 15
6 Threekings236 False 200 JUNGLE 28
7 hentaib00bies False 200 MIDDLE 16
8 TheCleric63 False 200 BOTTOM 2
9 Low IQ Dad False 200 UTILITY 9
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1268 40705 7837
1 1268 116443 8155
2 1268 63303 9778
3 1268 115829 15874
4 1268 31679 13312
5 1268 87111 13564
6 1268 99518 12496
7 1268 58981 9504
8 1268 64482 5391
9 1268 13256 3473
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 12308 1509 83 25
1 18541 13502 34 226
2 10363 3133 121 108
3 11506 5527 163 48
4 10954 608 26 70
5 17867 5189 120 159
6 18356 9057 42 171
7 19813 2364 100 248
8 9010 732 133 25
9 10761 222 32 45
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 162 1 2419
1 0 1 11132
2 75 4 1567
3 27 2 22643
4 103 1 8628
5 53 1 2385
6 99 1 7685
7 228 1 582
8 52 1 2204
9 78 4 5109
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 574 669 1 1
1 395 402 2 1
2 0 149 1 1
3 4397 509 2 1
4 3977 321 0 1
5 0 1485 0 6
6 725 2247 1 6
7 582 1428 0 6
8 295 1333 0 6
9 450 2849 0 6
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 14 3 0 9 True
1 17 0 5 7 True
2 11 0 2 5 True
3 6 0 0 5 True
4 49 3 7 24 True
5 14 2 2 5 False
6 22 4 3 10 False
7 13 4 1 10 False
8 14 2 1 9 False
9 40 2 5 17 False ,
assists baronKills bountyLevel champLevel championName \
0 0 0 7 12 Sett
1 2 0 3 10 Nocturne
2 2 0 0 12 Viktor
3 2 0 0 9 Jhin
4 7 0 0 9 Nami
5 0 0 1 10 Kayle
6 1 0 0 9 Skarner
7 0 0 0 11 Lucian
8 2 0 0 9 Ashe
9 3 0 0 8 Braum
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 5073 23987 5073
1 1808 11317 1808
2 761 761 761
3 2158 2158 2158
4 929 1043 929
5 0 0 0
6 0 2189 0
7 369 369 369
8 0 0 0
9 0 0 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 0 2 0 False True
1 0 0 1 False False
2 1 3 0 False False
3 1 0 0 False False
4 3 1 0 False False
5 3 0 0 False False
6 4 0 0 False False
7 4 2 0 False False
8 3 2 0 False False
9 3 3 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 9107 TOP 0
1 True 7075 JUNGLE 0
2 True 6655 MIDDLE 0
3 True 7056 BOTTOM 0
4 True 5394 UTILITY 0
5 True 4799 TOP 0
6 True 5090 JUNGLE 0
7 True 5837 MIDDLE 0
8 True 5622 BOTTOM 0
9 True 3557 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1055 6631 3047 3748 0 0 3513
1 0 3068 2031 3047 1042 1036 0 3340
2 0 2033 3191 1001 0 6655 0 3363
3 0 1055 6671 1036 1037 3009 1018 3340
4 0 3853 4005 3158 2055 3114 0 3364
5 0 1056 3006 2055 1082 1052 1043 3340
6 0 3047 1028 6664 0 0 0 3340
7 0 3057 6671 2055 1055 0 3006 3340
8 0 1055 6672 2055 3006 0 0 3363
9 0 3855 1029 3047 3067 1033 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 7 7 2
1 1 3 3 2
2 1 2 2 1
3 1 4 4 2
4 0 1 0 1
5 0 1 0 1
6 0 1 0 1
7 0 1 0 1
8 0 2 0 1
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 0 0 0
1 0 12981 233
2 817 53659 5398
3 951 1842 583
4 488 9552 4435
5 378 15680 1203
6 345 28696 1314
7 317 1949 524
8 444 652 652
9 485 3752 1957
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 1434 28 0 0
1 1575 96 0 0
2 678 0 0 0
3 1714 0 0 0
4 1739 0 0 0
5 705 4 0 0
6 2664 86 0 0
7 4028 0 0 0
8 1700 0 0 0
9 2842 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 91667
1 0 2 62835
2 0 3 9315
3 0 4 55409
4 0 5 3984
5 0 6 15232
6 0 7 35474
7 0 8 58115
8 0 9 34321
9 0 10 2722
physicalDamageDealtToChampions physicalDamageTaken role \
0 8492 6197 SUPPORT
1 1423 9721 SUPPORT
2 161 4344 SUPPORT
3 6989 5437 SUPPORT
4 1275 5734 SUPPORT
5 217 7067 SUPPORT
6 1981 10737 SUPPORT
7 5916 3423 DUO
8 6163 4975 SUPPORT
9 390 4011 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 2 12 128
1 9 11 3 4 166
2 3 12 2 4 457
3 3 7 2 4 164
4 4 3 2 4 411
5 2 4 1 12 349
6 10 11 2 4 132
7 3 4 2 12 99
8 1 4 3 7 352
9 3 4 3 3 201
summonerName teamEarlySurrendered teamId teamPosition \
0 Necropantser False 100 TOP
1 Eithin False 100 JUNGLE
2 AgentChodyBlunts False 100 MIDDLE
3 Spegward False 100 BOTTOM
4 KittyKatKatawina False 100 UTILITY
5 Rotome False 200 TOP
6 ThePizzaMarine False 200 JUNGLE
7 Dharti False 200 MIDDLE
8 UnspokenDG False 200 BOTTOM
9 Binnery False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 17 1030 101144 9149
1 46 1030 83601 1882
2 2 1030 62974 5559
3 13 1030 57252 7573
4 24 1030 13536 5711
5 4 1030 32757 1420
6 17 1030 69605 3699
7 0 1030 66535 6441
8 21 1030 35354 6815
9 14 1030 10392 2348
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 7748 2213 107 186
1 11364 7639 13 246
2 5154 20 132 35
3 7239 1976 103 28
4 7474 4729 11 138
5 8231 1212 94 109
6 13600 4385 6 377
7 7542 602 141 8
8 6676 888 104 327
9 6989 220 25 88
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 0 1 9477
1 0 1 7785
2 35 1 0
3 30 2 0
4 62 4 0
5 67 2 1845
6 75 1 5434
7 109 1 6470
8 58 2 381
9 62 1 3917
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 656 116 2 0
1 226 68 0 0
2 0 132 1 0
3 0 88 1 0
4 0 0 0 0
5 0 457 0 4
6 404 198 0 4
7 0 90 0 4
8 0 0 0 4
9 0 136 0 4
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 13 2 0 7 True
1 8 0 1 3 True
2 15 3 3 8 True
3 6 0 0 4 True
4 32 2 6 12 True
5 3 1 0 2 False
6 8 0 0 5 False
7 11 3 1 7 False
8 18 3 2 7 False
9 9 3 1 8 False ,
assists baronKills bountyLevel champLevel championName \
0 1 0 1 15 Gwen
1 4 0 0 15 RekSai
2 8 0 1 15 Malzahar
3 9 0 2 16 Yasuo
4 11 0 3 13 Lux
5 1 0 0 14 Kayle
6 4 0 0 12 Amumu
7 5 0 0 14 Zed
8 4 0 0 15 Caitlyn
9 8 0 0 11 Pyke
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 5648 9985 5648
1 0 14614 0
2 3903 16591 3903
3 9854 12861 9854
4 3374 4528 3374
5 485 2474 485
6 0 3718 0
7 453 1347 453
8 1417 3525 1417
9 106 106 106
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 0 0 0 False False
1 5 0 1 False True
2 5 1 1 False False
3 5 0 0 False False
4 4 5 0 False False
5 6 1 0 False False
6 10 0 0 False False
7 8 2 0 False False
8 6 0 1 False False
9 10 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 9542 TOP 1
1 False 13633 JUNGLE 0
2 False 11544 MIDDLE 1
3 False 14671 BOTTOM 1
4 False 10079 UTILITY 0
5 False 9085 TOP 0
6 False 7153 JUNGLE 0
7 False 10441 MIDDLE 0
8 False 11385 BOTTOM 0
9 False 6426 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1055 4633 2031 3047 3115 0 3340
1 0 6693 3053 3047 3071 1031 3133 3340
2 0 3040 3020 6653 4637 0 0 3340
3 0 6673 2420 3006 3072 3031 0 3364
4 0 3853 6655 3020 3041 3145 1058 3340
5 3 1056 3006 3115 4633 1082 1029 3340
6 3 4633 3020 1011 2031 1057 0 3340
7 3 1036 6693 1036 3133 3158 6695 3340
8 3 3031 6671 3095 3006 0 0 3340
9 3 3117 6691 3855 3134 1036 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 1 0 1
1 4 16 7 2
2 1 4 2 1
3 4 11 3 2
4 2 8 3 1
5 0 1 0 1
6 0 1 0 1
7 4 9 2 1
8 2 7 3 2
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 1638 49358 2123
1 554 8328 0
2 431 125561 17351
3 526 6798 1535
4 525 42700 19817
5 510 66608 6537
6 378 57394 6751
7 403 4891 1284
8 466 3116 817
9 312 0 0
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 4546 12 0 0
1 7142 153 0 0
2 1488 16 0 0
3 2688 19 0 0
4 1442 4 0 0
5 6674 8 1 0
6 8149 83 1 0
7 9566 0 1 0
8 6726 12 1 0
9 11791 0 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 42244
1 0 2 133591
2 0 3 9232
3 0 4 176438
4 0 5 3876
5 0 6 35496
6 0 7 13824
7 0 8 81852
8 0 9 118028
9 0 10 10083
physicalDamageDealtToChampions physicalDamageTaken role \
0 1377 7388 DUO
1 19347 20204 NONE
2 614 9058 DUO
3 19594 14098 CARRY
4 1650 7477 SUPPORT
5 1889 10124 SOLO
6 1003 21874 NONE
7 12854 10166 SOLO
8 14116 9885 CARRY
9 5435 8731 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 1 4 1 12 165
1 4 4 14 11 288
2 5 3 2 4 222
3 5 14 3 4 425
4 4 4 5 3 127
5 2 4 3 12 349
6 3 4 12 11 234
7 4 4 6 14 29
8 3 4 4 7 248
9 5 14 1 4 132
summonerName teamEarlySurrendered teamId teamPosition \
0 GaledKeyblade False 100 TOP
1 xXUnseen BladeXx False 100 JUNGLE
2 cronobinder False 100 MIDDLE
3 CryAwakening False 100 BOTTOM
4 BungBoeHue False 100 UTILITY
5 Rotome False 200 TOP
6 LokiTaco False 200 JUNGLE
7 Champagnep4p1 False 200 MIDDLE
8 French Roast False 200 BOTTOM
9 ThePizzaMarine False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 2 1643 125495 4818
1 24 1643 164834 24124
2 48 1643 137643 17966
3 14 1643 189409 21783
4 44 1643 47357 22248
5 8 1643 114313 8522
6 18 1643 80916 8690
7 5 1643 91478 14707
8 17 1643 124260 15083
9 21 1643 15137 6383
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 11934 4769 199 30
1 28584 12565 11 378
2 10847 2036 168 324
3 17678 4532 185 108
4 9187 1579 26 159
5 18794 3318 199 215
6 33224 6423 20 79
7 20373 1039 116 132
8 17163 2356 176 102
9 21665 4287 28 86
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 0 1 33891
1 172 1 22914
2 127 1 2850
3 157 1 6173
4 98 1 780
5 178 3 12208
6 285 1 9697
7 222 1 4734
8 175 3 3116
9 219 1 5053
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1318 0 3 0
1 4777 1237 0 0
2 0 301 3 0
3 654 891 3 0
4 780 267 2 0
5 95 1996 0 11
6 936 3199 0 11
7 567 640 0 11
8 150 552 0 11
9 948 1141 0 11
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 11 0 1 6 True
1 17 0 0 6 True
2 24 1 0 8 True
3 10 0 1 3 True
4 55 5 8 29 True
5 9 1 0 5 False
6 15 0 0 8 False
7 23 3 1 8 False
8 10 1 0 7 False
9 46 1 5 22 False ,
assists baronKills bountyLevel champLevel championName \
0 3 0 1 13 Singed
1 6 1 1 12 Olaf
2 1 0 1 12 Pantheon
3 5 0 2 12 Ashe
4 12 0 2 11 Thresh
5 1 0 0 13 Renekton
6 4 0 0 11 FiddleSticks
7 4 0 0 9 Lux
8 4 0 0 10 Caitlyn
9 1 0 0 11 Zed
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3039 3568 3039
1 492 12607 492
2 556 2716 556
3 3351 16249 3351
4 592 4307 592
5 6978 18248 6978
6 0 3759 0
7 0 951 0
8 0 6015 0
9 1125 1125 1125
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 4 1 0 False False
1 3 2 2 False False
2 2 2 0 False False
3 3 2 0 False False
4 1 2 0 False False
5 4 2 0 False True
6 5 0 1 False False
7 9 4 0 False False
8 6 1 0 False False
9 3 4 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False True False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 8335 TOP 0
1 True 9242 JUNGLE 0
2 True 7557 MIDDLE 0
3 True 10377 BOTTOM 0
4 True 7255 UTILITY 0
5 True 9019 TOP 0
6 True 5688 JUNGLE 0
7 True 5916 UTILITY 0
8 True 5761 BOTTOM 0
9 True 8130 MIDDLE 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3116 4633 2033 3047 0 0 3340
1 0 3133 1031 6630 1028 3047 1037 3364
2 0 6692 2033 3111 3044 1037 1028 3363
3 0 1053 6671 1055 1038 3046 3006 3363
4 0 3050 3857 2065 1029 3117 1029 3364
5 0 6631 3111 3071 2031 3076 0 3340
6 0 2420 2031 4636 3158 0 0 3330
7 0 6655 1029 3853 1001 1052 0 3364
8 0 1055 6672 1042 0 1001 0 3363
9 0 2055 6693 6695 1036 1036 3158 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 2 0 1
1 1 7 4 2
2 1 4 3 2
3 2 12 9 2
4 1 2 2 1
5 1 3 2 1
6 0 0 0 0
7 1 3 3 2
8 0 1 0 1
9 1 5 4 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 437 79688 8021
1 873 5894 0
2 615 1836 233
3 347 1855 1755
4 499 10665 2791
5 491 932 464
6 360 66905 5082
7 309 17980 4355
8 283 478 408
9 675 3240 973
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 2208 4 0 0
1 5873 116 0 0
2 1519 8 0 0
3 2342 0 0 0
4 1682 4 0 0
5 6473 8 0 0
6 4902 88 0 0
7 1886 0 0 0
8 1569 0 0 0
9 1408 4 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 7228
1 0 2 79017
2 0 3 54687
3 0 4 85050
4 0 5 5873
5 0 6 115063
6 0 7 6261
7 0 8 2213
8 0 9 38600
9 0 10 50993
physicalDamageDealtToChampions physicalDamageTaken role \
0 208 12367 SOLO
1 9744 14233 NONE
2 7012 6664 SOLO
3 11305 6457 CARRY
4 1057 5181 SUPPORT
5 8210 10754 NONE
6 24 11618 NONE
7 587 7635 SUPPORT
8 3051 6755 CARRY
9 8627 6086 SOLO
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 12 2 4 132
1 12 11 4 6 179
2 3 4 3 14 349
3 5 7 3 4 335
4 5 3 1 4 507
5 2 6 5 14 399
6 2 4 10 11 324
7 4 4 3 14 217
8 3 4 4 7 190
9 4 14 3 4 398
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 ThePizzaMarine False 100 TOP 21
1 Christofferson False 100 JUNGLE 13
2 Rotome False 100 MIDDLE 13
3 Alatorrian False 100 BOTTOM 27
4 SuzySpiderman False 100 UTILITY 20
5 PhúRiven False 200 TOP 14
6 Theorazane False 200 JUNGLE 14
7 MonkeyDKevin False 200 UTILITY 27
8 Lana Yasha False 200 BOTTOM 4
9 Dân Chuyên Lý False 200 MIDDLE 3
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1276 89756 8230
1 1276 103816 13361
2 1276 56988 7709
3 1276 91195 13060
4 1276 22107 3848
5 1276 121387 9363
6 1276 79650 5191
7 1276 21115 5816
8 1276 42412 3460
9 1276 57443 10424
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 15146 3115 153 513
1 20525 9964 12 475
2 8720 2277 109 20
3 9523 2390 134 405
4 7084 1012 41 93
5 17812 4543 172 46
6 17751 8365 16 502
7 10190 0 21 131
8 8795 875 107 25
9 8621 544 108 57
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 87 1 2840
1 96 1 18904
2 60 1 464
3 51 2 4290
4 16 1 5568
5 83 1 5390
6 98 1 6484
7 130 0 921
8 126 2 3332
9 69 1 3209
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 570 1 2
1 3617 418 1 2
2 464 536 0 2
3 0 723 1 2
4 0 220 0 2
5 688 584 2 3
6 84 1230 0 3
7 873 668 0 3
8 0 471 0 3
9 824 1126 0 3
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 16 1 4 8 True
1 15 2 1 4 True
2 15 2 1 8 True
3 25 2 7 8 True
4 34 2 3 13 True
5 17 2 3 9 False
6 17 0 0 0 False
7 32 4 4 18 False
8 9 1 0 7 False
9 22 5 3 7 False ,
assists baronKills bountyLevel champLevel championName \
0 2 0 0 15 Vayne
1 4 0 0 13 FiddleSticks
2 4 0 0 17 Kayle
3 6 0 0 14 Varus
4 5 0 0 12 Morgana
5 5 0 0 17 Camille
6 13 1 7 17 Udyr
7 7 0 1 16 Diana
8 7 0 11 17 Tristana
9 19 0 0 15 Bard
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2536 5586 2536
1 0 11139 0
2 4138 10035 4138
3 2010 4070 2010
4 2339 2462 2339
5 2429 3345 2429
6 1846 35466 1846
7 7471 19109 7471
8 7028 20057 7028
9 2653 3808 2653
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 8 1 0 False False
1 10 0 2 False False
2 6 1 0 False False
3 4 0 0 False False
4 7 3 0 False False
5 3 1 0 False False
6 0 0 3 True False
7 6 0 0 False True
8 4 2 0 False False
9 1 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False True False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 9394 TOP 0
1 False 8661 JUNGLE 0
2 False 13227 MIDDLE 0
3 False 10405 BOTTOM 0
4 False 8102 UTILITY 0
5 False 11275 TOP 0
6 False 14484 JUNGLE 0
7 False 13361 MIDDLE 0
8 False 15668 BOTTOM 1
9 False 9250 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 6672 3006 3046 6677 1018 1055 3340
1 1 3157 2031 3152 3020 1026 0 3330
2 1 1058 3157 3115 1082 4633 3006 3340
3 1 3814 6691 3004 3158 1036 0 3340
4 1 3117 3157 3853 1026 1028 4005 3364
5 0 1054 3078 3047 3074 6333 0 3340
6 0 3158 6664 3742 3001 3053 0 3340
7 0 3115 6656 3100 3020 0 0 3340
8 0 3031 6672 1053 3046 0 3006 3340
9 0 3853 6617 3158 6616 3504 0 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 0 1 0 1
1 0 1 0 1
2 2 7 3 1
3 1 3 2 2
4 0 2 0 1
5 2 6 3 1
6 1 7 7 1
7 1 7 4 1
8 2 14 11 3
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 641 0 0
1 504 113215 8860
2 527 132362 21516
3 811 5880 3265
4 1312 33422 12055
5 1367 844 844
6 0 137893 8178
7 818 148552 19555
8 459 31301 3620
9 1746 25093 10178
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 5657 4 1 0
1 10734 130 1 0
2 14325 24 1 0
3 6265 6 1 0
4 7811 0 1 0
5 8283 0 0 0
6 7514 181 0 0
7 15673 25 0 0
8 9956 26 0 0
9 6442 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 70753
1 0 2 6973
2 0 3 44007
3 0 4 118346
4 0 5 3808
5 0 6 85742
6 0 7 66009
7 0 8 29240
8 0 9 147020
9 0 10 3844
physicalDamageDealtToChampions physicalDamageTaken role \
0 7155 15358 SOLO
1 37 21361 NONE
2 5706 15136 SOLO
3 12469 6055 CARRY
4 959 11887 SUPPORT
5 10348 11016 SOLO
6 5847 19420 NONE
7 3472 10948 SOLO
8 24007 11146 CARRY
9 2047 6378 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 12 4 4 83
1 12 11 5 4 136
2 4 4 3 12 349
3 4 4 4 7 163
4 6 3 4 4 129
5 3 4 3 12 58
6 4 4 21 11 437
7 4 4 6 21 296
8 3 4 6 3 65
9 3 4 6 3 155
summonerName teamEarlySurrendered teamId teamPosition \
0 Dublaiar False 100 TOP
1 SlothoftheAbyss False 100 JUNGLE
2 Rotome False 100 MIDDLE
3 SaladJulius False 100 BOTTOM
4 QuilledSword False 100 UTILITY
5 NoctWolf False 200 TOP
6 Kaichou Coco False 200 JUNGLE
7 TheGuiltySky False 200 MIDDLE
8 ArcadeBR False 200 BOTTOM
9 Or4ngeTicTac False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 6 2120 101547 11049
1 35 2120 129542 9226
2 11 2120 189762 28657
3 43 2120 124226 15734
4 75 2120 37230 13015
5 15 2120 105450 11331
6 36 2120 225238 15549
7 15 2120 178232 23172
8 9 2120 194464 30719
9 31 2120 28937 12226
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 22423 4553 160 18
1 33285 12296 17 656
2 30605 10718 214 290
3 12398 3704 150 350
4 20780 4175 28 130
5 21515 2441 141 208
6 29108 15614 65 263
7 27393 3343 151 106
8 21447 6769 201 100
9 12975 16835 17 203
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 268 1 30794
1 349 1 9353
2 209 5 13392
3 104 2 0
4 227 1 0
5 93 1 18863
6 0 1 21336
7 230 1 440
8 97 1 16142
9 44 5 0
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 3894 1407 1 9
1 329 1189 0 9
2 1434 1143 0 9
3 0 78 1 9
4 0 1080 1 9
5 138 2215 3 3
6 1524 2173 1 3
7 144 770 3 3
8 3091 344 1 3
9 0 154 1 3
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 26 1 0 11 False
1 14 0 1 1 False
2 28 1 0 9 False
3 17 0 0 11 False
4 69 3 7 30 False
5 23 1 0 9 True
6 26 0 0 9 True
7 19 0 0 12 True
8 40 2 6 14 True
9 38 0 3 19 True ,
assists baronKills bountyLevel champLevel championName \
0 14 0 1 18 MonkeyKing
1 5 1 2 18 Graves
2 18 0 3 18 MissFortune
3 14 1 0 18 Jinx
4 19 0 0 16 Nautilus
5 5 0 0 18 Kayle
6 13 0 0 16 Poppy
7 9 0 0 17 Lux
8 11 0 0 16 Tristana
9 20 0 0 16 Thresh
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 5397 12981 5397
1 5973 54800 5973
2 4771 19794 4771
3 9482 22887 9482
4 1288 5255 1288
5 2990 5317 2990
6 0 4618 0
7 3243 3672 3243
8 1521 5468 1521
9 356 3547 356
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 8 1 0 False False
1 5 3 3 False False
2 7 1 0 False False
3 5 5 1 True False
4 6 1 0 False True
5 10 1 0 False False
6 11 0 1 False False
7 11 5 0 False False
8 8 1 0 False False
9 11 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 True False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 16424 TOP 0
1 False 17394 JUNGLE 1
2 False 15667 MIDDLE 2
3 False 17427 BOTTOM 1
4 False 9683 UTILITY 0
5 False 15960 TOP 0
6 False 11301 JUNGLE 0
7 False 15248 MIDDLE 0
8 False 13193 BOTTOM 0
9 False 7990 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3074 6694 3111 3053 3078 3134 3340
1 0 6671 1038 3006 3033 3036 6676 3364
2 0 1042 6691 3006 6676 3072 3033 3340
3 0 3094 3006 6672 3085 3046 3031 3340
4 0 3857 3190 3047 3001 3075 0 3364
5 4 3089 3157 3006 3115 4633 1082 3340
6 4 3068 2031 3047 3075 3742 3067 3340
7 4 6655 3157 3165 0 4628 3020 3363
8 4 3036 6672 3046 3006 1037 1018 3340
9 4 3190 3117 3050 3857 3076 1028 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 4 15 6 2
1 3 12 5 2
2 2 10 5 3
3 2 12 6 2
4 1 2 2 1
5 1 7 2 2
6 2 7 3 1
7 3 10 2 2
8 2 7 2 1
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 583 18402 4504
1 902 11450 2237
2 441 12152 3053
3 847 4179 2205
4 874 15269 5869
5 465 172732 15983
6 289 26429 3737
7 696 156838 27973
8 656 29780 1865
9 577 18511 4326
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 15639 24 0 0
1 9679 215 0 0
2 12273 9 0 0
3 9138 40 0 0
4 10204 0 0 0
5 3550 25 1 0
6 5327 101 1 1
7 3281 4 1 0
8 3233 0 1 0
9 3686 0 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 119580
1 0 2 264747
2 0 3 143834
3 0 4 173084
4 0 5 12894
5 0 6 48887
6 0 7 72722
7 0 8 11764
8 0 9 137575
9 0 10 6281
physicalDamageDealtToChampions physicalDamageTaken role \
0 26735 17171 SOLO
1 16738 15406 NONE
2 26560 10864 SOLO
3 21277 9198 CARRY
4 2172 10451 SUPPORT
5 2659 24298 SOLO
6 8520 25690 NONE
7 972 21409 SOLO
8 17048 19532 CARRY
9 808 21962 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 5 4 5 12 154
1 21 11 5 4 201
2 8 21 6 4 46
3 6 4 7 7 273
4 7 14 5 4 89
5 6 4 3 12 349
6 14 11 5 4 136
7 5 4 5 14 101
8 4 7 3 4 132
9 1 14 2 4 83
summonerName teamEarlySurrendered teamId teamPosition \
0 youngrichh False 100 TOP
1 Thewintersnovv False 100 JUNGLE
2 queenie0218 False 100 MIDDLE
3 Zeaph False 100 BOTTOM
4 wii gor False 100 UTILITY
5 Rotome False 200 TOP
6 SlothoftheAbyss False 200 JUNGLE
7 DaddyKench6900 False 200 MIDDLE
8 KOZVIK False 200 BOTTOM
9 Dublaiar False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 26 2140 140322 31646
1 24 2140 331181 20798
2 12 2140 156517 30079
3 46 2140 205146 26826
4 60 2140 37271 8905
5 8 2140 233969 19740
6 36 2140 108952 13602
7 50 2140 174518 30662
8 3 2140 192919 20484
9 28 2140 34995 5225
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 35014 7968 147 105
1 25801 9530 69 622
2 24119 6055 151 216
3 19408 6416 208 251
4 21502 1360 29 319
5 29134 8872 280 335
6 33743 5424 9 538
7 25154 0 214 469
8 23576 7226 221 17
9 27265 573 40 84
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 307 1 2339
1 218 1 54984
2 232 1 531
3 189 4 27882
4 235 1 9108
5 323 5 12349
6 308 1 9800
7 396 0 5915
8 289 3 25563
9 300 5 10202
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 406 2204 2 2
1 1822 715 3 2
2 465 981 1 2
3 3343 1071 4 2
4 864 846 1 2
5 1097 1285 1 11
6 1344 2725 0 11
7 1716 463 1 11
8 1570 810 0 11
9 90 1616 0 11
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 23 1 3 11 True
1 17 3 3 4 True
2 38 1 3 12 True
3 50 5 7 17 True
4 51 2 1 17 True
5 16 2 2 7 False
6 15 0 1 8 False
7 32 5 3 16 False
8 9 1 0 8 False
9 13 1 1 8 False ,
assists baronKills bountyLevel champLevel championName \
0 0 0 0 3 Mordekaiser
1 0 0 0 3 Poppy
2 0 0 0 4 Yone
3 0 0 0 3 Tristana
4 0 0 0 2 Senna
5 0 0 0 3 Singed
6 0 0 0 3 Nidalee
7 0 0 0 4 Ahri
8 0 0 0 3 Ezreal
9 0 0 0 1 Lux
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 0 0 0
1 0 0 0
2 0 0 0
3 547 547 547
4 250 250 250
5 0 0 0
6 0 0 0
7 0 0 0
8 0 0 0
9 0 0 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 0 0 0 False False
1 0 0 0 False False
2 0 0 0 False False
3 0 0 0 False False
4 0 0 0 False False
5 0 0 0 False False
6 0 0 0 False False
7 0 0 0 False False
8 0 0 0 False False
9 0 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False True
1 False False True
2 False False True
3 False False True
4 False False True
5 False False True
6 False False True
7 False False True
8 False False True
9 False False True
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 1077 TOP 0
1 False 1096 JUNGLE 0
2 False 1010 MIDDLE 0
3 False 1122 BOTTOM 0
4 False 937 UTILITY 0
5 False 979 TOP 0
6 False 1101 JUNGLE 0
7 False 1049 MIDDLE 0
8 False 881 BOTTOM 0
9 False 737 AFK 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1054 0 0 0 0 0 3340
1 0 1039 2031 0 0 0 0 3340
2 0 1054 2003 0 0 0 0 3340
3 0 1055 0 0 0 0 0 3340
4 0 3862 0 0 2003 0 0 3340
5 0 1082 2031 0 0 0 0 3340
6 0 1035 2031 0 0 0 0 3340
7 0 1056 2003 0 0 0 0 3340
8 0 3070 2003 0 0 0 0 3340
9 0 3850 2003 0 0 0 0 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 0 0 0 0
1 0 0 0 0
2 0 0 0 0
3 0 0 0 0
4 0 0 0 0
5 0 0 0 0
6 0 0 0 0
7 0 0 0 0
8 0 0 0 0
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 0 1855 510
1 0 1644 0
2 0 363 34
3 0 685 0
4 0 0 0
5 0 2872 574
6 0 3839 0
7 0 1082 230
8 0 278 196
9 0 0 0
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 574 0 0 0
1 226 16 0 0
2 230 0 0 0
3 196 0 0 0
4 0 0 0 0
5 510 0 0 0
6 598 16 0 0
7 34 0 0 0
8 0 0 0 0
9 0 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 2346
1 0 2 7622
2 0 3 3439
3 0 4 5133
4 0 5 755
5 0 6 1223
6 0 7 2351
7 0 8 2308
8 0 9 3358
9 0 10 0
physicalDamageDealtToChampions physicalDamageTaken role summoner1Casts \
0 285 331 DUO 0
1 0 1422 DUO 1
2 219 471 DUO 0
3 109 815 DUO 0
4 0 0 DUO 0
5 190 501 DUO 1
6 0 1336 DUO 0
7 297 354 DUO 1
8 597 308 DUO 0
9 0 0 DUO 0
summoner1Id summoner2Casts summoner2Id summonerLevel summonerName \
0 4 0 12 349 Rotome
1 11 0 4 136 SlothoftheAbyss
2 4 0 14 98 WaterIsIceSoup
3 4 0 1 31 GarciaRL
4 3 0 4 83 Dublaiar
5 6 0 12 299 ALunarGamer
6 4 2 11 54 upwnbzet
7 4 0 14 122 Frostier
8 7 0 4 264 SKT ScuttleCrab
9 4 0 14 37 PAHOTA
teamEarlySurrendered teamId teamPosition timeCCingOthers timePlayed \
0 False 100 TOP 0 215
1 False 100 JUNGLE 0 215
2 False 100 MIDDLE 0 215
3 False 100 BOTTOM 0 215
4 False 100 UTILITY 0 215
5 True 200 TOP 2 215
6 True 200 JUNGLE 0 215
7 True 200 MIDDLE 1 215
8 True 200 BOTTOM 0 215
9 True 200 AFK 0 215
totalDamageDealt totalDamageDealtToChampions totalDamageTaken totalHeal \
0 4202 796 906 42
1 10174 0 1649 775
2 3866 317 750 91
3 5818 109 1011 72
4 755 0 0 178
5 4095 764 1012 124
6 7090 0 1934 991
7 5355 577 452 43
8 3636 793 308 62
9 0 0 0 0
totalMinionsKilled totalTimeCCDealt totalTimeSpentDead totalUnitsHealed \
0 17 0 0 1
1 0 135 0 1
2 16 9 0 1
3 16 0 0 1
4 0 0 0 1
5 12 19 0 1
6 0 0 0 1
7 16 2 0 1
8 7 0 0 1
9 0 0 0 0
trueDamageDealt trueDamageDealtToChampions trueDamageTaken turretKills \
0 0 0 0 0
1 908 0 0 0
2 63 63 48 0
3 0 0 0 0
4 0 0 0 0
5 0 0 0 0
6 900 0 0 0
7 1964 48 63 0
8 0 0 0 0
9 0 0 0 0
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 0 0 0 0
1 0 0 0 0
2 0 1 0 0
3 0 1 0 0
4 0 1 0 0
5 0 0 0 0
6 0 0 0 0
7 0 0 0 0
8 0 0 0 0
9 0 0 0 0
wardsPlaced win
0 0 True
1 0 True
2 1 True
3 1 True
4 1 True
5 0 False
6 0 False
7 0 False
8 0 False
9 0 False ,
assists baronKills bountyLevel champLevel championName \
0 6 1 2 18 Tryndamere
1 7 0 4 17 Poppy
2 9 0 5 18 Veigar
3 7 0 0 14 Ezreal
4 10 0 3 15 Pantheon
5 8 0 0 17 Shen
6 2 0 0 15 Udyr
7 4 0 1 16 Ekko
8 5 0 0 14 Aphelios
9 11 0 0 13 Thresh
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 4291 15054 4291
1 0 19457 0
2 4976 21861 4976
3 2550 9476 2550
4 262 1180 262
5 1760 3706 1760
6 0 20987 0
7 367 3096 367
8 0 4929 0
9 0 729 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 6 0 0 False False
1 4 0 2 False False
2 3 1 1 False False
3 6 0 0 False False
4 7 1 0 False False
5 9 0 0 True False
6 9 0 0 False True
7 4 0 1 False False
8 6 1 1 False False
9 5 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 14394 TOP 0
1 True 12012 JUNGLE 0
2 True 14683 MIDDLE 0
3 True 11403 BOTTOM 0
4 True 9696 UTILITY 0
5 True 11653 TOP 0
6 True 12200 JUNGLE 0
7 True 9686 MIDDLE 0
8 True 11022 BOTTOM 0
9 True 7887 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 6672 6675 1055 3046 0 3006 3340
1 0 3742 2031 3068 3047 1057 1028 3340
2 0 1082 6656 3135 3020 4629 3089 3363
3 0 3508 3158 3042 6691 0 1055 3340
4 0 3857 6692 3009 3134 3133 2055 3364
5 0 3047 3075 3143 3068 3077 0 3340
6 0 3742 3158 4401 3155 1036 6664 3340
7 0 3041 3100 3020 1052 3152 0 3340
8 0 1055 6673 3006 3046 1038 1037 3363
9 0 1001 3857 3190 3110 1057 1011 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 3 10 3 2
1 2 6 4 2
2 3 9 5 1
3 0 3 0 1
4 2 5 3 2
5 2 5 2 1
6 2 10 4 1
7 1 4 2 2
8 1 4 2 2
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 378 0 0
1 492 34580 2184
2 583 186789 36300
3 567 6752 2528
4 559 841 645
5 506 62724 15958
6 500 89447 9466
7 614 105823 10382
8 678 1871 480
9 1019 17048 6872
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 15808 30 0 0
1 8094 174 0 0
2 8213 20 0 0
3 6670 0 0 0
4 7173 4 0 0
5 10047 8 0 0
6 12464 132 0 0
7 8541 9 0 0
8 5438 12 0 0
9 7777 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 168438
1 0 2 130824
2 0 3 18502
3 0 4 88106
4 0 5 52940
5 0 6 58805
6 0 7 58387
7 0 8 20213
8 0 9 86332
9 0 10 7618
physicalDamageDealtToChampions physicalDamageTaken role \
0 22144 19601 SOLO
1 7921 15212 NONE
2 1344 9094 SOLO
3 6269 6630 CARRY
4 15743 11543 SUPPORT
5 10240 21584 SOLO
6 9787 24600 NONE
7 1170 13043 SOLO
8 9722 9711 CARRY
9 1146 11098 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 6 4 4 140
1 15 11 5 4 136
2 4 4 4 12 349
3 3 7 2 4 83
4 4 4 6 14 93
5 4 4 2 12 232
6 18 11 5 4 150
7 3 14 4 4 40
8 3 4 3 7 77
9 2 3 1 4 184
summonerName teamEarlySurrendered teamId teamPosition \
0 Arsneault False 100 TOP
1 SlothoftheAbyss False 100 JUNGLE
2 Rotome False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 KoaIaBacon False 100 UTILITY
5 CCertified Halal False 200 TOP
6 Doritosbacon False 200 JUNGLE
7 SuperAsianGamer False 200 MIDDLE
8 NaClowe False 200 BOTTOM
9 Zorukah False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 24 2063 189888 25371
1 46 2063 180996 11668
2 59 2063 207290 37734
3 0 2063 104334 8798
4 28 2063 62338 17266
5 42 2063 127375 27244
6 43 2063 162197 20929
7 5 2063 126588 12104
8 12 2063 95773 10203
9 37 2063 30203 8091
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 36814 15382 167 160
1 23868 8890 16 1029
2 17719 4822 223 209
3 13743 2032 184 0
4 19243 1856 57 34
5 34083 2219 178 418
6 38732 9549 32 290
7 21954 5681 157 237
8 15533 3291 192 89
9 19762 1380 40 693
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 217 1 21450
1 101 1 15592
2 111 1 1997
3 208 2 9475
4 246 4 8556
5 335 1 5845
6 367 1 14364
7 146 1 552
8 173 3 7570
9 191 5 5535
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 3226 1404 2 2
1 1562 561 0 2
2 90 410 1 2
3 0 442 2 2
4 878 525 0 2
5 1045 2451 1 5
6 1676 1667 0 5
7 552 369 0 5
8 0 383 0 5
9 72 885 0 5
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 20 0 1 11 True
1 23 0 0 11 True
2 30 2 1 9 True
3 19 0 1 11 True
4 34 2 2 20 True
5 18 0 1 10 False
6 22 0 1 9 False
7 9 0 0 7 False
8 23 1 2 8 False
9 42 0 2 19 False ,
assists baronKills bountyLevel champLevel championName \
0 22 0 0 18 Bard
1 14 1 0 18 Viego
2 16 0 0 18 Pantheon
3 11 0 0 17 Ezreal
4 27 0 0 18 Yuumi
5 25 0 2 18 Volibear
6 9 2 2 18 Kayn
7 12 0 1 18 Zed
8 13 0 3 18 Annie
9 26 0 2 18 Senna
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 6442 12509 6442
1 3351 37958 3351
2 4066 10889 4066
3 2758 24017 2758
4 95 770 95
5 3323 22062 3323
6 1247 26758 1247
7 3634 8391 3634
8 4485 16237 4485
9 2555 4963 2555
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 11 0 0 False False
1 13 0 3 True False
2 11 2 0 False True
3 9 0 1 False False
4 6 2 0 False False
5 12 0 0 False False
6 9 0 2 False False
7 11 0 0 False False
8 11 0 0 False False
9 10 3 1 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 True False False
6 False False False
7 False False False
8 False True False
9 True False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 14483 TOP 1
1 False 18602 JUNGLE 0
2 False 22327 MIDDLE 1
3 False 14725 BOTTOM 0
4 False 12014 UTILITY 0
5 False 19151 MIDDLE 0
6 False 15474 JUNGLE 0
7 False 17078 TOP 1
8 False 23386 BOTTOM 0
9 False 14547 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 3078 6035 1036 3053 3111 3071 3340
1 1 6691 3006 6035 3142 6609 3091 3340
2 1 3047 3074 6692 3053 3071 4401 3363
3 1 3508 3158 3042 6691 6694 3123 3340
4 1 3853 3222 6617 3504 6616 3916 3364
5 2 3075 6664 3193 3047 3053 3742 3340
6 2 6630 3071 3047 3053 3133 0 3364
7 2 6692 3071 3158 6676 6609 6695 3340
8 2 4629 3157 6655 3020 3165 3089 3340
9 2 3864 3033 3009 6672 3124 3086 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 3 8 2 1
1 2 12 6 1
2 6 26 6 3
3 1 4 2 1
4 0 3 0 1
5 2 6 2 1
6 2 6 2 1
7 3 10 3 2
8 7 24 7 4
9 1 3 2 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 591 67069 18275
1 789 25901 3552
2 488 10622 1380
3 660 21597 9009
4 1775 22676 16338
5 340 165621 14407
6 583 12135 0
7 1002 9431 1094
8 316 261410 66340
9 966 6635 1269
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 18488 2 1 0
1 18161 167 1 1
2 26249 40 1 0
3 19511 24 1 0
4 5304 0 1 0
5 12557 24 0 0
6 13697 178 0 1
7 7880 0 0 0
8 8174 20 0 0
9 10285 4 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 1 1 68776
1 0 2 203798
2 0 3 290598
3 0 4 179749
4 0 5 861
5 0 6 81634
6 0 7 202206
7 0 8 137733
8 0 9 10408
9 0 10 61773
physicalDamageDealtToChampions physicalDamageTaken role \
0 17742 29301 NONE
1 26433 36131 NONE
2 84871 41363 SOLO
3 12743 9724 CARRY
4 49 7718 SUPPORT
5 20950 55192 NONE
6 18683 48244 NONE
7 27424 30682 SOLO
8 1282 28067 CARRY
9 19960 28711 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 11 3 4 4 132
1 22 11 7 4 345
2 6 4 9 14 349
3 4 7 1 4 82
4 8 3 6 14 177
5 4 12 6 4 606
6 19 11 7 4 122
7 9 14 4 4 228
8 8 4 6 14 349
9 7 7 3 4 94
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 ThePizzaMarine False 100 TOP 94
1 Hero Øf Time False 100 JUNGLE 40
2 Rotome False 100 MIDDLE 56
3 Dublaiar False 100 BOTTOM 1
4 Thick2BThighs False 100 UTILITY 48
5 Yunona otoko False 200 MIDDLE 45
6 Jaesu False 200 JUNGLE 18
7 Doshin False 200 TOP 6
8 IDR Trolls False 200 BOTTOM 49
9 Tonylyn False 200 UTILITY 57
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 2921 140161 36018
1 2921 243016 32246
2 2921 304270 88291
3 2921 210415 21929
4 2921 24546 17396
5 2921 264741 38562
6 2921 235530 20035
7 2921 148980 30335
8 2921 276513 70232
9 2921 76408 23156
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 50105 7391 141 751
1 56917 18732 53 277
2 71368 14592 221 146
3 30864 2566 191 21
4 13608 35109 8 78
5 69875 20842 205 466
6 62754 27014 33 317
7 39014 7329 172 155
8 37457 5212 223 322
9 39876 21189 47 559
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 483 3 4315
1 529 3 13315
2 444 1 3049
3 351 2 9068
4 251 5 1008
5 390 1 17485
6 361 1 21188
7 489 1 1815
8 444 1 4695
9 432 5 7999
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 2315 2 7
1 2260 2624 2 7
2 2039 3755 2 7
3 176 1628 1 7
4 1008 584 0 7
5 3204 2125 0 7
6 1351 812 0 7
7 1815 451 1 7
8 2609 1215 3 7
9 1926 879 1 7
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 23 0 0 13 False
1 26 3 2 10 False
2 35 2 0 16 False
3 26 0 0 15 False
4 63 5 2 17 False
5 28 0 0 16 True
6 14 0 4 1 True
7 22 0 0 13 True
8 27 0 2 13 True
9 59 5 4 26 True ,
assists baronKills bountyLevel champLevel championName \
0 7 0 3 13 Viego
1 7 0 4 14 Malphite
2 7 0 0 13 Neeko
3 4 0 0 11 Samira
4 4 0 4 12 Swain
5 2 0 0 12 Teemo
6 10 0 0 11 Lillia
7 5 0 0 12 Ahri
8 2 0 0 10 Sivir
9 8 0 0 10 Sona
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 0 27475 0
1 2087 2337 2087
2 3752 7019 3752
3 684 5830 684
4 464 3176 464
5 2130 5711 2130
6 0 8346 0
7 1573 4530 1573
8 1569 1569 1569
9 828 1472 828
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 4 1 3 False True
1 3 0 0 True False
2 5 3 0 False False
3 3 0 0 False False
4 3 1 0 False False
5 9 0 0 False False
6 9 2 0 False False
7 6 3 0 False False
8 7 0 0 False False
9 5 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False True False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 10752 JUNGLE 0
1 True 11235 TOP 0
2 True 8195 MIDDLE 0
3 True 6644 BOTTOM 0
4 True 9101 UTILITY 0
5 True 6630 TOP 0
6 True 6692 JUNGLE 0
7 True 9180 MIDDLE 0
8 True 7745 BOTTOM 0
9 True 5195 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3153 6673 3111 3057 0 0 3340
1 0 1054 3047 3068 4401 3075 0 3340
2 0 1056 6655 0 3020 3916 1026 3340
3 0 6673 3047 3134 0 0 1055 3340
4 0 3853 3157 6653 0 3020 1052 3364
5 0 1056 6653 3020 1043 1052 0 3340
6 0 6653 2031 3191 0 3020 0 3364
7 0 1056 6656 3020 4628 1052 0 3340
8 0 6691 6676 0 3006 0 0 3340
9 0 3851 3070 3802 3020 0 0 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 3 10 3 1
1 4 12 4 2
2 1 3 2 1
3 0 1 0 1
4 3 10 4 2
5 1 3 2 2
6 0 3 0 1
7 2 9 4 2
8 0 3 0 1
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 433 11913 2819
1 569 59839 17771
2 779 67858 9276
3 610 5678 462
4 460 24790 12832
5 417 28931 10286
6 558 36232 9026
7 556 44846 12769
8 345 186 51
9 544 5949 2113
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 8554 99 0 0
1 10304 12 0 0
2 7340 4 0 0
3 2821 8 0 0
4 5863 4 0 0
5 14662 0 0 0
6 10214 57 0 0
7 6902 8 0 0
8 8058 1 0 0
9 5087 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 90940
1 0 2 30786
2 0 3 13492
3 0 4 51136
4 0 5 3207
5 0 6 8860
6 0 7 9239
7 0 8 12579
8 0 9 97603
9 0 10 1773
physicalDamageDealtToChampions physicalDamageTaken role \
0 13942 14698 NONE
1 3531 7870 SOLO
2 843 2870 SOLO
3 2207 7929 CARRY
4 1468 9032 SUPPORT
5 1413 2114 SOLO
6 730 10630 NONE
7 1511 9286 SOLO
8 18916 6118 CARRY
9 198 3778 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 12 11 348
1 3 12 2 4 131
2 3 7 3 4 160
3 3 7 0 4 82
4 4 14 3 4 177
5 3 12 3 4 65
6 10 11 4 4 34
7 5 14 3 4 97
8 5 7 4 4 216
9 3 4 0 3 25
summonerName teamEarlySurrendered teamId teamPosition \
0 Rotome False 100 JUNGLE
1 ThePizzaMarine False 100 TOP
2 Warpanda118 False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 Thick2BThighs False 100 UTILITY
5 Leggomÿeggo False 200 TOP
6 Give me Luxanna False 200 JUNGLE
7 DarkLonelySoul False 200 MIDDLE
8 Lillisknee False 200 BOTTOM
9 Lillisbutt False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 17 1445 117494 17041
1 36 1445 92586 21512
2 24 1445 82919 10120
3 0 1445 66376 2670
4 41 1445 28902 15205
5 46 1445 39488 11700
6 18 1445 63357 12377
7 41 1445 87917 21171
8 0 1445 99389 18967
9 9 1445 7722 2312
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 25352 10856 28 204
1 20433 3424 135 456
2 13177 1333 113 195
3 11706 3028 98 7
4 16126 5381 13 155
5 17174 1175 62 304
6 21079 3978 14 180
7 16188 1639 111 113
8 14643 2871 126 0
9 9163 3982 4 12
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 90 4 14639
1 99 1 1960
2 175 2 1567
3 65 2 9562
4 70 1 904
5 209 1 1695
6 217 1 17885
7 168 1 30491
8 152 2 1600
9 122 5 0
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 280 2099 0 2
1 210 2258 1 2
2 0 2967 1 2
3 0 955 0 2
4 904 1230 2 2
5 0 397 0 4
6 2620 234 0 4
7 6890 0 1 4
8 0 466 0 4
9 0 296 1 4
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 18 2 1 7 True
1 8 0 0 6 True
2 18 3 2 11 True
3 10 0 0 7 True
4 20 1 3 9 True
5 8 0 0 5 False
6 20 2 4 5 False
7 22 3 1 10 False
8 9 0 0 6 False
9 6 0 1 3 False ,
assists baronKills bountyLevel champLevel championName \
0 4 0 8 15 Vladimir
1 7 0 7 13 Graves
2 4 0 0 13 Katarina
3 5 0 0 11 Lucian
4 8 0 1 11 Senna
5 0 0 0 13 DrMundo
6 4 0 0 13 Kayn
7 3 0 0 13 Orianna
8 3 0 1 12 Twitch
9 5 0 0 11 Lulu
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2148 4432 2148
1 3074 26021 3074
2 595 595 595
3 3412 5999 3412
4 1173 1424 1173
5 2684 5844 2684
6 0 3373 0
7 99 167 99
8 2116 2116 2116
9 526 526 526
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 1 0 0 True False
1 0 2 3 False True
2 5 2 0 False False
3 3 1 0 False False
4 3 3 0 False False
5 5 0 0 False False
6 6 4 0 False False
7 4 1 0 False False
8 2 2 0 False False
9 6 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 12163 TOP 0
1 True 10425 JUNGLE 0
2 True 8123 MIDDLE 0
3 True 6955 BOTTOM 0
4 True 7221 UTILITY 0
5 True 7415 TOP 0
6 True 9201 JUNGLE 0
7 True 7005 MIDDLE 0
8 True 8442 BOTTOM 0
9 True 5048 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3041 2031 4633 4629 3020 1058 3340
1 0 6692 2031 3047 3071 0 3035 3340
2 0 4633 1029 2420 3115 0 0 3364
3 0 1055 3006 6671 3057 0 0 3340
4 0 3864 6662 3009 3124 0 0 3364
5 0 1054 3009 6664 3076 3067 0 3340
6 0 3067 2031 6693 3047 3036 0 3364
7 0 1056 1082 3020 6655 3108 2055 3340
8 0 3085 6671 1036 3006 1036 0 3363
9 0 3853 3158 6617 1052 1052 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 8 8 3
1 1 7 7 2
2 1 4 2 1
3 0 2 0 1
4 0 2 0 1
5 0 1 0 1
6 2 6 3 1
7 0 0 0 0
8 2 5 2 1
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 234 130732 18993
1 0 7407 176
2 677 68982 7134
3 883 4597 1065
4 517 1626 412
5 546 56201 6648
6 275 8993 2107
7 591 62178 9500
8 895 1837 1258
9 477 3523 1734
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 7890 16 0 0
1 2773 128 0 0
2 8330 0 0 0
3 1636 0 0 0
4 2016 0 0 0
5 8950 8 0 0
6 7247 121 0 0
7 6491 0 0 0
8 3718 4 0 0
9 3807 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 14519
1 0 2 120379
2 0 3 12018
3 0 4 47334
4 0 5 14591
5 0 6 35034
6 0 7 111480
7 0 8 12870
8 0 9 80760
9 0 10 1279
physicalDamageDealtToChampions physicalDamageTaken role \
0 1497 11299 SOLO
1 10068 11807 NONE
2 1327 8931 SOLO
3 6570 10179 CARRY
4 5036 10499 SUPPORT
5 3405 8557 SOLO
6 13091 17228 NONE
7 958 4025 SOLO
8 13023 8802 CARRY
9 691 7678 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 5 6 129
1 11 11 1 4 297
2 3 4 4 14 42
3 5 7 3 4 55
4 3 7 2 4 157
5 2 12 2 4 131
6 15 11 4 4 66
7 3 4 2 12 348
8 4 3 4 4 244
9 3 7 2 4 177
summonerName teamEarlySurrendered teamId teamPosition \
0 MortibusKindred False 100 TOP
1 Garare False 100 JUNGLE
2 yalimpnoodle False 100 MIDDLE
3 kikuchi125 False 100 BOTTOM
4 KimmieKay False 100 UTILITY
5 ThePizzaMarine False 200 TOP
6 1 trªsh jungle False 200 JUNGLE
7 Rotome False 200 MIDDLE
8 Dawsyn False 200 BOTTOM
9 Thick2BThighs False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 3 1468 151128 21800
1 11 1468 141954 11049
2 0 1468 90586 9283
3 0 1468 61821 7636
4 20 1468 20092 5448
5 6 1468 97739 10053
6 7 1468 130140 15648
7 11 1468 75049 10458
8 10 1468 88117 16471
9 13 1468 4803 2426
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 19390 26255 198 101
1 14816 9188 36 474
2 17465 3247 143 0
3 12648 3698 98 0
4 13682 6182 15 117
5 18488 6096 162 84
6 25382 11148 20 184
7 11136 670 161 204
8 12624 2925 162 238
9 11811 1567 8 60
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 12 1 5876
1 0 1 14167
2 191 1 9585
3 93 3 9890
4 72 5 3875
5 127 1 6503
6 156 1 9667
7 131 1 0
8 63 1 5519
9 162 4 0
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1308 200 1 1
1 804 236 1 1
2 821 203 0 1
3 0 833 2 1
4 0 1166 1 1
5 0 980 1 5
6 449 906 0 5
7 0 618 0 5
8 2190 103 0 5
9 0 325 0 5
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 6 0 1 5 True
1 26 2 2 10 True
2 13 3 1 6 True
3 23 1 3 9 True
4 34 3 4 13 True
5 10 0 0 7 False
6 20 4 1 5 False
7 9 2 0 5 False
8 9 2 0 8 False
9 25 1 3 12 False ,
assists baronKills bountyLevel champLevel championName \
0 4 0 0 15 Jax
1 2 0 0 15 MonkeyKing
2 7 0 0 15 Vladimir
3 6 0 0 13 Tristana
4 6 0 0 13 Lux
5 7 0 2 16 Mordekaiser
6 4 1 6 18 Nasus
7 7 0 0 16 Katarina
8 2 0 2 15 Ezreal
9 11 0 0 13 Alistar
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3202 3818 3202
1 0 5376 0
2 477 477 477
3 2949 3909 2949
4 1217 3066 1217
5 2460 41938 2460
6 16916 24580 16916
7 866 2094 866
8 3298 13777 3298
9 2712 4504 2712
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 14 2 0 False False
1 3 1 0 False False
2 7 0 0 False False
3 2 1 0 False False
4 3 0 1 False False
5 2 4 3 True False
6 2 1 1 False True
7 4 4 0 False False
8 4 0 0 False False
9 3 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False True False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 11434 TOP 0
1 False 11975 JUNGLE 0
2 False 9093 MIDDLE 0
3 False 9607 BOTTOM 0
4 False 8286 UTILITY 0
5 False 13934 JUNGLE 0
6 False 17007 TOP 1
7 False 9752 MIDDLE 0
8 False 10697 BOTTOM 1
9 False 7981 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 2 3153 6632 3111 3091 0 0 3340
1 2 3748 6632 3111 3071 0 0 3340
2 2 1082 3152 3157 3020 3108 1052 3340
3 2 1055 6672 3006 3046 3123 3086 3340
4 2 3853 3135 3020 6655 0 0 3364
5 0 4633 3157 4637 3020 3067 0 3364
6 0 1053 6632 3047 3042 3074 6694 3340
7 0 6632 3153 1029 0 3047 0 3340
8 0 3508 3158 3042 1036 0 1055 3340
9 0 3860 3068 3076 3801 3047 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 4 4 3
1 2 6 3 1
2 0 0 0 0
3 0 1 0 1
4 2 4 2 1
5 2 10 7 2
6 2 14 7 1
7 1 2 2 1
8 1 3 2 2
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 445 28254 5924
1 862 40492 1893
2 686 91862 12837
3 1186 24817 647
4 1191 39855 16668
5 1538 178878 19168
6 1068 18884 4621
7 864 61334 7251
8 524 4674 2161
9 1185 21257 3927
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 9289 12 1 0
1 10165 130 1 0
2 9381 4 1 0
3 5319 0 1 0
4 5358 4 1 1
5 10102 171 0 0
6 7242 38 0 0
7 9081 2 0 0
8 6073 8 0 0
9 7575 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 99884
1 0 2 108033
2 0 3 18934
3 0 4 93043
4 0 5 4848
5 0 6 28234
6 0 7 250347
7 0 8 31913
8 0 9 109289
9 0 10 6855
physicalDamageDealtToChampions physicalDamageTaken role \
0 12368 22909 SOLO
1 10068 17691 NONE
2 1141 12513 SOLO
3 9828 5356 CARRY
4 1141 3268 SUPPORT
5 1841 19413 NONE
6 27065 17047 SOLO
7 4739 9498 SOLO
8 3682 8140 CARRY
9 659 7987 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 3 12 25
1 4 4 16 11 20
2 3 4 3 14 31
3 3 7 2 4 20
4 5 4 4 14 29
5 5 4 18 11 348
6 4 4 4 12 16
7 5 14 3 4 23
8 4 7 2 4 81
9 3 4 3 14 23
summonerName teamEarlySurrendered teamId teamPosition \
0 XxLelouch011xX False 100 TOP
1 VelkozSideChick False 100 JUNGLE
2 TheBest IV False 100 MIDDLE
3 TheJunior0402 False 100 BOTTOM
4 nishimaizhima False 100 UTILITY
5 Rotome False 200 JUNGLE
6 RyeBreadPitt False 200 TOP
7 Maíd False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 PinkNeufchâtel False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 23 1977 135713 18892
1 18 1977 158245 13067
2 4 1977 113056 14728
3 1 1977 127593 12071
4 66 1977 45860 18966
5 9 1977 225212 22840
6 28 1977 271935 31981
7 2 1977 94163 12907
8 0 1977 120937 5843
9 27 1977 33461 4897
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 33015 2735 168 147
1 28491 10558 63 198
2 23015 17264 172 81
3 10867 4113 186 10
4 9215 1719 30 236
5 30319 14646 41 135
6 26248 7622 235 241
7 19395 3395 152 12
8 14675 2073 189 18
9 16735 7744 46 76
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 360 1 7575
1 115 1 9719
2 214 1 2260
3 33 2 9732
4 114 7 1156
5 96 1 18097
6 67 1 2704
7 168 1 916
8 107 2 6973
9 106 5 5348
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 600 815 1 10
1 1105 634 0 10
2 750 1120 0 10
3 1596 191 1 10
4 1156 589 0 10
5 1831 803 2 2
6 294 1957 6 2
7 916 814 0 2
8 0 460 0 2
9 310 1172 2 2
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 34 2 2 12 False
1 17 1 1 8 False
2 15 0 2 8 False
3 19 1 0 10 False
4 58 0 4 26 False
5 27 4 2 9 True
6 35 1 1 12 True
7 28 4 1 15 True
8 14 0 0 9 True
9 56 1 4 21 True ,
assists baronKills bountyLevel champLevel championName \
0 6 0 2 18 Jayce
1 18 0 5 17 Graves
2 9 1 12 18 Kayle
3 5 0 1 15 Ezreal
4 19 0 1 16 Bard
5 2 0 0 16 Garen
6 3 0 0 13 Diana
7 2 0 0 15 Akali
8 0 0 0 17 Xayah
9 7 0 0 13 Rakan
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3503 3890 3503
1 2210 25821 2210
2 8556 19742 8556
3 2383 6182 2383
4 780 2169 780
5 3788 6338 3788
6 484 35874 484
7 498 2028 498
8 6831 19710 6831
9 1584 3255 1584
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 8 0 0 False False
1 1 0 4 False False
2 2 0 0 False False
3 2 0 0 False False
4 7 0 0 False False
5 6 0 0 True False
6 11 0 1 False True
7 7 2 0 False False
8 4 2 0 False False
9 6 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 13560 TOP 0
1 True 14622 JUNGLE 0
2 True 17831 MIDDLE 0
3 True 9050 BOTTOM 1
4 True 8879 UTILITY 0
5 True 11406 TOP 1
6 True 10333 JUNGLE 0
7 True 9175 MIDDLE 0
8 True 17102 BOTTOM 0
9 True 7954 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 1055 6692 3047 3042 6694 1031 3340
1 1 3006 2031 6673 3046 6676 3031 3364
2 1 1058 3006 3041 3115 4633 4629 3340
3 1 3508 3158 3004 3133 0 1055 3340
4 1 3853 3190 3158 3110 2015 1018 3340
5 1 3078 3047 3742 3075 1037 0 3340
6 1 3115 2031 3020 3152 3165 0 3340
7 1 3115 4636 3020 3191 0 0 3340
8 1 3006 6672 3046 3031 3072 3033 3363
9 1 3860 2065 3050 3111 3114 1052 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 8 2 1
1 1 6 5 1
2 2 16 12 2
3 0 3 0 1
4 0 1 0 1
5 2 4 2 1
6 0 3 0 1
7 2 4 2 1
8 1 9 7 1
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 342 24105 5409
1 1433 13000 1258
2 1345 156729 25494
3 1171 9904 2238
4 531 48878 7963
5 1258 3821 899
6 638 102494 10572
7 882 68860 15049
8 1606 0 0
9 1279 14304 5466
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 6785 0 0 0
1 8656 166 0 2
2 5932 24 0 0
3 2339 0 0 0
4 10996 0 0 0
5 8447 28 0 0
6 8410 108 0 0
7 9008 4 0 0
8 8536 68 0 0
9 9713 4 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 146732
1 0 2 218635
2 0 3 45706
3 0 4 65011
4 0 5 8270
5 0 6 129028
6 0 7 28793
7 0 8 15811
8 0 9 295847
9 0 10 7104
physicalDamageDealtToChampions physicalDamageTaken role \
0 25453 20856 SOLO
1 24704 22452 NONE
2 5451 17899 SOLO
3 2792 5803 CARRY
4 1088 6854 SUPPORT
5 9045 21527 SOLO
6 1098 21025 NONE
7 720 16234 SOLO
8 38435 14085 CARRY
9 527 11086 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 5 12 5 4 274
1 5 4 22 11 15
2 5 4 4 12 348
3 1 7 0 4 81
4 4 12 5 4 24
5 6 4 8 14 12
6 3 4 17 11 25
7 4 4 0 14 189
8 4 4 5 7 349
9 4 3 4 4 92
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 Shalashaskaa False 100 TOP 13
1 RyeBreadPitt False 100 JUNGLE 35
2 Rotome False 100 MIDDLE 12
3 Dublaiar False 100 BOTTOM 0
4 Luminier1 False 100 UTILITY 25
5 Yakyek False 200 TOP 27
6 Wastopalia False 200 JUNGLE 6
7 treytin False 200 MIDDLE 0
8 Acearrow False 200 BOTTOM 26
9 Isithlord1996 False 200 UTILITY 23
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 2122 189397 30863
1 2122 246834 28070
2 2122 212667 32769
3 2122 83210 5031
4 2122 57149 9052
5 2122 137898 14994
6 2122 148284 12272
7 2122 86211 15770
8 2122 314618 42162
9 2122 25593 5993
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 31665 10961 215 205
1 33221 10354 80 747
2 25600 15142 245 317
3 8957 1180 104 18
4 18509 5520 45 450
5 30844 2022 150 139
6 30100 5672 37 134
7 26081 3632 139 29
8 23244 2502 270 107
9 21735 5439 34 97
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 290 1 18560
1 43 1 15198
2 85 5 10231
3 73 2 8294
4 146 5 0
5 236 1 5049
6 378 1 16996
7 252 1 1540
8 151 2 18771
9 201 4 4184
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 4023 0 6
1 2107 2112 0 6
2 1824 1768 3 6
3 0 814 2 6
4 0 658 0 6
5 5049 870 2 6
6 601 665 1 6
7 0 838 0 6
8 3726 622 3 6
9 0 935 0 6
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 18 0 1 11 True
1 23 0 5 1 True
2 24 0 6 10 True
3 16 0 0 12 True
4 34 0 4 16 True
5 19 0 1 10 False
6 18 0 1 10 False
7 23 2 0 13 False
8 42 3 1 13 False
9 74 1 3 36 False ,
assists baronKills bountyLevel champLevel championName \
0 3 0 0 15 Mordekaiser
1 2 0 0 13 Kayn
2 2 0 0 14 Pantheon
3 2 0 0 12 Ezreal
4 3 0 0 11 MissFortune
5 8 0 0 15 Ornn
6 8 1 4 15 Khazix
7 6 0 7 15 AurelionSol
8 7 0 9 14 Caitlyn
9 20 0 1 14 Yuumi
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 1806 9485 1806
1 264 17278 264
2 1553 7106 1553
3 580 1015 580
4 416 1959 416
5 3150 4810 3150
6 2807 20583 2807
7 3883 12159 3883
8 9121 22845 9121
9 532 952 532
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 3 1 0 False False
1 5 1 1 False False
2 5 4 0 False False
3 7 0 0 False False
4 8 0 1 False False
5 7 1 0 False False
6 4 5 0 False False
7 2 4 2 False True
8 1 1 0 False False
9 1 5 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 True False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 10740 TOP 0
1 False 9078 JUNGLE 0
2 False 9166 MIDDLE 0
3 False 7548 BOTTOM 0
4 False 6481 UTILITY 0
5 False 8475 TOP 0
6 False 10610 JUNGLE 1
7 False 11914 MIDDLE 0
8 False 13362 BOTTOM 0
9 False 8444 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 1054 2421 4633 3111 4637 3108 3340
1 1 3158 2031 6630 6333 3044 0 3364
2 1 6692 2033 3071 3111 0 0 3363
3 1 3508 3158 3004 0 0 1055 3340
4 1 6653 1052 3020 3853 3070 0 3340
5 0 1054 3111 7004 3075 1006 0 3340
6 0 3158 6693 6695 3134 1037 2055 3364
7 0 2421 3116 2033 7010 3020 1058 3340
8 0 1038 2420 7006 3006 3095 3094 3340
9 0 2065 3011 3853 0 3504 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 6 6 1
1 1 3 2 1
2 1 3 3 2
3 0 2 0 1
4 0 0 0 0
5 0 0 0 0
6 1 5 4 1
7 2 11 7 3
8 2 11 9 2
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 1331 110474 15003
1 960 7770 0
2 954 4906 475
3 789 3504 1482
4 438 32926 7435
5 404 27362 8030
6 463 8874 742
7 713 106837 15033
8 698 6480 2388
9 702 7417 4134
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 6625 8 1 0
1 10066 123 1 0
2 5507 15 1 0
3 4154 0 1 0
4 5292 4 1 1
5 10778 0 0 0
6 6804 130 0 0
7 5648 24 0 0
8 3924 12 0 0
9 1184 4 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 16177
1 0 2 116993
2 0 3 111261
3 0 4 49743
4 0 5 18719
5 0 6 63567
6 0 7 136681
7 0 8 11926
8 0 9 143195
9 0 10 1534
physicalDamageDealtToChampions physicalDamageTaken role \
0 2182 18714 SOLO
1 8610 19588 NONE
2 11120 12447 SOLO
3 3804 9052 CARRY
4 6411 8603 SUPPORT
5 5725 12173 SOLO
6 13964 21771 NONE
7 1579 16250 SOLO
8 21933 8037 CARRY
9 385 4809 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 2 12 179
1 16 11 4 4 63
2 4 4 4 14 348
3 3 7 1 4 81
4 4 4 3 3 155
5 4 4 3 12 176
6 3 4 16 11 298
7 5 4 5 14 339
8 4 7 2 4 317
9 5 3 5 14 210
summonerName teamEarlySurrendered teamId teamPosition \
0 Coolgum15 False 100 TOP
1 Liquid Toaster False 100 JUNGLE
2 Rotome False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 Blame This Guy False 100 UTILITY
5 PotatoGuy319 False 200 TOP
6 BundtCakes69 False 200 JUNGLE
7 Katnip Everdank False 200 MIDDLE
8 MadokaMagiCat False 200 BOTTOM
9 supafierce False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 5 1743 134505 18019
1 12 1743 138564 9199
2 16 1743 120972 12397
3 0 1743 53247 5286
4 16 1743 52539 14740
5 35 1743 100975 13792
6 7 1743 153381 15329
7 22 1743 121459 16924
8 28 1743 152694 25680
9 8 1743 9960 5528
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 26009 7209 172 46
1 31583 12568 26 355
2 18236 4013 159 40
3 13426 1080 114 0
4 14320 238 37 307
5 26632 3431 162 435
6 29429 14614 27 150
7 22972 7247 144 341
8 13378 7194 162 114
9 6088 12617 7 33
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 91 1 7854
1 191 1 13801
2 129 1 4804
3 220 3 0
4 234 1 893
5 175 1 10046
6 100 1 7826
7 67 1 2696
8 21 3 3018
9 21 5 1008
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 833 670 1 7
1 589 1928 1 7
2 802 282 0 7
3 0 220 0 7
4 893 424 0 7
5 36 3680 1 3
6 622 853 1 3
7 311 1074 2 3
8 1358 1416 3 3
9 1008 93 0 3
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 16 1 2 8 False
1 15 1 3 2 False
2 21 4 0 8 False
3 16 0 2 9 False
4 31 0 3 18 False
5 17 1 1 10 True
6 28 7 3 5 True
7 27 4 2 13 True
8 13 2 4 5 True
9 47 5 4 22 True ,
assists baronKills bountyLevel champLevel championName \
0 0 0 0 3 Mordekaiser
1 0 0 0 3 Karthus
2 0 0 0 3 Veigar
3 0 0 0 1 Ezreal
4 0 0 0 3 Pantheon
5 0 0 0 3 Aatrox
6 0 0 0 3 Sett
7 0 0 0 3 Viktor
8 0 0 0 2 Twitch
9 0 0 0 2 Soraka
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 0 0 0
1 0 0 0
2 0 0 0
3 0 0 0
4 0 0 0
5 0 0 0
6 0 0 0
7 0 0 0
8 272 272 272
9 82 82 82
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 0 0 0 False False
1 0 0 0 False False
2 0 0 0 False False
3 0 0 0 False False
4 0 0 0 False False
5 0 0 0 False False
6 0 0 0 False False
7 0 0 0 False False
8 0 0 0 False False
9 0 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False True
1 False False True
2 False False True
3 False False True
4 False False True
5 False False True
6 False False True
7 False False True
8 False False True
9 False False True
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 946 TOP 0
1 False 1068 JUNGLE 0
2 False 907 MIDDLE 0
3 False 683 AFK 0
4 False 715 UTILITY 0
5 False 904 TOP 0
6 False 1053 JUNGLE 0
7 False 1002 MIDDLE 0
8 False 1016 BOTTOM 0
9 False 761 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1054 2003 0 0 0 0 3340
1 0 1039 2031 0 0 0 0 3340
2 0 1056 2003 0 0 0 0 3340
3 0 2003 2010 0 0 0 1055 3340
4 0 3854 2003 0 0 0 0 3340
5 0 1054 0 0 0 0 0 3340
6 0 1035 2031 0 0 0 0 3364
7 0 1056 2003 2010 0 0 0 3340
8 0 1056 2003 0 0 0 0 3340
9 0 3850 2003 0 0 0 0 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 0 0 0 0
1 0 0 0 0
2 0 0 0 0
3 0 0 0 0
4 0 0 0 0
5 0 0 0 0
6 0 0 0 0
7 0 0 0 0
8 0 0 0 0
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 0 2011 326
1 0 7454 0
2 0 2433 33
3 0 0 0
4 0 0 0
5 0 0 0
6 0 1731 0
7 0 654 323
8 0 272 0
9 0 261 91
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 0 0 0 0
1 359 16 0 0
2 323 0 0 0
3 0 0 0 0
4 91 0 0 0
5 326 0 0 0
6 293 16 0 0
7 33 0 0 0
8 0 0 0 0
9 0 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 1253
1 0 2 1058
2 0 3 799
3 0 4 0
4 0 5 867
5 0 6 3345
6 0 7 6788
7 0 8 1269
8 0 9 2502
9 0 10 416
physicalDamageDealtToChampions physicalDamageTaken role summoner1Casts \
0 225 512 DUO 1
1 0 1362 DUO 0
2 0 0 DUO 0
3 0 0 DUO 0
4 270 93 DUO 0
5 302 342 DUO 1
6 0 1537 DUO 0
7 0 183 DUO 0
8 40 33 DUO 0
9 0 427 DUO 0
summoner1Id summoner2Casts summoner2Id summonerLevel summonerName \
0 4 0 12 179 Coolgum15
1 4 1 11 102 tekstudios
2 4 0 12 348 Rotome
3 7 0 4 81 Dublaiar
4 4 1 14 273 SkybeatzTech
5 4 0 12 222 QianNidalao
6 4 1 11 159 S0ULmann
7 12 0 4 83 Uzi RNG
8 4 0 7 259 gilgadu
9 4 0 7 106 Deez Nuts Vlogs
teamEarlySurrendered teamId teamPosition timeCCingOthers timePlayed \
0 True 100 TOP 0 199
1 True 100 JUNGLE 0 199
2 True 100 MIDDLE 0 199
3 True 100 AFK 0 199
4 True 100 UTILITY 0 199
5 False 200 TOP 0 199
6 False 200 JUNGLE 0 199
7 False 200 MIDDLE 0 199
8 False 200 BOTTOM 0 199
9 False 200 UTILITY 0 199
totalDamageDealt totalDamageDealtToChampions totalDamageTaken totalHeal \
0 5649 551 512 0
1 9200 0 1721 674
2 3232 33 323 20
3 0 0 0 0
4 889 292 196 0
5 3345 302 669 68
6 9977 0 1831 785
7 1924 323 216 0
8 3162 51 33 0
9 678 91 449 50
totalMinionsKilled totalTimeCCDealt totalTimeSpentDead totalUnitsHealed \
0 12 1 0 0
1 0 37 0 1
2 13 0 0 1
3 0 0 0 0
4 1 1 0 0
5 10 5 0 1
6 0 8 0 1
7 16 0 0 0
8 17 21 0 0
9 0 3 0 1
trueDamageDealt trueDamageDealtToChampions trueDamageTaken turretKills \
0 2385 0 0 0
1 688 0 0 0
2 0 0 0 0
3 0 0 0 0
4 22 22 11 0
5 0 0 0 0
6 1456 0 0 0
7 0 0 0 0
8 387 11 0 0
9 0 0 22 0
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 0 0 0 0
1 0 0 0 0
2 0 1 0 0
3 0 0 0 0
4 0 0 0 0
5 0 0 0 0
6 0 1 0 0
7 0 0 0 0
8 0 0 0 0
9 0 0 0 0
wardsPlaced win
0 1 False
1 0 False
2 1 False
3 0 False
4 1 False
5 0 True
6 1 True
7 0 True
8 0 True
9 1 True ,
assists baronKills bountyLevel champLevel championName \
0 7 0 0 16 Kindred
1 1 0 0 14 Mordekaiser
2 3 0 0 18 Tryndamere
3 5 0 0 16 Draven
4 15 0 0 15 Zilean
5 9 0 0 16 Ezreal
6 14 1 1 18 Pantheon
7 11 0 2 18 Evelynn
8 19 0 2 18 Senna
9 20 0 0 16 Zyra
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 986 6489 986
1 1411 9828 1411
2 949 5968 949
3 4196 4196 4196
4 1938 2752 1938
5 1073 7558 1073
6 4955 16787 4955
7 2772 27039 2772
8 6862 13150 6862
9 852 2364 852
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 15 0 1 False False
1 10 1 0 False False
2 9 0 0 False False
3 12 0 0 False False
4 12 6 0 False False
5 4 0 0 False False
6 5 1 1 False False
7 4 1 2 False False
8 8 1 0 False True
9 11 1 1 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 13497 JUNGLE 0
1 False 9606 TOP 0
2 False 16004 MIDDLE 0
3 False 16117 BOTTOM 0
4 False 9856 UTILITY 0
5 False 9541 BOTTOM 0
6 False 16035 TOP 1
7 False 17276 JUNGLE 0
8 False 18010 MIDDLE 0
9 False 10557 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 6676 3031 3006 6672 3086 1042 3340
1 1 1054 3076 3068 3047 4637 2420 3340
2 1 3158 3508 6631 3031 3046 3035 3340
3 1 3072 6691 3006 6676 3031 1031 3340
4 1 3020 3853 3040 6653 3108 0 3364
5 0 3508 3158 3004 3133 1036 1055 3340
6 0 6692 1033 3111 3071 3053 6333 3363
7 0 4636 3157 3100 3089 3020 3102 3340
8 0 3031 6691 3009 3042 6676 3094 3340
9 0 3853 6653 3020 3165 1011 1052 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 7 2 2
1 0 2 0 1
2 3 10 3 2
3 4 13 4 2
4 0 0 0 0
5 0 2 0 1
6 3 14 5 3
7 5 22 8 2
8 4 17 6 2
9 1 3 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 564 18279 3086
1 686 79430 8111
2 570 0 0
3 338 0 0
4 390 59326 14306
5 691 9882 1974
6 865 11343 2499
7 715 168410 34320
8 711 725 407
9 336 73881 27194
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 15518 113 1 0
1 7673 16 1 0
2 15457 15 1 0
3 17990 18 1 0
4 11730 2 1 0
5 3976 5 0 0
6 8027 25 0 0
7 5364 140 0 0
8 6007 8 0 0
9 4735 11 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 113338
1 0 2 12895
2 0 3 200260
3 0 4 158972
4 0 5 2504
5 0 6 73527
6 0 7 173371
7 0 8 15545
8 0 9 162649
9 0 10 2348
physicalDamageDealtToChampions physicalDamageTaken role \
0 14704 21875 NONE
1 1028 22494 SOLO
2 21002 20653 CARRY
3 30024 24953 SOLO
4 245 12317 SUPPORT
5 4655 9518 SOLO
6 26272 21568 NONE
7 752 27792 NONE
8 41372 18796 SOLO
9 319 16640 NONE
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 11 11 328
1 3 4 2 12 48
2 6 14 5 4 111
3 5 4 7 7 232
4 2 4 0 14 423
5 4 7 2 4 81
6 5 4 3 12 348
7 6 4 23 11 179
8 6 4 5 14 216
9 4 4 8 21 50
summonerName teamEarlySurrendered teamId teamPosition \
0 Poor Lost Soulz False 100 JUNGLE
1 crackerkelly1023 False 100 TOP
2 SirTuck11 False 100 MIDDLE
3 KHAhoot Me Daddy False 100 BOTTOM
4 Boast False 100 UTILITY
5 Dublaiar False 200 BOTTOM
6 Rotome False 200 TOP
7 Coolgum15 False 200 JUNGLE
8 PoweradePal False 200 MIDDLE
9 Tatertits524 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 4 2163 143959 20186
1 3 2163 95318 9140
2 11 2163 215593 22704
3 14 2163 168693 30489
4 12 2163 61830 14552
5 0 2163 83409 6630
6 32 2163 189038 28979
7 15 2163 193615 36678
8 29 2163 166085 44105
9 20 2163 81190 27514
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 38296 12849 33 172
1 31267 4415 126 44
2 37560 8576 210 238
3 43478 9867 167 143
4 24199 7968 49 133
5 13510 2797 112 0
6 31702 10007 188 92
7 34399 15984 16 269
8 25862 14047 188 85
9 21927 1106 56 62
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 534 10 12340
1 360 1 2992
2 303 1 15333
3 414 3 9720
4 380 3 0
5 140 3 0
6 221 1 4324
7 158 1 9658
8 344 4 2710
9 343 1 4960
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 2395 902 0 7
1 0 1098 1 7
2 1702 1449 1 7
3 465 535 3 7
4 0 151 0 7
5 0 15 0 5
6 208 2106 3 5
7 1604 1242 1 5
8 2324 1058 1 5
9 0 551 1 5
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 23 0 1 12 False
1 30 1 2 11 False
2 18 0 3 9 False
3 19 0 1 10 False
4 54 6 6 17 False
5 10 0 0 9 True
6 39 2 0 10 True
7 28 1 1 13 True
8 15 1 1 7 True
9 42 1 0 25 True ,
assists baronKills bountyLevel champLevel championName \
0 17 0 0 17 Shen
1 11 0 0 15 Warwick
2 10 0 0 17 Pantheon
3 15 0 0 15 Jhin
4 15 0 0 15 Leona
5 11 0 0 18 Mordekaiser
6 22 2 0 17 Zac
7 8 0 12 18 Zed
8 7 0 3 18 Samira
9 25 0 0 16 Nami
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 246 1856 246
1 477 8929 477
2 961 8596 961
3 2805 6961 2805
4 876 2676 876
5 4194 28476 4194
6 364 17732 364
7 7483 18191 7483
8 1802 9625 1802
9 1491 2750 1491
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 8 1 0 False False
1 13 0 2 False False
2 8 1 1 False True
3 9 0 0 False False
4 6 0 0 False False
5 6 2 1 False False
6 7 2 2 False False
7 8 1 0 False False
8 15 0 0 False False
9 5 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 11073 TOP 0
1 False 13681 JUNGLE 0
2 False 15109 MIDDLE 0
3 False 12500 BOTTOM 0
4 False 9782 UTILITY 0
5 False 16650 TOP 1
6 False 11934 JUNGLE 1
7 False 20168 MIDDLE 0
8 False 15137 BOTTOM 0
9 False 11519 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 2 1054 3068 3111 4401 1011 3077 3340
1 2 6632 3047 3748 3053 3211 3067 3340
2 2 6692 6609 3158 3053 3071 1057 3363
3 2 6671 3009 6676 3036 3123 1055 3340
4 2 3190 3860 3050 3117 3109 1033 3340
5 0 3157 4633 3047 3075 4637 1011 3340
6 0 3047 3083 3068 3075 0 0 3364
7 0 6692 6694 3158 6676 3814 3071 3340
8 0 3031 6673 3006 6676 3123 1018 3340
9 0 3860 2065 3222 3157 2055 3158 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 4 0 1
1 2 13 3 1
2 4 14 7 2
3 1 5 2 1
4 1 5 4 1
5 1 9 7 3
6 0 3 0 1
7 3 18 12 2
8 3 11 3 2
9 1 3 3 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 1050 48650 16034
1 305 41496 15922
2 845 3051 2060
3 512 7978 2154
4 998 27658 6846
5 586 177435 30751
6 558 115551 22157
7 493 15491 1519
8 337 21047 3407
9 601 20285 11383
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 14705 4 1 0
1 23462 88 1 0
2 14841 12 1 0
3 8776 1 1 0
4 9539 0 1 0
5 13664 24 0 0
6 14132 115 0 0
7 4834 78 0 0
8 11519 8 0 0
9 4169 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 45630
1 0 2 61514
2 0 3 178633
3 0 4 141336
4 0 5 17080
5 0 6 20225
6 0 7 23100
7 0 8 227048
8 0 9 155106
9 0 10 3876
physicalDamageDealtToChampions physicalDamageTaken role \
0 11311 24580 SOLO
1 12409 27607 NONE
2 34509 21971 SOLO
3 16990 16337 CARRY
4 3976 15553 SUPPORT
5 2581 23732 SOLO
6 1597 28969 NONE
7 37105 22537 SOLO
8 26716 25268 CARRY
9 912 10735 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 12 5 4 252
1 22 11 4 4 247
2 4 4 2 12 348
3 6 7 2 4 81
4 9 14 6 4 88
5 4 4 6 14 221
6 5 4 20 11 203
7 5 4 7 14 249
8 6 14 6 4 40
9 8 3 5 4 186
summonerName teamEarlySurrendered teamId teamPosition \
0 Zodiacsquad False 100 TOP
1 itrior False 100 JUNGLE
2 Rotome False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 GodLikeLawl False 100 UTILITY
5 Shamallama21 False 200 TOP
6 MooMan89 False 200 JUNGLE
7 Yoseb False 200 MIDDLE
8 EmpressQiyana20 False 200 BOTTOM
9 Pepperbaker False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 57 2320 122774 28863
1 42 2320 109027 28982
2 37 2320 182130 37016
3 31 2320 155123 19233
4 78 2320 63526 12400
5 11 2320 204742 38444
6 62 2320 149430 25173
7 11 2320 258126 40788
8 2 2320 191908 31883
9 66 2320 26400 12295
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 41429 4392 143 265
1 54035 20177 22 351
2 38331 9266 217 59
3 26098 7453 178 113
4 27851 3580 68 150
5 37942 14770 227 59
6 45461 36732 31 423
7 27981 6347 174 335
8 37819 5610 203 3
9 15037 13821 28 336
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 387 1 28492
1 411 1 6016
2 316 1 445
3 255 3 5808
4 257 5 18787
5 252 1 7081
6 251 5 10779
7 262 1 15585
8 496 1 15755
9 125 5 2238
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1517 2144 0 10
1 650 2965 0 10
2 445 1518 1 10
3 88 984 1 10
4 1577 2758 0 10
5 5112 545 1 2
6 1419 2358 1 2
7 2163 610 4 2
8 1760 1030 0 2
9 0 132 1 2
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 20 2 1 14 False
1 24 0 3 10 False
2 17 1 1 9 False
3 12 0 0 8 False
4 36 1 2 19 False
5 35 2 4 14 True
6 25 2 3 5 True
7 28 1 2 14 True
8 20 0 2 10 True
9 55 3 7 20 True ,
assists baronKills bountyLevel champLevel championName \
0 9 0 0 18 Mordekaiser
1 13 0 0 17 Ekko
2 3 0 0 16 Talon
3 10 0 0 14 Aphelios
4 16 0 0 15 Morgana
5 7 0 0 17 Tryndamere
6 8 0 10 18 Khazix
7 19 0 0 17 Pantheon
8 15 0 0 17 Ezreal
9 26 0 0 16 Nautilus
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3441 8366 3441
1 0 30601 0
2 2342 6581 2342
3 4608 8746 4608
4 1919 4129 1919
5 8350 9983 8350
6 2642 31021 2642
7 4843 20165 4843
8 3006 3859 3006
9 346 3548 346
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 13 1 0 False False
1 11 1 4 False False
2 11 0 0 False False
3 17 0 0 False False
4 11 3 0 False False
5 12 2 0 False False
6 11 4 1 False False
7 7 0 1 False False
8 7 0 0 True False
9 9 11 0 False True
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 True False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 18002 TOP 0
1 True 14433 JUNGLE 0
2 True 12845 MIDDLE 0
3 True 10460 BOTTOM 0
4 True 11555 UTILITY 0
5 True 17312 TOP 1
6 True 17377 JUNGLE 0
7 True 16550 MIDDLE 0
8 True 13624 BOTTOM 0
9 True 9650 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 3157 3116 3047 4637 4633 3075 3340
1 1 3157 3152 1058 3020 3165 3100 3364
2 1 3814 6693 3158 3042 3133 1036 3340
3 1 1018 6672 3006 3085 1037 1053 3340
4 1 3117 6656 3853 3157 3165 1026 3364
5 0 6694 6672 6675 3006 3031 3123 3340
6 0 6691 3111 6676 3814 6694 0 3364
7 0 6692 3071 3158 3814 3074 1057 3363
8 0 3508 3158 3042 6691 3035 3133 3363
9 0 3860 3190 4643 3117 3067 3076 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 5 18 5 2
1 3 10 3 1
2 2 8 3 1
3 0 5 0 1
4 1 4 2 1
5 6 17 3 2
6 4 20 10 2
7 3 16 7 2
8 2 9 3 1
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 310 150690 40727
1 371 161613 26855
2 506 10 10
3 319 1022 799
4 560 49606 14747
5 501 0 0
6 465 8984 2221
7 616 4936 1062
8 662 12730 7343
9 767 20416 10757
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 3648 30 0 0
1 6967 143 0 0
2 3054 36 0 0
3 4309 6 0 0
4 4610 0 0 0
5 26013 32 0 0
6 15831 131 0 0
7 18193 23 0 0
8 11038 0 0 0
9 14164 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 24821
1 0 2 32839
2 0 3 141997
3 0 4 73148
4 0 5 6042
5 0 6 186829
6 0 7 182876
7 0 8 183331
8 0 9 95043
9 0 10 8045
physicalDamageDealtToChampions physicalDamageTaken role \
0 5293 52101 DUO
1 3390 39862 NONE
2 13068 26815 DUO
3 14316 27521 CARRY
4 452 22576 SUPPORT
5 41568 17933 SOLO
6 33177 21174 NONE
7 45937 12601 SOLO
8 16877 8693 CARRY
9 2421 8379 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 5 12 6 4 225
1 6 4 21 11 310
2 4 4 7 14 171
3 6 4 10 11 33
4 2 14 6 4 79
5 4 4 4 6 191
6 6 4 21 11 101
7 5 4 2 12 348
8 6 7 3 4 81
9 5 4 6 14 124
summonerName teamEarlySurrendered teamId teamPosition \
0 Kaizer X King False 100 TOP
1 Frank the Tank09 False 100 JUNGLE
2 0020002 False 100 MIDDLE
3 KirandyNA False 100 BOTTOM
4 MystikPeanut False 100 UTILITY
5 TheNeoKnight01 False 200 TOP
6 OnelyEbi False 200 JUNGLE
7 Rotome False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 cherrisu False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 27 2281 183892 50299
1 25 2281 211599 31940
2 3 2281 143464 14123
3 24 2281 94180 16430
4 69 2281 56704 16254
5 11 2281 200439 45657
6 13 2281 204105 37373
7 41 2281 191045 47000
8 1 2281 109782 24508
9 84 2281 35327 14138
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 57993 20532 140 342
1 48215 21439 51 522
2 31122 5954 132 204
3 33054 4121 89 113
4 28394 5055 56 97
5 46344 12665 160 88
6 38953 15773 45 355
7 32751 8385 187 70
8 21445 4029 162 11
9 23917 1593 34 342
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 433 1 8380
1 402 1 17146
2 365 1 1457
3 537 1 20009
4 318 1 1054
5 454 1 13610
6 369 1 12244
7 293 1 2777
8 249 3 2008
9 280 5 6865
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 4278 2243 0 6
1 1694 1385 0 6
2 1045 1253 1 6
3 1314 1222 3 6
4 1054 1207 0 6
5 4089 2397 4 4
6 1974 1947 0 4
7 0 1957 0 4
8 288 1712 2 4
9 960 1372 0 4
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 23 1 3 14 False
1 37 1 7 8 False
2 23 0 2 12 False
3 13 0 3 6 False
4 86 3 10 34 False
5 23 2 2 8 True
6 25 8 2 5 True
7 11 0 0 8 True
8 20 0 3 10 True
9 84 10 9 38 True ,
assists baronKills bountyLevel champLevel championName \
0 12 0 0 17 Illaoi
1 6 1 0 18 Jax
2 5 0 0 17 Pantheon
3 5 0 0 14 Ezreal
4 8 0 2 14 Xerath
5 1 0 0 16 Camille
6 3 0 3 17 Kindred
7 6 0 0 17 Akali
8 6 0 0 14 Jinx
9 6 0 0 15 Lux
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 4303 9415 4303
1 7210 32106 7210
2 3802 8884 3802
3 2757 16557 2757
4 1312 6247 1312
5 6276 6276 6276
6 0 29080 0
7 4536 4536 4536
8 3723 7134 3723
9 3174 4310 3174
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 6 1 0 False False
1 7 2 2 False False
2 6 3 0 False False
3 6 0 1 False False
4 2 2 0 False False
5 11 1 0 False False
6 4 0 3 False True
7 11 3 0 True False
8 5 2 0 False False
9 3 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 True False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 14294 TOP 0
1 False 15560 JUNGLE 0
2 False 15432 MIDDLE 1
3 False 9712 BOTTOM 0
4 False 9258 UTILITY 0
5 False 11445 TOP 1
6 False 16335 JUNGLE 0
7 False 13016 MIDDLE 0
8 False 10181 BOTTOM 0
9 False 12023 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 3053 6630 3065 3047 0 6333 3340
1 1 3078 3047 3071 3074 3053 0 3364
2 1 6692 3053 3158 3814 3074 0 3363
3 1 3508 3158 3004 3133 1036 1055 3363
4 1 3853 3020 6655 4628 1052 0 3364
5 1 1055 3078 3074 3047 3044 1028 3340
6 1 6672 3072 3006 6676 3153 0 3340
7 1 3100 3165 3157 4636 3020 0 3363
8 1 3085 3036 6672 0 1001 0 3340
9 1 3853 3020 3157 6655 1052 4628 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 6 3 1
1 4 10 3 2
2 4 15 5 2
3 0 1 0 1
4 1 2 2 1
5 0 1 0 1
6 3 11 4 2
7 3 8 3 2
8 1 2 2 1
9 1 4 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 778 147 122
1 904 47042 3531
2 800 4520 1667
3 540 4628 1264
4 1216 66349 23912
5 384 1512 1512
6 1071 29109 5669
7 532 114492 24824
8 1561 3098 1388
9 1184 89847 17846
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 15376 16 0 0
1 10558 142 0 0
2 15350 14 0 0
3 8401 8 0 0
4 4632 8 0 0
5 3450 32 1 0
6 8631 159 1 0
7 7144 0 1 0
8 7617 4 1 0
9 6218 18 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 169582
1 0 2 198552
2 0 3 181106
3 0 4 77106
4 0 5 3306
5 0 6 153388
6 0 7 168755
7 0 8 18594
8 0 9 109198
9 0 10 6908
physicalDamageDealtToChampions physicalDamageTaken role \
0 24510 18937 SOLO
1 11982 22933 NONE
2 25892 16074 SOLO
3 4279 6868 CARRY
4 86 6133 SUPPORT
5 10002 33058 SOLO
6 16847 21846 NONE
7 1319 26259 SOLO
8 11979 9149 CARRY
9 318 6922 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 4 12 88
1 5 4 24 11 65
2 6 4 4 12 348
3 5 7 1 4 81
4 2 3 1 4 176
5 6 14 4 4 478
6 20 11 5 4 221
7 6 4 5 14 195
8 3 4 5 7 267
9 3 4 3 21 220
summonerName teamEarlySurrendered teamId teamPosition \
0 GasStationSushi False 100 TOP
1 GandalfTheTHICC False 100 JUNGLE
2 Rotome False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 Thick2BThighs False 100 UTILITY
5 Twink Xrath False 200 TOP
6 Black Twink False 200 JUNGLE
7 A40N15 False 200 MIDDLE
8 StridingSnow False 200 BOTTOM
9 RosePaladin False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 5 2362 169807 24711
1 12 2362 260787 16587
2 27 2362 185626 27559
3 0 2362 83854 5544
4 16 2362 69656 23998
5 19 2362 211980 18766
6 15 2362 246222 28128
7 1 2362 136375 26592
8 22 2362 118982 14143
9 39 2362 105236 19074
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 42398 15438 167 50
1 37311 17765 83 347
2 34544 12345 196 62
3 15758 3504 118 0
4 11283 2342 32 116
5 36902 8311 156 320
6 30783 18245 66 236
7 33547 5930 160 55
8 17039 3676 149 71
9 13177 1540 72 347
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 170 1 78
1 167 1 15192
2 204 1 0
3 170 4 2119
4 58 1 0
5 379 1 57079
6 110 10 48358
7 355 1 3288
8 171 3 6685
9 127 1 8479
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 78 8084 3 7
1 1074 3819 2 7
2 0 3118 2 7
3 0 488 0 7
4 0 517 1 7
5 7251 394 3 8
6 5610 306 1 8
7 448 144 1 8
8 774 272 0 8
9 909 36 2 8
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 24 1 3 12 True
1 22 2 5 3 True
2 31 3 3 10 True
3 14 0 0 10 True
4 58 3 3 26 True
5 22 1 1 13 False
6 32 0 4 13 False
7 41 4 5 16 False
8 26 2 0 15 False
9 80 1 3 36 False ,
assists baronKills bountyLevel champLevel championName \
0 1 0 3 14 Garen
1 6 0 0 12 LeeSin
2 6 0 0 12 Zoe
3 5 0 6 12 Draven
4 13 0 1 11 Lulu
5 0 0 0 13 Pantheon
6 3 0 0 11 Diana
7 0 0 0 14 Orianna
8 2 0 0 10 Xayah
9 4 0 0 10 Leona
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2756 5539 2756
1 1219 12807 1219
2 211 4016 211
3 4009 6128 4009
4 1861 2563 1861
5 1526 8048 1526
6 0 8768 0
7 2262 5595 2262
8 2478 5084 2478
9 832 1415 832
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 1 1 0 False False
1 2 1 2 False False
2 5 0 0 False True
3 4 0 0 False False
4 0 2 0 False False
5 3 2 0 False False
6 5 4 1 False False
7 5 2 0 False False
8 6 0 0 False False
9 6 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False True False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 8920 TOP 0
1 True 9345 JUNGLE 0
2 True 6469 MIDDLE 0
3 True 10578 BOTTOM 0
4 True 6738 UTILITY 0
5 True 8859 TOP 0
6 True 7093 JUNGLE 0
7 True 8548 MIDDLE 0
8 True 7113 BOTTOM 0
9 True 5615 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1054 6631 3742 2055 3006 1036 3364
1 0 3047 6630 2031 2055 2420 3053 3364
2 0 6655 2033 3020 0 0 0 3340
3 0 1055 3006 6673 6676 1038 0 3340
4 0 3504 3853 4642 3158 3067 3070 3340
5 0 6692 2033 3158 3071 0 0 3363
6 0 2421 2055 4636 3020 3191 0 3364
7 0 1056 6655 3020 3040 0 0 3340
8 0 3006 3057 6672 1036 1036 0 3340
9 0 3857 2055 3047 3068 1029 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 4 3 1
1 1 9 8 2
2 0 3 0 1
3 1 8 6 2
4 0 1 0 1
5 0 2 0 1
6 0 1 0 1
7 2 5 3 1
8 0 3 0 1
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 618 340 0
1 1267 23443 1772
2 303 31106 7488
3 348 2580 505
4 0 8007 3374
5 609 3421 120
6 503 72268 7611
7 599 80648 8192
8 410 635 490
9 442 6655 2649
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 2112 8 0 0
1 5692 76 0 0
2 7578 8 0 0
3 3054 4 0 0
4 1353 0 0 0
5 206 8 0 0
6 4284 107 0 0
7 4016 12 0 0
8 2196 0 0 0
9 3470 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 94179
1 0 2 58633
2 0 3 12420
3 0 4 98994
4 0 5 2692
5 0 6 104638
6 0 7 19092
7 0 8 12023
8 0 9 50714
9 0 10 6318
physicalDamageDealtToChampions physicalDamageTaken role \
0 8651 14672 SOLO
1 9708 13468 NONE
2 1423 5298 SOLO
3 11835 8167 CARRY
4 985 3428 SUPPORT
5 11369 11791 SOLO
6 1073 10774 NONE
7 629 6303 SOLO
8 8784 9677 CARRY
9 1902 8835 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 4 14 198
1 2 4 11 11 202
2 3 4 3 21 146
3 4 7 3 4 174
4 3 4 3 3 222
5 3 4 2 12 348
6 13 11 4 4 221
7 3 4 3 12 211
8 4 7 4 4 344
9 5 14 2 4 176
summonerName teamEarlySurrendered teamId teamPosition \
0 GlockSaintAshina False 100 TOP
1 Equibox False 100 JUNGLE
2 iBanLuxReformed False 100 MIDDLE
3 Jhauyh False 100 BOTTOM
4 Xervarian False 100 UTILITY
5 Rotome False 200 TOP
6 Gam3rDud3 False 200 JUNGLE
7 pebis shidfar False 200 MIDDLE
8 Hero Øf Time False 200 BOTTOM
9 Thick2BThighs False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 39 1441 102945 10455
1 14 1441 89153 11683
2 23 1441 47791 10136
3 12 1441 107378 12728
4 24 1441 16935 4359
5 13 1441 117770 11490
6 6 1441 101899 8994
7 13 1441 92671 8821
8 9 1441 57658 9593
9 26 1441 20057 5200
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 16869 1561 191 118
1 19712 6760 26 344
2 12961 1849 62 88
3 11672 3565 152 93
4 4888 1365 16 177
5 13552 3171 161 33
6 16136 4427 11 88
7 10602 558 141 278
8 11946 1925 111 11
9 12937 685 36 40
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 27 1 8426
1 76 1 7076
2 135 2 4264
3 70 3 5804
4 0 1 6235
5 102 1 9710
6 111 1 10539
7 117 1 0
8 160 2 6308
9 114 3 7082
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1804 84 0 3
1 202 552 1 3
2 1223 84 0 3
3 386 450 1 3
4 0 106 1 3
5 0 1554 0 3
6 310 1076 1 3
7 0 282 1 3
8 319 72 1 3
9 648 631 0 3
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 16 2 3 7 True
1 18 2 2 8 True
2 12 0 1 7 True
3 11 0 1 6 True
4 38 2 2 21 True
5 13 2 1 6 False
6 24 6 5 5 False
7 19 2 1 9 False
8 10 0 1 6 False
9 22 4 1 13 False ,
assists baronKills bountyLevel champLevel championName \
0 3 0 2 13 Pantheon
1 5 0 1 11 Nocturne
2 6 0 6 12 Ryze
3 2 0 2 9 Ezreal
4 5 0 1 10 Yuumi
5 2 0 0 11 Tryndamere
6 1 0 0 10 LeeSin
7 3 0 0 10 Lucian
8 1 0 0 10 Teemo
9 4 0 0 9 Braum
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 0 699 0
1 208 11881 208
2 2321 4371 2321
3 963 4454 963
4 801 851 801
5 1140 1140 1140
6 0 26500 0
7 676 676 676
8 838 1124 838
9 0 0 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 1 1 0 False False
1 2 3 0 False True
2 3 0 0 True False
3 2 0 2 False False
4 0 0 0 False False
5 2 1 0 False False
6 4 2 1 False False
7 8 2 0 False False
8 3 1 0 False False
9 2 6 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 7021 TOP 0
1 True 7083 JUNGLE 0
2 True 9559 MIDDLE 0
3 True 5311 BOTTOM 0
4 True 4345 UTILITY 0
5 True 5388 TOP 0
6 True 6874 JUNGLE 0
7 True 5866 MIDDLE 0
8 True 6334 BOTTOM 0
9 True 4319 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 6692 2033 2055 3158 1036 0 3363
1 0 2031 6631 3158 3082 1029 0 3364
2 0 3040 3020 2031 6656 2420 0 3340
3 0 3508 3158 3070 0 0 1055 3340
4 0 3853 6617 3114 0 0 0 3340
5 0 1055 6672 3006 0 0 0 3340
6 0 2055 3047 3134 1028 6692 0 3513
7 0 3006 2033 6671 2055 1042 0 3363
8 0 3006 6672 0 0 3123 1055 3340
9 0 1033 2055 3857 3067 3111 1029 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 4 2 1
1 1 4 2 1
2 2 8 6 3
3 1 2 2 1
4 0 1 0 1
5 0 0 0 0
6 1 4 2 1
7 1 2 2 1
8 1 2 2 1
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 917 3614 111
1 565 6202 466
2 400 92189 16859
3 365 2937 1194
4 0 3626 2292
5 758 0 0
6 460 16458 1047
7 234 3687 862
8 660 16374 3095
9 793 3736 2163
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 473 0 0 0
1 2700 80 0 0
2 2057 5 0 0
3 2235 8 0 0
4 315 0 0 0
5 669 4 0 0
6 5832 102 0 0
7 6993 0 0 0
8 3095 0 0 0
9 5170 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 54182
1 0 2 82171
2 0 3 6430
3 0 4 40897
4 0 5 1606
5 0 6 54990
6 0 7 59075
7 0 8 48993
8 0 9 32344
9 0 10 5254
physicalDamageDealtToChampions physicalDamageTaken role \
0 8579 6517 SUPPORT
1 5549 12550 SUPPORT
2 976 9771 SUPPORT
3 3513 3680 SUPPORT
4 577 1218 SUPPORT
5 4021 8838 SUPPORT
6 5415 6171 SUPPORT
7 7110 7626 SUPPORT
8 2044 3742 SUPPORT
9 803 4542 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 4 1 12 348
1 2 4 10 11 262
2 3 12 2 4 226
3 2 7 0 4 80
4 5 14 3 3 133
5 3 6 1 4 110
6 9 11 1 4 242
7 3 12 2 4 314
8 2 7 1 4 202
9 4 14 2 4 395
summonerName teamEarlySurrendered teamId teamPosition \
0 Rotome False 100 TOP
1 StalwartHide False 100 JUNGLE
2 Philileo False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 pokemonmaster217 False 100 UTILITY
5 esordraug False 200 TOP
6 mE INt False 200 JUNGLE
7 Xayahri False 200 MIDDLE
8 Feed Poro False 200 BOTTOM
9 G1izzieMcGuire False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 6 1111 59337 8691
1 84 1111 94201 6544
2 27 1111 101004 17836
3 0 1111 46330 4707
4 12 1111 5716 3353
5 3 1111 54990 4021
6 11 1111 92418 6730
7 0 1111 55066 7973
8 9 1111 59146 5242
9 14 1111 14263 3585
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 7110 1383 133 17
1 15539 8163 28 346
2 12135 1942 131 53
3 6190 1151 82 0
4 1533 3095 3 28
5 9507 3594 113 21
6 12097 3645 4 286
7 14840 431 109 12
8 7060 1281 137 101
9 10188 1335 33 90
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 35 1 1540
1 40 1 5828
2 52 1 2385
3 26 3 2495
4 0 5 484
5 65 1 0
6 76 1 16884
7 159 1 2385
8 51 2 10427
9 21 3 5272
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 120 0 1
1 528 288 0 1
2 0 306 1 1
3 0 274 0 1
4 484 0 0 1
5 0 0 0 1
6 268 94 0 1
7 0 220 0 1
8 102 222 1 1
9 618 476 0 1
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 6 2 2 3 True
1 13 3 2 4 True
2 11 0 3 5 True
3 10 0 2 6 True
4 18 0 0 12 True
5 13 1 1 6 False
6 15 3 0 7 False
7 18 3 0 8 False
8 11 1 3 5 False
9 35 7 3 18 False ,
assists baronKills bountyLevel champLevel championName \
0 4 0 0 14 Gnar
1 1 1 0 14 MasterYi
2 5 0 0 15 Anivia
3 4 0 4 14 Jinx
4 13 0 0 12 Sona
5 2 0 0 13 Taric
6 3 0 0 12 Kindred
7 3 0 1 15 Kayle
8 4 0 0 11 Jhin
9 2 0 1 10 Soraka
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 4426 6758 4426
1 771 21933 771
2 1385 5604 1385
3 12454 31737 12454
4 4131 5781 4131
5 0 4348 0
6 0 10581 0
7 3716 3716 3716
8 132 132 132
9 0 264 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 0 0 False False
1 2 1 3 False False
2 0 1 0 False False
3 1 1 1 False False
4 1 5 0 False False
5 3 1 0 False True
6 1 1 0 False False
7 1 0 0 False False
8 4 0 0 False False
9 7 5 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False True False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 8241 TOP 0
1 False 11071 JUNGLE 0
2 False 8326 MIDDLE 0
3 False 13221 BOTTOM 0
4 False 8569 UTILITY 2
5 False 8340 TOP 0
6 False 8726 JUNGLE 0
7 False 10764 MIDDLE 0
8 False 6511 BOTTOM 0
9 False 5976 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1055 6631 3071 0 3047 0 3340
1 0 6691 2031 3006 6676 0 0 3364
2 0 1056 2420 0 3916 3020 6653 3363
3 0 1018 3123 3006 6672 3085 3035 3363
4 0 6616 3853 6617 0 3158 0 3364
5 2 2033 6664 3143 3158 1011 1029 3340
6 2 6671 3094 3006 2015 0 0 3340
7 2 1056 3115 1082 3006 4633 3108 3363
8 2 6671 3009 3134 1018 0 1055 3340
9 2 3853 6617 3158 3114 2055 1052 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 0 0 0
1 1 6 5 4
2 0 0 0 0
3 2 9 5 2
4 0 1 0 1
5 1 4 3 1
6 1 3 3 2
7 0 1 0 1
8 0 0 0 0
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 812 6847 1274
1 1396 6245 0
2 0 58819 8604
3 701 2114 646
4 886 16493 5233
5 1487 32146 4619
6 1723 26217 3652
7 1727 100482 4831
8 815 2919 351
9 712 15800 5551
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 5167 8 0 0
1 4427 170 0 0
2 4403 0 0 0
3 3721 32 0 0
4 3923 0 0 0
5 7050 0 1 0
6 2045 111 1 0
7 3756 32 1 0
8 1212 0 1 0
9 3471 0 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 87298
1 0 2 127042
2 0 3 15721
3 0 4 171166
4 0 5 2318
5 0 6 19831
6 0 7 76374
7 0 8 43271
8 0 9 53821
9 0 10 1669
physicalDamageDealtToChampions physicalDamageTaken role \
0 7185 7866 SOLO
1 6366 12749 NONE
2 352 3813 SOLO
3 20828 8197 CARRY
4 820 4785 SUPPORT
5 2274 10823 SOLO
6 4294 15195 NONE
7 1415 7383 SOLO
8 4506 12279 CARRY
9 467 8190 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 2 12 97
1 17 11 2 4 264
2 2 4 1 12 205
3 4 7 4 4 277
4 2 4 4 3 282
5 4 4 5 6 262
6 11 11 2 4 121
7 1 4 2 12 348
8 4 7 2 4 80
9 4 14 3 4 154
summonerName teamEarlySurrendered teamId teamPosition \
0 Alightfire False 100 TOP
1 giantkevmiester False 100 JUNGLE
2 jindogay False 100 MIDDLE
3 ZhangDumpy5 False 100 BOTTOM
4 CeriseTears False 100 UTILITY
5 StalwartHide False 200 TOP
6 SaranghaeImma False 200 JUNGLE
7 Rotome False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 Glorÿ False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 26 1775 99015 8459
1 1 1775 161698 7618
2 27 1775 87415 9311
3 19 1775 189100 22936
4 12 1775 18812 6054
5 37 1775 59317 6893
6 4 1775 111302 8397
7 3 1775 147512 6454
8 25 1775 56740 4857
9 34 1775 18058 6606
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 14527 2362 131 324
1 19544 9408 16 135
2 8277 1686 154 763
3 12119 3158 186 148
4 8831 13358 20 30
5 18867 8590 114 197
6 17955 9513 33 172
7 11647 5189 232 229
8 13871 2236 91 101
9 12134 10651 13 192
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 79 1 4870
1 37 1 28410
2 0 1 12874
3 27 4 15819
4 21 5 0
5 51 5 7340
6 41 8 8710
7 0 5 3759
8 94 3 0
9 135 5 588
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 1492 0 2
1 1252 2367 0 2
2 354 61 0 2
3 1460 200 7 2
4 0 123 2 2
5 0 994 0 9
6 450 714 0 9
7 207 507 1 9
8 0 379 1 9
9 588 471 0 9
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 13 0 0 9 True
1 18 1 3 5 True
2 26 2 3 9 True
3 14 1 3 8 True
4 70 5 9 28 True
5 20 1 4 10 False
6 32 1 5 10 False
7 13 0 3 7 False
8 10 0 1 6 False
9 50 6 4 27 False ,
assists baronKills bountyLevel champLevel championName \
0 5 0 3 15 Darius
1 9 0 3 15 Sylas
2 9 0 4 16 Pantheon
3 7 0 2 13 Jhin
4 18 0 0 12 Nami
5 10 0 0 13 Ivern
6 7 0 0 14 Malphite
7 7 0 0 15 Ryze
8 6 0 0 14 Ashe
9 13 0 0 11 Bard
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 14725 27164 14725
1 297 17012 297
2 2955 9082 2955
3 5156 8520 5156
4 1533 3527 1533
5 227 227 227
6 2139 2139 2139
7 4754 4754 4754
8 3690 3690 3690
9 750 942 750
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 6 1 0 False False
1 6 1 3 False False
2 5 2 0 False False
3 5 0 1 False False
4 6 6 0 False False
5 10 0 0 True False
6 7 4 0 False True
7 10 0 0 False False
8 8 2 0 True False
9 11 2 0 True False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 True False False
9 True False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 15549 TOP 3
1 False 13349 JUNGLE 0
2 False 13150 MIDDLE 0
3 False 9745 BOTTOM 1
4 False 7678 UTILITY 0
5 False 7828 JUNGLE 0
6 False 7833 TOP 0
7 False 17090 MIDDLE 0
8 False 11846 BOTTOM 0
9 False 7210 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3133 3078 3071 3158 1083 3053 3340
1 0 3157 3082 3041 3020 4636 3024 3364
2 0 6692 2033 3158 3071 3065 1036 3340
3 0 6671 3009 6676 1018 0 1055 3340
4 0 3853 6617 3117 3011 0 0 3364
5 4 1082 4005 3157 3117 3916 0 3364
6 4 2033 3075 3047 3068 0 0 3340
7 4 3157 6656 3020 3089 3041 3040 3340
8 4 6672 3085 1037 3006 3033 1018 3363
9 4 3853 1028 4005 3117 3066 1031 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 4 12 3 2
1 3 13 6 2
2 5 15 4 2
3 3 6 2 2
4 0 0 0 0
5 0 2 0 1
6 0 1 0 1
7 5 18 6 2
8 2 5 2 1
9 0 2 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 487 1040 517
1 575 112086 26244
2 380 3398 1147
3 570 4638 443
4 501 10764 2748
5 472 10363 6177
6 508 50170 7381
7 461 201489 44801
8 576 1223 1223
9 587 18025 8006
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 16736 8 0 0
1 18972 118 0 0
2 15774 12 0 0
3 7241 4 0 0
4 10282 0 0 0
5 5289 98 1 0
6 484 0 1 0
7 7062 24 1 0
8 8301 12 1 0
9 10229 0 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 159658
1 0 2 14786
2 0 3 122417
3 0 4 77178
4 0 5 2922
5 0 6 4615
6 0 7 27089
7 0 8 8926
8 0 9 118071
9 0 10 2517
physicalDamageDealtToChampions physicalDamageTaken role \
0 20317 12821 NONE
1 328 18781 NONE
2 25009 8326 SOLO
3 5551 4745 CARRY
4 318 2826 SUPPORT
5 2259 11986 NONE
6 1272 10852 SOLO
7 1222 21603 SOLO
8 9854 9644 CARRY
9 1624 12907 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 6 6 262
1 16 11 3 4 239
2 5 4 6 14 347
3 2 7 2 4 80
4 4 14 3 4 154
5 17 11 4 4 166
6 2 12 4 4 165
7 7 14 5 4 94
8 3 4 3 1 180
9 5 4 8 14 191
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 StalwartHide False 100 TOP 29
1 Th30rangeDw4rf False 100 JUNGLE 18
2 Rotome False 100 MIDDLE 30
3 Dublaiar False 100 BOTTOM 19
4 Glorÿ False 100 UTILITY 16
5 You Idiot False 200 JUNGLE 30
6 cybermanscott False 200 TOP 22
7 Don Kreg 2 False 200 MIDDLE 21
8 HoIisticDrops False 200 BOTTOM 29
9 twcarp1214 False 200 UTILITY 22
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1748 179643 24907
1 1748 136468 27590
2 1748 132964 26906
3 1748 81816 5995
4 1748 24563 3381
5 1748 265645 8957
6 1748 87101 8780
7 1748 211762 47042
8 1748 134621 12209
9 1748 21770 10858
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 30599 6884 186 123
1 39564 16933 14 432
2 25060 6805 130 67
3 12142 1755 110 69
4 13165 8923 11 160
5 17869 2033 13 123
6 13668 959 132 557
7 30091 6319 165 94
8 18625 291 172 747
9 24260 2716 11 167
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 221 1 18945
1 132 1 9595
2 152 1 7149
3 119 1 0
4 143 5 10876
5 304 1 250667
6 170 1 9841
7 293 1 1347
8 227 1 15326
9 271 5 1228
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 4072 1041 6 3
1 1017 1811 0 3
2 750 959 1 3
3 0 156 2 3
4 314 56 2 3
5 521 593 0 11
6 126 2331 0 11
7 1019 1425 3 11
8 1130 679 0 11
9 1228 1123 0 11
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 21 1 3 11 True
1 19 1 2 2 True
2 10 2 0 6 True
3 8 0 1 5 True
4 73 6 5 30 True
5 12 0 3 4 False
6 18 4 1 9 False
7 10 0 1 7 False
8 22 3 2 9 False
9 27 2 0 16 False ,
assists baronKills bountyLevel champLevel championName \
0 7 0 0 13 Taric
1 7 0 0 13 Sejuani
2 0 0 0 13 Kayle
3 6 0 0 14 Xayah
4 11 0 0 13 Yuumi
5 15 0 1 15 Aatrox
6 21 1 1 16 Skarner
7 9 0 2 16 Akali
8 20 0 6 15 Quinn
9 26 0 0 14 Morgana
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 0 0 0
1 402 4942 402
2 0 826 0
3 2208 2382 2208
4 824 903 824
5 4829 6288 4829
6 1789 35881 1789
7 6350 10062 6350
8 8278 24049 8278
9 2884 3601 2884
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 9 1 0 False False
1 7 1 0 False False
2 8 2 0 False False
3 9 0 0 False False
4 12 2 0 False False
5 4 5 0 False False
6 3 1 2 True False
7 4 2 1 False False
8 4 0 0 True False
9 6 0 1 False True
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False True False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 7319 TOP 0
1 False 8490 JUNGLE 0
2 False 9804 MIDDLE 0
3 False 15222 BOTTOM 0
4 False 7773 UTILITY 0
5 False 10603 TOP 0
6 False 13772 JUNGLE 0
7 False 13905 MIDDLE 0
8 False 14330 BOTTOM 1
9 False 11317 UTILITY 2
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 3 2033 6664 3143 0 3158 0 3340
1 3 3111 2031 3068 1057 3076 1011 3340
2 3 1056 1082 3115 4633 3006 1058 3363
3 3 6671 2420 3072 3508 3046 3006 3340
4 3 3853 2055 2031 6617 6616 3114 3364
5 0 6630 0 3071 0 3047 3076 3340
6 0 3111 3076 6664 3742 4401 1011 3364
7 0 4636 3157 3100 3020 3041 0 3363
8 0 6671 1055 3006 3095 6676 3123 3363
9 0 3853 6656 3157 3165 3020 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 2 0 1
1 1 2 2 2
2 2 5 3 2
3 3 10 3 3
4 1 2 2 1
5 0 2 0 1
6 2 13 7 3
7 3 12 6 2
8 2 13 6 3
9 1 5 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 422 40601 7042
1 603 52767 7233
2 798 69278 7815
3 327 1133 1133
4 493 9432 6676
5 797 785 60
6 962 68089 6883
7 580 110027 26481
8 583 4518 1547
9 322 53260 17936
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 13215 4 1 0
1 11900 95 1 0
2 14724 1 1 0
3 6999 5 1 0
4 7369 0 1 0
5 8575 12 0 0
6 5841 148 0 0
7 7775 4 0 0
8 4712 22 0 0
9 5374 32 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 20285
1 0 2 68095
2 0 3 22860
3 0 4 150063
4 0 5 3572
5 0 6 106504
6 0 7 82708
7 0 8 19150
8 0 9 136882
9 0 10 6884
physicalDamageDealtToChampions physicalDamageTaken role \
0 3702 15463 SOLO
1 6941 19444 NONE
2 3035 10944 SOLO
3 28892 14800 CARRY
4 2162 10642 SUPPORT
5 13824 17598 SOLO
6 8980 21518 NONE
7 1924 12764 SOLO
8 27227 11950 CARRY
9 1713 13246 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 7 6 3 12 15
1 4 4 16 11 179
2 4 4 3 12 347
3 4 7 3 4 25
4 7 3 8 14 26
5 3 4 3 12 143
6 4 4 19 11 304
7 5 14 4 4 507
8 4 4 4 7 328
9 8 14 4 4 10
summonerName teamEarlySurrendered teamId teamPosition \
0 RyeBreadPitt False 100 TOP
1 Coolgum15 False 100 JUNGLE
2 Rotome False 100 MIDDLE
3 salty piss False 100 BOTTOM
4 zonedoutoflane False 100 UTILITY
5 Petr1ch0r00 False 200 TOP
6 JackXJX False 200 JUNGLE
7 Blind Sonic False 200 MIDDLE
8 heh im in dangr False 200 BOTTOM
9 BIind Sonic False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 55 1873 65876 10744
1 26 1873 125559 15093
2 9 1873 101001 10851
3 18 1873 151765 30275
4 17 1873 17498 10492
5 20 1873 115224 13945
6 62 1873 169491 18323
7 2 1873 141080 29527
8 42 1873 143703 29053
9 84 1873 61214 20718
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 29167 9359 93 252
1 32829 6061 23 336
2 26727 5006 150 207
3 22816 3114 177 38
4 18951 15139 22 42
5 26913 12553 160 213
6 28033 11577 14 780
7 21282 4448 203 59
8 17017 6734 130 208
9 18931 5703 23 158
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 264 4 4990
1 195 5 4696
2 235 5 8862
3 192 4 568
4 278 5 4492
5 107 1 7935
6 128 1 18692
7 136 1 11903
8 86 3 2302
9 148 1 1068
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 488 0 10
1 918 1484 0 10
2 0 1058 0 10
3 250 1016 1 10
4 1652 939 0 10
5 60 738 3 1
6 2458 674 1 1
7 1122 743 1 1
8 278 355 4 1
9 1068 310 0 1
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 19 1 2 11 False
1 14 1 1 7 False
2 13 2 0 7 False
3 9 0 1 6 False
4 32 3 1 14 False
5 28 5 1 12 True
6 38 1 2 3 True
7 13 2 2 5 True
8 21 0 0 9 True
9 56 1 3 22 True ,
assists baronKills bountyLevel champLevel championName \
0 2 0 0 11 Annie
1 4 0 0 11 Viego
2 0 0 0 12 Aatrox
3 2 0 0 10 Caitlyn
4 3 0 0 8 Thresh
5 6 0 1 12 Taric
6 8 0 3 11 Sejuani
7 5 0 6 12 Kayle
8 3 0 0 9 Twitch
9 9 0 0 9 Soraka
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 49 49 49
1 0 118 0
2 2509 3587 2509
3 886 886 886
4 53 53 53
5 2173 2672 2173
6 420 19771 420
7 1095 3140 1095
8 63 63 63
9 254 431 254
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 3 1 0 False False
1 4 0 0 False False
2 7 1 0 False False
3 2 0 0 False False
4 4 0 0 False False
5 2 2 0 True False
6 2 1 2 False True
7 0 2 0 False False
8 3 1 0 False False
9 1 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 5873 MIDDLE 0
1 True 6427 JUNGLE 0
2 True 8234 TOP 0
3 True 6020 BOTTOM 0
4 True 3805 UTILITY 0
5 True 7354 TOP 0
6 True 8425 JUNGLE 0
7 True 8072 MIDDLE 0
8 True 5280 BOTTOM 0
9 True 4893 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3020 3070 6655 0 0 0 3340
1 0 6672 2031 3006 1053 0 0 3364
2 0 1054 3111 6630 3053 0 0 3340
3 0 6672 1055 3006 1042 0 0 3340
4 0 3117 3855 3105 3067 0 0 3364
5 0 2033 0 3143 3158 6664 0 3340
6 0 2055 2031 3047 3068 1011 3076 3340
7 0 1056 2031 3006 3115 4635 1026 3363
8 0 1056 1082 3115 3006 0 0 3340
9 0 3853 6617 1001 0 0 0 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 0 1 0 1
1 1 2 2 1
2 0 4 0 1
3 0 1 0 1
4 0 0 0 0
5 1 6 4 1
6 2 6 3 2
7 1 6 6 1
8 0 1 0 1
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 673 36696 5527
1 394 7862 834
2 243 0 0
3 784 90 90
4 340 4784 1716
5 614 36725 8072
6 572 37760 4010
7 0 35430 6875
8 518 4258 1587
9 469 7467 3121
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 2204 0 0 0
1 6964 89 0 0
2 10785 12 0 0
3 2760 0 0 0
4 2974 0 0 0
5 2294 4 0 0
6 3693 87 0 0
7 1609 4 0 0
8 1174 0 0 0
9 729 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 8421
1 0 2 55370
2 0 3 76798
3 0 4 47978
4 0 5 4389
5 0 6 19870
6 0 7 46481
7 0 8 20709
8 0 9 22067
9 0 10 3252
physicalDamageDealtToChampions physicalDamageTaken role \
0 690 2521 SUPPORT
1 7576 9585 SUPPORT
2 15267 11901 SUPPORT
3 3704 3456 SUPPORT
4 674 4030 SUPPORT
5 5196 14023 SUPPORT
6 6076 13062 SUPPORT
7 2531 3110 DUO
8 3313 6569 SUPPORT
9 1458 4354 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 14 2 4 21
1 12 11 3 4 43
2 2 12 3 4 18
3 2 7 1 4 52
4 2 4 3 14 28
5 5 6 3 12 15
6 3 4 12 11 179
7 1 4 1 12 347
8 2 4 2 7 86
9 2 4 3 21 22
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 Ruined D False 100 MIDDLE 16
1 666 SWAN 666 False 100 JUNGLE 9
2 ZayneWins False 100 TOP 19
3 KhaledKattan False 100 BOTTOM 10
4 Armarellion False 100 UTILITY 14
5 RyeBreadPitt False 200 TOP 38
6 Coolgum15 False 200 JUNGLE 17
7 Rotome False 200 MIDDLE 2
8 MrMcMoosers False 200 BOTTOM 7
9 douchiop False 200 UTILITY 23
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1155 47322 6782
1 1155 70057 9524
2 1155 77494 15627
3 1155 48831 3889
4 1155 12624 2731
5 1155 57170 13437
6 1155 94534 10627
7 1155 66285 9407
8 1155 41291 7095
9 1155 10720 4580
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 4965 0 127 121
1 17512 7368 9 198
2 23131 9664 108 277
3 7029 1654 135 17
4 7448 363 29 52
5 16796 8107 82 274
6 17391 6658 18 183
7 5018 2094 123 170
8 8743 931 97 144
9 5143 9842 1 134
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 57 0 2204
1 64 1 6824
2 115 1 696
3 27 1 762
4 55 4 3451
5 62 4 574
6 37 4 10292
7 0 5 10145
8 41 2 14965
9 12 5 0
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 564 239 0 2
1 1113 962 0 2
2 360 444 1 2
3 95 813 0 2
4 340 443 0 2
5 168 479 1 1
6 540 635 0 1
7 0 299 1 1
8 2195 999 0 1
9 0 60 0 1
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 12 1 1 7 False
1 8 0 2 0 False
2 7 1 1 4 False
3 8 0 3 2 False
4 21 0 5 8 False
5 14 2 1 8 True
6 8 3 0 5 True
7 14 2 1 6 True
8 6 1 0 5 True
9 18 0 0 14 True ,
assists baronKills bountyLevel champLevel championName \
0 5 0 0 12 Talon
1 10 0 1 13 Graves
2 6 0 0 14 Yasuo
3 12 0 1 14 Senna
4 11 0 2 13 TwistedFate
5 13 0 0 13 Taric
6 14 0 0 13 Nunu
7 5 0 1 15 Pantheon
8 9 0 0 12 Vayne
9 10 0 0 12 Seraphine
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 60 60 60
1 914 16432 914
2 3214 3868 3214
3 6564 6564 6564
4 7710 7710 7710
5 1486 3564 1486
6 0 4496 0
7 1866 12056 1866
8 544 2995 544
9 36 36 36
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 10 0 0 False False
1 5 0 1 False False
2 10 0 0 False False
3 4 2 0 False False
4 4 0 0 False False
5 4 1 0 False True
6 9 0 1 False False
7 5 2 1 False False
8 11 0 1 False False
9 6 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 True False False
4 False True False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 9123 TOP 0
1 False 9464 JUNGLE 0
2 False 9316 MIDDLE 0
3 False 12549 UTILITY 0
4 False 12278 BOTTOM 1
5 False 8430 TOP 0
6 False 8123 JUNGLE 0
7 False 14513 MIDDLE 0
8 False 6524 BOTTOM 0
9 False 7215 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 6693 2031 3042 3158 3133 0 3340
1 0 6673 2031 3006 6676 0 0 3340
2 0 1055 3086 6673 3006 1018 1038 3340
3 0 3086 6632 3111 2055 3124 3071 3364
4 0 3094 6672 3111 3046 1043 0 3340
5 1 2033 6664 3143 3158 3076 1028 3340
6 1 3047 3067 6664 3076 3211 1028 3364
7 1 6692 2033 3158 3814 3074 6333 3340
8 1 6672 3006 1036 1036 1042 1055 3340
9 1 3853 6617 3158 6616 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 11 4 1
1 0 1 0 1
2 0 3 0 1
3 2 12 5 3
4 3 7 2 2
5 2 5 3 1
6 0 2 0 1
7 5 21 5 3
8 0 2 0 1
9 1 3 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 302 0 0
1 492 7981 348
2 353 11261 943
3 728 0 0
4 403 38591 9635
5 629 35193 7140
6 293 43808 7642
7 525 5332 902
8 295 0 0
9 399 31003 9669
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 6197 0 0 0
1 4077 92 0 0
2 5397 5 0 0
3 4765 4 0 0
4 5693 19 0 0
5 1954 4 1 0
6 4170 92 1 0
7 3221 16 1 0
8 2599 4 1 0
9 841 0 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 56415
1 0 2 101599
2 0 3 101800
3 0 4 63784
4 0 5 69876
5 0 6 22532
6 0 7 15171
7 0 8 107358
8 0 9 29622
9 0 10 2525
physicalDamageDealtToChampions physicalDamageTaken role \
0 17765 13930 SOLO
1 7628 13585 NONE
2 16320 17539 SOLO
3 32115 14535 SUPPORT
4 10844 11905 CARRY
5 4740 22838 SOLO
6 839 28558 NONE
7 28444 19284 SOLO
8 7439 20132 CARRY
9 1084 17031 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 6 14 4 4 27
1 2 4 10 11 37
2 5 14 4 4 105
3 4 3 4 4 201
4 4 7 4 4 15
5 6 6 3 12 15
6 16 11 5 4 24
7 5 4 6 14 347
8 3 7 2 4 78
9 5 4 5 14 133
summonerName teamEarlySurrendered teamId teamPosition \
0 hardstuck345 False 100 TOP
1 Alpacability False 100 JUNGLE
2 Yąsuicide False 100 MIDDLE
3 SnipeosaurusRex False 100 UTILITY
4 Snipeosaurus False 100 BOTTOM
5 RyeBreadPitt False 200 TOP
6 GwenTheDol False 200 JUNGLE
7 Rotome False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 Alece False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 9 1628 58837 18647
1 15 1628 122408 8587
2 28 1628 116674 18036
3 80 1628 64916 32981
4 65 1628 121030 23349
5 44 1628 59296 11881
6 30 1628 99608 9108
7 24 1628 116114 29962
8 4 1628 35254 9218
9 27 1628 34091 11316
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 20466 2141 62 133
1 17770 4954 53 518
2 23456 2280 137 91
3 20589 13311 32 320
4 18926 7815 139 267
5 26764 15028 88 228
6 34340 12983 27 257
7 24031 6583 127 52
8 23269 3569 66 32
9 18227 7320 24 170
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 261 1 2421
1 149 1 12827
2 330 1 3612
3 135 5 1132
4 101 3 12561
5 137 5 1570
6 208 1 40628
7 144 1 3423
8 280 2 5632
9 155 5 562
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 881 338 0 0
1 611 108 0 0
2 772 520 1 0
3 866 1288 3 0
4 2870 1327 4 0
5 0 1972 0 8
6 626 1611 0 8
7 616 1525 0 8
8 1778 537 0 8
9 562 355 0 8
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 6 0 0 4 True
1 3 0 0 1 True
2 8 0 1 4 True
3 37 3 2 16 True
4 11 0 1 5 True
5 17 1 0 9 False
6 7 0 1 0 False
7 24 2 1 7 False
8 11 0 1 7 False
9 5 0 0 3 False ,
assists baronKills bountyLevel champLevel championName \
0 6 0 0 11 Taric
1 8 0 0 12 Ekko
2 5 0 0 13 Pantheon
3 4 0 0 12 Jhin
4 10 0 0 9 Thresh
5 6 0 3 14 Volibear
6 8 0 2 13 Jax
7 11 0 2 13 Lux
8 9 0 4 12 Caitlyn
9 21 0 0 11 Nami
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 389 549 389
1 0 8481 0
2 0 0 0
3 141 1448 141
4 0 149 0
5 4274 10300 4274
6 99 9117 99
7 1592 1705 1592
8 6305 8844 6305
9 1408 1408 1408
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 1 0 False False
1 6 0 2 False False
2 4 2 0 False False
3 4 2 0 False False
4 10 4 0 False False
5 2 3 1 False True
6 4 4 0 True False
7 7 2 0 True False
8 1 2 0 True False
9 2 2 0 True False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 True False False
6 False False False
7 False False False
8 False True False
9 True False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 5510 TOP 0
1 True 8415 JUNGLE 0
2 True 9853 MIDDLE 0
3 True 8635 BOTTOM 0
4 True 5424 UTILITY 0
5 True 10072 TOP 0
6 True 9540 JUNGLE 1
7 True 9814 MIDDLE 0
8 True 10747 BOTTOM 0
9 True 7235 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 2033 6664 3158 3067 1029 0 3340
1 1 3111 3057 2033 1026 3152 3113 3364
2 1 6692 2033 3158 3071 3044 0 3340
3 1 2003 3009 6676 1042 6692 0 3363
4 1 3067 3117 3190 0 2055 3855 3364
5 0 6632 3748 1031 3158 1036 0 3340
6 0 3009 3053 6662 1043 2055 0 3340
7 0 3020 6655 2055 1056 1082 4628 3363
8 0 1055 6671 0 3095 3006 1038 3363
9 0 4005 3504 3158 3853 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 0 0 0
1 1 3 2 1
2 3 9 5 2
3 1 3 3 1
4 0 1 0 1
5 3 8 3 2
6 2 5 2 1
7 3 7 2 2
8 2 10 6 1
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 534 21233 3781
1 437 97134 9982
2 841 1559 144
3 464 7009 119
4 471 8176 5120
5 618 34170 3750
6 388 37334 3017
7 270 88876 20700
8 1114 4236 2302
9 926 13107 8807
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 9932 13 0 0
1 10102 115 0 0
2 9737 0 0 0
3 3202 3 0 0
4 7279 0 0 0
5 5729 16 0 0
6 6780 130 0 0
7 3099 6 0 0
8 2849 8 0 0
9 2248 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 17008
1 0 2 23279
2 0 3 69530
3 0 4 75368
4 0 5 2941
5 0 6 57399
6 0 7 82327
7 0 8 9724
8 0 9 91512
9 0 10 1896
physicalDamageDealtToChampions physicalDamageTaken role \
0 1834 10399 DUO
1 2146 19586 NONE
2 17263 9335 DUO
3 11561 7356 CARRY
4 987 10108 SUPPORT
5 10667 13345 SOLO
6 5911 16599 NONE
7 1364 11222 SOLO
8 18374 7749 CARRY
9 792 5601 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 6 6 2 12 262
1 16 11 3 4 199
2 4 4 5 14 346
3 3 7 3 4 316
4 5 14 4 4 320
5 2 12 4 4 62
6 16 11 4 4 334
7 4 4 3 12 272
8 4 4 5 7 218
9 4 14 4 4 215
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 StalwartHide False 100 TOP 40
1 HonorInWar False 100 JUNGLE 29
2 Rotome False 100 MIDDLE 24
3 PhoenixLilac False 100 BOTTOM 23
4 Smutty Manny False 100 UTILITY 45
5 TIDEHUNTER False 200 TOP 24
6 coolbro87 False 200 JUNGLE 18
7 OujouKnight False 200 MIDDLE 64
8 NovaTornado False 200 BOTTOM 19
9 CoxEater False 200 UTILITY 41
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1578 41591 5616
1 1578 130783 13077
2 1578 72237 18093
3 1578 82377 11681
4 1578 13931 6673
5 1578 91570 14418
6 1578 125790 10104
7 1578 103771 22065
8 1578 97618 20884
9 1578 15495 10091
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 20737 9440 69 166
1 30279 13325 28 590
2 19644 2514 123 48
3 10591 3094 134 143
4 17663 1527 24 114
5 19276 5167 126 201
6 23932 9476 15 259
7 15096 302 143 413
8 11120 2980 133 73
9 7999 10072 11 179
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 166 4 3350
1 110 1 10370
2 103 5 1148
3 87 3 0
4 215 5 2812
5 66 1 0
6 84 1 6129
7 182 1 5171
8 33 3 1870
9 36 5 492
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 404 0 5
1 948 590 0 5
2 686 571 0 5
3 0 32 0 5
4 566 275 0 5
5 0 202 1 0
6 1175 552 0 0
7 0 774 1 0
8 208 522 3 0
9 492 150 0 0
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 19 2 2 9 False
1 17 0 4 2 False
2 15 2 3 6 False
3 17 2 1 9 False
4 33 6 5 20 False
5 25 3 3 8 True
6 25 5 2 11 True
7 16 3 1 11 True
8 27 2 4 9 True
9 57 2 5 24 True ,
assists baronKills bountyLevel champLevel championName \
0 7 0 0 17 Nasus
1 14 1 0 15 Taric
2 6 0 0 17 Lucian
3 7 0 8 16 Sivir
4 10 0 0 14 Veigar
5 2 0 0 15 Fiora
6 15 0 0 16 Kayn
7 11 0 0 15 Fizz
8 4 0 0 15 Kaisa
9 12 0 0 12 Camille
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 8355 13444 8355
1 607 15217 607
2 5859 11885 5859
3 7820 20873 7820
4 1346 3843 1346
5 6251 7812 6251
6 104 11957 104
7 2420 2650 2420
8 1879 4116 1879
9 1132 2442 1132
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 1 0 False False
1 5 1 3 False False
2 6 1 0 False True
3 4 1 0 False False
4 5 6 0 False False
5 6 0 0 False False
6 5 1 1 False False
7 7 1 0 False False
8 8 1 1 False False
9 6 4 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False True False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 13063 TOP 0
1 True 9658 JUNGLE 0
2 True 16441 MIDDLE 1
3 True 15058 BOTTOM 0
4 True 8728 UTILITY 0
5 True 11430 TOP 0
6 True 11699 JUNGLE 0
7 True 12220 MIDDLE 0
8 True 14977 BOTTOM 0
9 True 7320 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 6632 3158 3110 3075 3067 3211 3340
1 0 2033 6664 3143 3158 3076 1011 3364
2 0 3072 3006 6672 3153 3508 3133 3340
3 0 3134 3006 3042 6691 6694 1037 3363
4 0 3158 3190 3857 3742 0 0 3364
5 1 6630 2031 3508 3047 3053 1031 3340
6 1 3071 2031 6630 3158 3123 3044 3364
7 1 2033 3157 3165 3158 3057 6655 3363
8 1 6672 6676 3033 3036 3006 0 3340
9 1 3857 2031 3123 6632 3111 3044 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 6 4 4
1 0 1 0 1
2 3 11 4 1
3 2 11 8 3
4 0 3 0 1
5 1 5 4 1
6 0 3 0 1
7 1 6 4 2
8 4 13 6 2
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 539 50031 10457
1 486 57699 3948
2 735 5924 2042
3 547 0 0
4 378 11666 5120
5 602 1260 710
6 706 9538 0
7 737 89605 14542
8 383 11604 4867
9 491 236 236
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 5595 0 0 0
1 3831 119 0 0
2 6377 28 0 0
3 2127 12 0 0
4 3878 0 0 0
5 5669 0 0 0
6 7362 163 0 0
7 2473 0 0 0
8 3947 4 0 0
9 4686 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 125053
1 0 2 32573
2 0 3 175436
3 0 4 212767
4 0 5 4171
5 0 6 111813
6 0 7 157745
7 0 8 16451
8 0 9 162903
9 0 10 19039
physicalDamageDealtToChampions physicalDamageTaken role \
0 20032 28150 SOLO
1 2402 14380 NONE
2 30260 14030 SOLO
3 33718 9083 CARRY
4 743 7821 SUPPORT
5 12757 25144 SOLO
6 13402 35344 NONE
7 2290 18304 SOLO
8 15569 17334 CARRY
9 7074 19750 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 12 4 4 85
1 7 6 17 11 261
2 6 14 5 4 184
3 4 7 3 4 131
4 3 4 4 14 346
5 3 12 2 4 228
6 4 4 19 11 135
7 7 14 4 4 330
8 5 4 5 7 346
9 4 14 4 4 251
summonerName teamEarlySurrendered teamId teamPosition \
0 MagicManiac77 False 100 TOP
1 StalwartHide False 100 JUNGLE
2 Valmasta False 100 MIDDLE
3 Connect the Q False 100 BOTTOM
4 Rotome False 100 UTILITY
5 BadwomanPilipili False 200 TOP
6 EliteFourJosh False 200 JUNGLE
7 Blue Eyes False 200 MIDDLE
8 columbo False 200 BOTTOM
9 hold the doge False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 13 1871 178090 30489
1 25 1871 100187 7214
2 3 1871 201331 37164
3 2 1871 213211 33876
4 21 1871 19987 6526
5 6 1871 127079 22322
6 25 1871 179521 14288
7 15 1871 116232 18019
8 0 1871 188787 22799
9 15 1871 27829 9808
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 44114 6343 212 671
1 20454 11227 17 340
2 21952 3290 201 73
3 12363 4867 236 33
4 12179 277 40 60
5 31995 16982 197 85
6 43942 22556 16 309
7 22267 2860 168 211
8 22256 6371 249 43
9 26101 4553 41 75
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 236 1 3005
1 145 5 9914
2 229 1 19970
3 73 4 444
4 113 4 4148
5 198 18 14004
6 130 1 12238
7 200 1 10175
8 214 4 14278
9 182 1 8553
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 10368 1 4
1 864 2242 0 4
2 4861 1543 3 4
3 158 1152 3 4
4 662 479 2 4
5 8854 1181 2 9
6 886 1236 0 9
7 1186 1489 1 9
8 2362 974 1 9
9 2497 1664 0 9
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 8 1 0 6 True
1 22 1 2 2 True
2 22 1 0 10 True
3 27 1 4 11 True
4 67 6 8 26 True
5 12 0 0 7 False
6 14 2 2 1 False
7 25 1 4 9 False
8 18 1 1 10 False
9 56 4 10 22 False ,
assists baronKills bountyLevel champLevel championName \
0 10 0 1 11 Taric
1 9 0 4 11 Zac
2 7 0 6 12 Pantheon
3 1 0 1 10 Vayne
4 7 0 3 9 Neeko
5 0 0 0 10 Urgot
6 2 0 0 9 XinZhao
7 1 0 0 9 Sylas
8 1 0 0 9 Ezreal
9 3 0 0 8 Nautilus
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2069 2116 2069
1 0 7624 0
2 848 2375 848
3 2955 4477 2955
4 596 3855 596
5 1030 1030 1030
6 0 11108 0
7 0 0 0
8 264 264 264
9 0 0 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 1 2 0 False False
1 0 2 2 False False
2 1 1 0 False False
3 2 0 0 False False
4 3 0 0 False False
5 4 0 0 False False
6 3 2 0 True False
7 6 1 0 False True
8 4 0 0 False False
9 6 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False True False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 6174 TOP 0
1 True 7184 JUNGLE 0
2 True 6678 MIDDLE 0
3 True 6332 BOTTOM 0
4 True 6595 UTILITY 0
5 True 4804 TOP 0
6 True 5383 JUNGLE 0
7 True 4225 MIDDLE 0
8 True 6529 BOTTOM 0
9 True 3989 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 2033 6664 3067 3158 1029 1029 3340
1 0 0 3158 6664 1026 1052 1011 3364
2 0 6692 2033 3158 0 0 0 3340
3 0 1055 3153 3006 0 0 0 3340
4 0 3853 6656 3009 3108 0 0 3364
5 0 6029 1054 3067 1001 3076 1036 3340
6 0 3047 0 2031 6692 0 0 3340
7 0 3158 2033 1029 1082 3802 1028 3340
8 0 2055 3070 3508 1055 3158 3133 3340
9 0 3859 2055 3105 3117 0 1028 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 3 2 1
1 1 4 4 2
2 1 6 6 1
3 1 4 2 1
4 2 6 3 2
5 0 1 0 1
6 0 1 0 1
7 0 1 0 1
8 1 3 2 1
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 798 21255 3805
1 0 81041 6301
2 203 824 155
3 502 74 74
4 419 24949 8378
5 597 42 27
6 798 7347 370
7 362 20512 3106
8 340 5931 1514
9 246 5755 2816
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 1153 0 0 0
1 3156 116 0 0
2 2390 4 0 0
3 1473 0 0 0
4 2015 0 0 0
5 4362 0 0 0
6 3473 80 0 0
7 3648 0 0 0
8 3933 0 0 0
9 4563 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 18462
1 0 2 15056
2 0 3 54642
3 0 4 37787
4 0 5 3073
5 0 6 34852
6 0 7 45179
7 0 8 4586
8 0 9 44102
9 0 10 4144
physicalDamageDealtToChampions physicalDamageTaken role \
0 2166 6440 SUPPORT
1 850 9490 SUPPORT
2 11341 5309 SUPPORT
3 3796 3868 SUPPORT
4 1235 5755 SUPPORT
5 4807 4882 SUPPORT
6 4408 8811 SUPPORT
7 219 8350 SUPPORT
8 4542 2951 DUO
9 1177 4062 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 6 2 12 261
1 1 4 13 11 38
2 2 4 3 14 346
3 1 7 1 4 388
4 15 4 4 14 408
5 2 12 2 4 314
6 10 11 2 4 297
7 2 14 3 4 391
8 3 4 3 7 269
9 3 14 3 4 190
summonerName teamEarlySurrendered teamId teamPosition \
0 StalwartHide False 100 TOP
1 techno kittie False 100 JUNGLE
2 Rotome False 100 MIDDLE
3 CattyFish False 100 BOTTOM
4 Niir False 100 UTILITY
5 pkhqasian123 False 200 TOP
6 Smashing Pollock False 200 JUNGLE
7 Curious Bigfoot False 200 MIDDLE
8 Chris Peaçock False 200 BOTTOM
9 AutoFire False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 27 1034 45453 5972
1 31 1034 102731 7676
2 13 1034 55809 11839
3 0 1034 42020 4398
4 46 1034 30651 10122
5 12 1034 38248 5014
6 7 1034 62559 4997
7 7 1034 25464 3691
8 0 1034 52418 6056
9 28 1034 14477 4352
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 7852 5621 83 141
1 13047 21145 15 491
2 8059 1612 102 19
3 5446 1621 95 1
4 7770 220 38 199
5 9516 1 87 71
6 12385 5954 10 248
7 12628 1126 70 159
8 7290 1093 134 0
9 9122 0 24 142
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 32 4 5735
1 0 5 6634
2 10 1 342
3 42 2 4158
4 58 1 2627
5 85 1 3354
6 57 1 10032
7 115 1 366
8 79 2 2385
9 107 0 4577
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 258 0 0
1 524 400 0 0
2 342 359 0 0
3 528 104 1 0
4 508 0 0 0
5 179 271 0 1
6 218 100 0 1
7 366 629 0 1
8 0 406 0 1
9 358 496 0 1
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 11 2 1 7 True
1 14 2 1 5 True
2 10 1 1 4 True
3 8 0 1 5 True
4 27 0 5 9 True
5 7 0 0 5 False
6 16 2 4 6 False
7 5 1 0 5 False
8 6 1 0 4 False
9 17 1 1 8 False ,
assists baronKills bountyLevel champLevel championName \
0 9 0 3 16 Lucian
1 15 0 7 18 RekSai
2 13 0 0 15 Sylas
3 19 0 0 15 Ezreal
4 19 0 1 14 Zyra
5 2 0 1 16 Renekton
6 6 0 0 14 Nunu
7 5 0 0 14 Veigar
8 2 0 0 14 Vayne
9 16 0 0 14 Taric
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 5852 11817 5852
1 1018 34062 1018
2 201 2242 201
3 6551 9562 6551
4 1580 6359 1580
5 3678 7032 3678
6 0 6458 0
7 0 47 0
8 1785 4137 1785
9 134 1680 134
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 6 2 1 False False
1 2 3 2 False True
2 7 1 0 False False
3 9 0 1 False False
4 5 6 0 False False
5 7 0 0 False False
6 6 0 0 False False
7 8 2 0 False False
8 12 0 0 False False
9 11 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False True False
2 False False False
3 True False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 11662 TOP 0
1 False 19768 JUNGLE 0
2 False 9574 MIDDLE 0
3 False 12976 BOTTOM 1
4 False 9383 UTILITY 0
5 False 15370 TOP 0
6 False 9323 JUNGLE 0
7 False 8434 MIDDLE 0
8 False 12875 BOTTOM 0
9 False 8170 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 6672 3031 3508 3006 0 0 3340
1 0 3026 6631 3071 3053 3075 3047 3364
2 0 3158 2031 6656 3157 1082 3067 3340
3 0 3042 3158 3508 6691 3035 3133 3340
4 0 3853 6653 3020 0 1052 3157 3364
5 1 6631 3053 3153 3076 3047 6333 3363
6 1 3047 3068 3075 3067 3211 0 3364
7 1 1082 6656 1058 2055 3020 1058 3363
8 1 1043 6672 3006 3046 3124 1053 3340
9 1 3860 3190 3042 3047 3024 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 8 4 1
1 3 23 14 3
2 1 3 2 1
3 3 7 3 2
4 0 3 0 2
5 5 14 3 2
6 0 3 0 1
7 0 1 0 1
8 3 10 2 2
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 604 6538 1139
1 910 10104 380
2 760 92312 14016
3 346 20708 10238
4 880 45949 14951
5 587 5912 4121
6 346 77199 8930
7 618 80812 12063
8 290 0 0
9 481 18353 4837
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 4068 13 0 0
1 12200 165 0 0
2 12010 20 0 0
3 2845 24 0 0
4 1728 0 0 0
5 13034 8 1 0
6 8064 114 1 0
7 7425 0 1 0
8 5460 8 1 0
9 8277 0 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 135119
1 0 2 168003
2 0 3 8477
3 0 4 137569
4 0 5 3900
5 0 6 146433
6 0 7 18379
7 0 8 10967
8 0 9 93484
9 0 10 15841
physicalDamageDealtToChampions physicalDamageTaken role \
0 13817 12113 NONE
1 26122 20001 NONE
2 121 13105 SOLO
3 20788 11651 CARRY
4 673 7148 SUPPORT
5 24113 17504 SOLO
6 478 17351 NONE
7 785 11465 SOLO
8 13044 16280 CARRY
9 2395 16792 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 3 12 21
1 19 11 4 4 20
2 5 14 4 4 25
3 5 7 4 4 25
4 4 4 6 14 208
5 6 14 5 4 20
6 5 4 19 11 15
7 4 4 3 12 345
8 5 4 4 7 29
9 5 4 5 14 23
summonerName teamEarlySurrendered teamId teamPosition \
0 FromTheLef False 100 TOP
1 Irythyll False 100 JUNGLE
2 Slinnshady16 False 100 MIDDLE
3 isweariltakeyaho False 100 BOTTOM
4 Queen of Doom False 100 UTILITY
5 The MegaGigaChad False 200 TOP
6 RyeBreadPitt False 200 JUNGLE
7 Rotome False 200 MIDDLE
8 HAYIRL9BAYRAMLAR False 200 BOTTOM
9 GndrBndr False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1 1849 155374 16324
1 51 1849 218941 36272
2 26 1849 107094 15107
3 3 1849 159139 31427
4 43 1849 52156 16363
5 26 1849 153349 29238
6 26 1849 150777 10052
7 34 1849 91780 12849
8 4 1849 134479 19271
9 20 1849 46169 8255
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 17808 3978 167 32
1 36319 20327 65 516
2 27037 5693 143 265
3 15195 1473 166 40
4 9408 970 34 153
5 33341 6030 195 97
6 28342 11674 41 411
7 20254 1955 153 107
8 24744 4659 193 8
9 28218 10275 40 58
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 172 1 13715
1 55 1 40833
2 272 1 6305
3 282 3 862
4 165 1 2306
5 301 1 1004
6 181 1 55200
7 291 1 0
8 310 3 40994
9 265 5 11974
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1367 1626 4 2
1 9769 4117 2 2
2 970 1922 0 2
3 400 699 1 2
4 738 532 0 2
5 1004 2803 1 7
6 644 2926 0 7
7 0 1364 0 7
8 6227 3003 1 7
9 1022 3148 0 7
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 19 2 0 7 True
1 44 4 10 5 True
2 26 1 2 11 True
3 5 0 0 3 True
4 70 6 6 31 True
5 14 0 1 8 False
6 12 0 2 1 False
7 10 3 0 8 False
8 23 0 6 10 False
9 30 3 1 15 False ,
assists baronKills bountyLevel champLevel championName \
0 10 0 5 16 Gwen
1 6 2 0 15 Ekko
2 10 0 0 16 Veigar
3 15 0 0 16 Lucian
4 23 0 1 16 Nautilus
5 4 0 0 14 Camille
6 9 0 0 14 Sylas
7 11 0 0 14 Ziggs
8 4 0 0 14 Kalista
9 9 0 0 13 Sett
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 9399 24010 9399
1 675 33391 675
2 4220 16302 4220
3 2718 20456 2718
4 248 1855 248
5 0 1208 0
6 0 1380 0
7 2072 4606 2072
8 4864 4864 4864
9 1367 1854 1367
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 0 0 False False
1 5 5 2 False False
2 4 3 0 False False
3 7 2 2 False False
4 3 3 0 False False
5 12 0 0 False True
6 10 0 0 True False
7 8 0 0 False False
8 8 1 0 False False
9 13 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 True False False
9 False True False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 14961 TOP 1
1 False 11031 JUNGLE 0
2 False 14266 MIDDLE 0
3 False 15856 BOTTOM 0
4 False 10670 UTILITY 0
5 False 9496 TOP 0
6 False 11124 JUNGLE 0
7 False 10921 MIDDLE 0
8 False 11254 BOTTOM 0
9 False 8971 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1056 4633 3047 3040 4629 0 3340
1 0 3157 3152 3100 1082 3020 0 3364
2 0 3066 6656 3089 3020 1082 3135 3363
3 0 3508 6672 3006 3031 6675 1036 3363
4 0 2055 3190 3860 3117 3075 3109 3364
5 1 3074 3078 3123 1028 1036 3111 3340
6 1 6656 2031 3111 4629 3165 0 3340
7 1 3165 1058 6655 3020 1058 0 3340
8 1 1055 6673 3006 3085 3036 2055 3363
9 1 6664 3857 4401 3076 3047 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 12 6 2
1 2 6 2 2
2 3 13 7 2
3 3 14 6 3
4 1 6 4 1
5 1 5 2 2
6 1 4 2 1
7 1 6 3 2
8 0 4 0 1
9 2 5 2 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 887 72697 14637
1 528 106380 6942
2 1148 131130 25730
3 530 1568 976
4 691 13685 7554
5 331 1177 1177
6 358 105824 18094
7 579 80311 24462
8 529 904 341
9 329 5204 1704
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 13754 30 0 0
1 9938 137 0 0
2 9588 16 0 0
3 9734 13 0 0
4 6876 0 0 0
5 9603 8 1 0
6 16830 106 1 0
7 7410 0 1 0
8 9898 32 1 0
9 14670 0 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 40476
1 0 2 31109
2 0 3 11945
3 0 4 151257
4 0 5 9856
5 0 6 76575
6 0 7 11893
7 0 8 12461
8 0 9 117822
9 0 10 22028
physicalDamageDealtToChampions physicalDamageTaken role \
0 6598 17652 NONE
1 2054 22296 NONE
2 1169 5317 SOLO
3 35409 12815 CARRY
4 3399 9376 SUPPORT
5 11307 16311 DUO
6 42 21137 NONE
7 893 11447 DUO
8 11994 12356 CARRY
9 9216 12192 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 4 12 261
1 16 11 3 4 246
2 4 4 3 12 344
3 4 4 5 7 251
4 3 4 7 14 285
5 7 14 4 12 272
6 13 11 4 4 201
7 4 21 5 4 331
8 4 4 6 7 288
9 6 14 8 4 182
summonerName teamEarlySurrendered teamId teamPosition \
0 StalwartHide False 100 TOP
1 a melancholy boi False 100 JUNGLE
2 Rotome False 100 MIDDLE
3 MySkillsFail False 100 BOTTOM
4 skjason False 100 UTILITY
5 Hentai Milf False 200 TOP
6 Sneaky in lane False 200 JUNGLE
7 ChocoVanilStraw False 200 MIDDLE
8 Sleeping Slave False 200 BOTTOM
9 Bobboobboo False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 4 1858 153833 31336
1 7 1858 156585 9523
2 36 1858 143806 27080
3 2 1858 167058 40639
4 78 1858 28833 12064
5 19 1858 94121 16638
6 30 1858 125522 18647
7 20 1858 96091 25628
8 10 1858 125852 12558
9 25 1858 39267 14390
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 35167 16246 137 57
1 32833 17932 20 499
2 16375 2690 153 118
3 24221 7909 200 30
4 17499 2333 39 304
5 31097 1938 128 142
6 42321 14482 45 454
7 20753 3033 126 164
8 23761 6241 156 135
9 30095 648 48 83
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 173 1 40659
1 120 1 19096
2 178 1 730
3 251 3 14232
4 69 1 5291
5 402 1 16368
6 285 1 7804
7 261 1 3319
8 224 4 7125
9 338 1 12034
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 10100 3759 5 3
1 526 598 0 3
2 180 1470 1 3
3 4253 1672 1 3
4 1110 1246 0 3
5 4153 5181 0 8
6 510 4353 0 8
7 271 1896 0 8
8 221 1506 2 8
9 3469 3232 1 8
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 18 0 1 10 True
1 35 5 5 6 True
2 20 3 1 10 True
3 35 2 4 12 True
4 48 5 5 18 True
5 11 0 2 7 False
6 15 0 1 7 False
7 15 0 1 10 False
8 21 3 1 10 False
9 44 2 8 18 False ,
assists baronKills bountyLevel champLevel championName \
0 13 0 0 16 Rumble
1 8 0 3 15 FiddleSticks
2 13 0 0 15 Lucian
3 7 0 7 16 Caitlyn
4 23 0 0 14 Janna
5 9 0 0 15 DrMundo
6 5 0 0 14 Nocturne
7 5 0 0 15 Veigar
8 2 0 1 15 Ezreal
9 8 0 0 13 Chogath
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2604 8625 2604
1 1542 15240 1542
2 2275 5420 2275
3 6643 15974 6643
4 3170 4169 3170
5 1414 4903 1414
6 0 7113 0
7 0 0 0
8 1317 1762 1317
9 0 1137 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 2 1 False True
1 4 0 1 False False
2 8 0 0 False False
3 2 3 0 False False
4 3 6 0 False False
5 7 2 0 False False
6 8 1 1 False False
7 7 0 0 False False
8 6 5 0 False False
9 8 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 True False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 14156 TOP 1
1 False 12479 JUNGLE 0
2 False 11915 MIDDLE 0
3 False 14637 BOTTOM 1
4 False 9935 UTILITY 0
5 False 10786 TOP 0
6 False 10792 JUNGLE 0
7 False 10161 MIDDLE 0
8 False 11339 BOTTOM 0
9 False 8365 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1054 1058 3020 4633 3135 4637 3363
1 0 2031 3152 2420 3020 3135 4637 3330
2 0 3006 6671 3031 3508 0 0 3340
3 0 3095 3031 6671 3086 1055 3006 3363
4 0 3853 2065 3158 3011 2055 3114 3364
5 2 1054 3068 3075 4401 3111 1028 3364
6 2 6631 3133 3158 3053 3067 1036 3340
7 2 1056 6656 3089 3191 3020 0 3363
8 2 3133 1055 3035 3042 3508 3158 3363
9 2 6664 3083 3047 1029 1029 3860 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 3 13 4 3
1 2 8 4 2
2 0 3 0 1
3 1 8 7 2
4 1 4 2 1
5 1 3 3 1
6 1 8 5 1
7 0 3 0 1
8 1 5 2 1
9 1 3 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 758 142936 41442
1 856 144032 23232
2 876 2227 1482
3 668 5012 2290
4 1254 31344 14552
5 553 68446 14685
6 947 10328 1306
7 464 93440 17294
8 513 15573 6776
9 724 51651 9005
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 16565 16 0 0
1 11064 134 0 0
2 10461 20 0 0
3 6966 51 0 0
4 7883 2 0 0
5 25959 0 1 0
6 16715 118 1 0
7 11032 4 1 0
8 8780 12 1 0
9 22231 7 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 14555
1 0 2 10347
2 0 3 138885
3 0 4 217133
4 0 5 3770
5 0 6 29647
6 0 7 122567
7 0 8 13351
8 0 9 107648
9 0 10 6661
physicalDamageDealtToChampions physicalDamageTaken role \
0 1560 12437 SOLO
1 126 20198 NONE
2 29626 11730 SOLO
3 24922 9454 CARRY
4 964 5859 SUPPORT
5 4132 16219 SOLO
6 12308 21115 NONE
7 447 10404 SOLO
8 10012 8661 CARRY
9 450 23238 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 6 14 3 12 436
1 12 11 4 4 335
2 5 4 5 12 315
3 2 4 5 7 298
4 5 4 5 14 375
5 4 4 4 12 261
6 6 4 11 11 195
7 4 4 1 12 344
8 6 7 4 4 291
9 6 4 5 14 127
summonerName teamEarlySurrendered teamId teamPosition \
0 Gordge Bush False 100 TOP
1 FakeEmOut False 100 JUNGLE
2 Atlandis False 100 MIDDLE
3 KingBoo9911 False 100 BOTTOM
4 Vindex ex Focis False 100 UTILITY
5 StalwartHide False 200 TOP
6 The Smaller Fish False 200 JUNGLE
7 Rotome False 200 MIDDLE
8 Pantone 16 1546 False 200 BOTTOM
9 Ilea False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 22 1890 165842 48603
1 57 1890 164751 23796
2 1 1890 146316 32009
3 12 1890 222380 27447
4 61 1890 35791 16192
5 18 1890 120019 18818
6 166 1890 139108 13859
7 34 1890 109287 17741
8 0 1890 133142 16788
9 69 1890 71029 12114
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 29574 4978 163 325
1 32744 17134 39 816
2 22654 2535 197 33
3 16420 7750 224 72
4 14129 10010 14 233
5 45984 13490 167 183
6 38661 13461 33 527
7 22124 3034 180 89
8 17900 3888 191 0
9 47537 5570 69 375
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 125 1 8350
1 125 1 10372
2 339 1 5203
3 60 2 234
4 68 14 676
5 203 1 21926
6 282 1 6212
7 256 1 2495
8 183 3 9920
9 211 1 12716
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 5600 572 1 0
1 438 1482 1 0
2 901 462 0 0
3 234 0 2 0
4 676 386 3 0
5 0 3805 0 10
6 244 830 0 10
7 0 687 0 10
8 0 459 0 10
9 2658 2067 0 10
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 18 4 1 11 True
1 56 0 4 0 True
2 15 0 1 8 True
3 23 3 2 11 True
4 76 7 6 35 True
5 18 2 3 7 False
6 21 2 3 10 False
7 6 2 1 4 False
8 28 5 4 16 False
9 12 0 1 6 False ,
assists baronKills bountyLevel champLevel championName \
0 8 0 0 15 Jax
1 2 0 1 16 Mordekaiser
2 5 0 1 17 Gwen
3 6 0 0 15 Samira
4 12 0 0 14 Nautilus
5 8 0 0 17 Vladimir
6 13 0 1 16 Poppy
7 7 0 1 18 Kayle
8 16 0 1 15 Jhin
9 19 0 0 14 Sion
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2035 2035 2035
1 1593 20554 1593
2 401 6726 401
3 1575 3971 1575
4 0 0 0
5 2744 7710 2744
6 1413 11382 1413
7 7615 11187 7615
8 7327 7327 7327
9 1686 3818 1686
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 10 1 0 False False
1 6 2 1 False False
2 7 7 1 False False
3 11 2 0 False False
4 9 4 0 False False
5 5 0 0 False True
6 4 0 2 False False
7 2 0 0 False False
8 7 0 0 False False
9 10 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 True False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 9111 TOP 0
1 True 12645 JUNGLE 0
2 True 13741 MIDDLE 0
3 True 14990 BOTTOM 0
4 True 7646 UTILITY 0
5 True 13794 TOP 0
6 True 12541 JUNGLE 0
7 True 15998 MIDDLE 1
8 True 13850 BOTTOM 0
9 True 8877 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 3078 3111 3153 3123 1028 0 3340
1 1 4633 1029 3111 4637 3116 3108 3364
2 1 2421 3115 3111 4633 4629 3191 3340
3 1 3031 2055 3033 6673 3006 6676 3363
4 1 3860 3075 3190 0 3047 0 3364
5 0 6653 3157 3158 4629 3102 0 3340
6 0 3053 2031 3047 3742 3001 3211 3340
7 0 4632 3041 3006 3115 4633 3089 3340
8 0 1054 6692 3094 3009 3031 3033 3340
9 0 3857 6693 3109 3076 3047 1028 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 2 0 1
1 1 4 2 1
2 3 8 3 1
3 4 13 3 2
4 0 1 0 1
5 3 9 3 1
6 2 10 6 2
7 2 13 9 3
8 2 9 3 1
9 0 2 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 396 15319 2663
1 603 193439 22491
2 458 97225 18699
3 538 10428 2850
4 542 13093 4797
5 600 170148 34679
6 848 13737 1466
7 913 165484 23132
8 533 10840 3246
9 536 5554 842
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 13299 0 0 0
1 18528 176 0 0
2 17224 10 0 0
3 8953 9 0 0
4 7846 0 0 0
5 12632 17 0 0
6 10872 139 0 0
7 11510 35 0 0
8 6091 12 0 0
9 12057 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 67868
1 0 2 23729
2 0 3 44749
3 0 4 145398
4 0 5 6277
5 0 6 15941
6 0 7 104044
7 0 8 47941
8 0 9 130444
9 0 10 56514
physicalDamageDealtToChampions physicalDamageTaken role \
0 7615 8230 SOLO
1 2156 24571 NONE
2 5448 19986 SOLO
3 31124 19235 CARRY
4 1659 12070 SUPPORT
5 1160 20230 SOLO
6 12410 13898 NONE
7 5465 10045 SOLO
8 22030 13458 CARRY
9 12254 17138 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 12 5 4 204
1 17 11 2 4 108
2 5 4 4 12 73
3 5 7 4 4 311
4 6 14 5 4 274
5 5 4 7 6 260
6 17 11 5 4 136
7 3 4 3 12 343
8 4 4 4 7 236
9 3 14 3 4 192
summonerName teamEarlySurrendered teamId teamPosition \
0 Piratejack99 False 100 TOP
1 TooBanana False 100 JUNGLE
2 MX5JP False 100 MIDDLE
3 Silver AD False 100 BOTTOM
4 castle mt18 False 100 UTILITY
5 StalwartHide False 200 TOP
6 SlothoftheAbyss False 200 JUNGLE
7 Rotome False 200 MIDDLE
8 Negi Valentine False 200 BOTTOM
9 MoistureCreature False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 17 1956 88287 10279
1 13 1956 233570 28233
2 13 1956 192382 31516
3 3 1956 160760 34498
4 46 1956 24805 7222
5 9 1956 193484 35839
6 32 1956 129436 15892
7 7 1956 218801 29526
8 20 1956 143779 25277
9 39 1956 69417 13765
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 22417 2293 132 95
1 43910 17274 67 289
2 37774 14835 240 193
3 28827 5741 205 6
4 20629 0 37 219
5 37308 38657 200 127
6 27073 7789 9 640
7 23980 15080 246 324
8 21053 7808 189 135
9 30765 0 62 385
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 292 1 5100
1 194 1 16401
2 246 1 50407
3 318 3 4934
4 298 0 5433
5 194 1 7395
6 164 1 11655
7 88 5 5375
8 221 3 2495
9 268 0 7348
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 887 1 7
1 3585 810 0 7
2 7368 562 0 7
3 524 638 0 7
4 766 712 0 7
5 0 4445 0 1
6 2015 2302 0 1
7 928 2424 4 1
8 0 1503 1 1
9 668 1570 1 1
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 14 1 0 8 False
1 37 4 4 6 False
2 35 7 2 18 False
3 8 4 0 6 False
4 53 4 3 24 False
5 23 0 2 11 True
6 24 0 5 8 True
7 19 0 3 10 True
8 21 0 2 11 True
9 55 1 4 23 True ,
assists baronKills bountyLevel champLevel championName \
0 1 0 0 14 Yorick
1 1 0 0 11 LeeSin
2 1 0 0 13 Yone
3 1 0 0 10 Blitzcrank
4 0 0 0 11 Tristana
5 1 0 2 14 Darius
6 4 0 5 12 Poppy
7 5 0 2 15 Kayle
8 5 0 7 13 Samira
9 11 0 1 12 Shaco
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3913 3913 3913
1 0 17326 0
2 838 1021 838
3 558 679 558
4 2134 3873 2134
5 880 5541 880
6 125 6008 125
7 989 4513 989
8 6391 10371 6391
9 4105 5287 4105
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 2 1 0 False True
1 3 3 1 True False
2 4 2 0 False False
3 4 1 0 False False
4 4 3 0 False False
5 2 0 0 False False
6 0 0 1 False False
7 0 1 0 False False
8 0 0 1 False False
9 1 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False True False
9 True False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 8902 TOP 0
1 True 7263 JUNGLE 0
2 True 7985 MIDDLE 0
3 True 4765 UTILITY 0
4 True 7287 BOTTOM 0
5 True 8082 TOP 0
6 True 8167 JUNGLE 0
7 True 8968 MIDDLE 0
8 True 10417 BOTTOM 0
9 True 6478 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3078 2033 3047 3044 1037 1028 3340
1 0 2031 6630 1036 3133 3047 0 3340
2 0 3006 6673 1018 1037 1055 0 3340
3 0 3860 3190 0 3047 0 0 3364
4 0 1055 6672 3006 3086 1036 1036 3340
5 0 3053 3078 2031 3047 0 0 3340
6 0 3047 2031 3053 3742 0 0 3340
7 0 1056 1082 3006 3115 4635 1026 3340
8 0 1055 6673 3006 6676 1042 1036 3340
9 0 3853 6656 3158 1052 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 1 0 1
1 0 1 0 1
2 0 0 0 0
3 0 0 0 0
4 0 1 0 1
5 1 2 2 1
6 1 5 5 2
7 1 2 2 1
8 1 7 7 2
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 821 11761 4204
1 808 23205 908
2 1078 12010 2074
3 819 6904 2669
4 816 23342 993
5 402 0 0
6 0 10110 711
7 0 75302 5631
8 0 10507 1942
9 868 21009 9368
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 395 0 0 0
1 5562 111 0 0
2 4260 9 0 0
3 4905 0 0 0
4 3683 12 0 0
5 3661 16 0 0
6 3452 121 0 0
7 1344 20 0 0
8 2852 4 0 0
9 1484 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 107280
1 0 2 69783
2 0 3 102198
3 0 4 5773
4 0 5 67106
5 0 6 114960
6 0 7 83245
7 0 8 35406
8 0 9 99536
9 0 10 3437
physicalDamageDealtToChampions physicalDamageTaken role \
0 7816 11253 SOLO
1 4345 13863 NONE
2 6106 9639 SOLO
3 1301 6127 SUPPORT
4 5109 7540 CARRY
5 8347 11773 SOLO
6 5684 9701 NONE
7 2123 5762 SOLO
8 11388 9357 CARRY
9 929 5835 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 12 1 4 37
1 7 11 2 4 150
2 4 14 2 4 266
3 4 3 2 4 83
4 3 7 2 4 154
5 4 4 5 6 260
6 9 11 2 4 136
7 1 4 2 12 343
8 4 4 4 7 236
9 4 14 4 3 191
summonerName teamEarlySurrendered teamId teamPosition \
0 StrawBearys False 100 TOP
1 LemonNa False 100 JUNGLE
2 Hi Im Ngo False 100 MIDDLE
3 bigcookie False 100 UTILITY
4 CarToMars False 100 BOTTOM
5 StalwartHide False 200 TOP
6 SlothoftheAbyss False 200 JUNGLE
7 Rotome False 200 MIDDLE
8 Negi Valentine False 200 BOTTOM
9 MoistureCreature False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 5 1452 122585 12021
1 12 1452 102780 5293
2 9 1452 133426 9857
3 24 1452 18595 3971
4 1 1452 97116 6522
5 13 1452 115873 9260
6 20 1452 101249 6887
7 5 1452 121506 7754
8 0 1452 110138 13425
9 26 1452 25104 10955
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 12623 3085 199 64
1 19661 5381 6 424
2 14429 1977 196 113
3 11167 453 28 73
4 11507 2770 151 5
5 15615 4979 163 70
6 13854 6596 6 570
7 7797 4201 193 215
8 12668 5797 175 1
9 7424 1006 16 245
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 71 1 3542
1 98 1 9792
2 116 1 19218
3 79 3 5917
4 88 3 6666
5 31 1 913
6 0 1 7893
7 0 5 10796
8 0 3 94
9 27 1 657
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 974 1 3
1 40 235 0 3
2 1676 529 1 3
3 0 134 0 3
4 419 283 0 3
5 913 181 0 2
6 491 700 0 2
7 0 690 0 2
8 94 458 3 2
9 657 104 0 2
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 15 1 0 8 False
1 19 3 0 8 False
2 17 2 0 10 False
3 37 1 2 18 False
4 18 3 1 11 False
5 15 0 2 8 True
6 11 0 1 4 True
7 17 1 2 7 True
8 12 0 0 8 True
9 38 1 3 14 True ,
assists baronKills bountyLevel champLevel championName \
0 11 0 0 13 Gwen
1 7 0 0 15 Khazix
2 6 0 0 15 Riven
3 7 0 0 15 Lucian
4 11 0 0 13 Lulu
5 18 0 0 16 Singed
6 22 0 0 16 Nunu
7 15 1 5 16 Pantheon
8 14 0 2 16 Sivir
9 15 0 4 15 Pyke
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 5498 6500 5498
1 914 31681 914
2 3100 3100 3100
3 5001 8515 5001
4 1344 2320 1344
5 6124 11964 6124
6 1085 9110 1085
7 1216 14029 1216
8 10099 23222 10099
9 2875 4088 2875
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 0 0 False False
1 6 1 2 False False
2 8 0 0 False False
3 10 0 0 False False
4 12 2 0 False False
5 7 1 0 False False
6 8 0 1 False False
7 6 2 2 False False
8 5 0 0 False True
9 8 2 0 True False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 True False False
1 False True False
2 False False False
3 False False False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 10975 TOP 0
1 False 14300 JUNGLE 0
2 False 12492 MIDDLE 0
3 False 12068 BOTTOM 0
4 False 8748 UTILITY 0
5 False 11035 TOP 1
6 False 11829 JUNGLE 0
7 False 12810 MIDDLE 0
8 False 19490 BOTTOM 0
9 False 15219 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 4629 4633 3158 3115 0 0 3340
1 1 2031 6691 3117 6676 3026 6333 3340
2 1 2421 6630 3158 3508 3053 3067 3340
3 1 3006 6671 3508 6675 3123 0 3340
4 1 3853 6617 3158 3114 3109 1057 3364
5 0 2033 6664 3111 3116 3742 0 3340
6 0 3068 2031 3143 3742 3047 0 3340
7 0 6692 2033 3074 3158 3044 1037 3340
8 0 3042 6672 3006 3074 6676 3046 3340
9 0 3857 3142 6691 3026 3179 3117 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 6 4 1
1 2 11 5 2
2 2 7 3 1
3 1 6 3 1
4 0 3 0 1
5 0 2 0 1
6 1 3 2 1
7 1 7 5 2
8 5 19 8 3
9 3 11 4 4
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 872 51877 15267
1 926 8685 1799
2 857 81 81
3 546 6026 2372
4 316 15700 4662
5 448 113494 16200
6 403 65168 9787
7 456 7036 636
8 604 0 0
9 612 0 0
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 8041 15 1 0
1 6199 124 1 0
2 5404 12 1 0
3 5090 15 1 0
4 3898 0 1 0
5 4154 1 0 0
6 7455 111 0 0
7 5466 36 0 0
8 4363 23 0 0
9 4974 2 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 32197
1 0 2 156549
2 0 3 132429
3 0 4 128140
4 0 5 6059
5 0 6 6671
6 0 7 22661
7 0 8 135086
8 0 9 211443
9 0 10 36577
physicalDamageDealtToChampions physicalDamageTaken role \
0 3748 24097 SOLO
1 18316 27869 NONE
2 21910 28521 SOLO
3 16741 19763 CARRY
4 1577 20387 SUPPORT
5 1006 21598 SOLO
6 1241 23695 NONE
7 28540 16949 SOLO
8 38238 19054 CARRY
9 15087 14300 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 8 14 273
1 5 4 13 11 368
2 9 14 4 4 232
3 6 7 4 4 122
4 4 14 5 4 360
5 4 12 4 4 191
6 8 11 3 4 136
7 5 4 6 14 343
8 4 4 6 7 236
9 3 14 4 4 121
summonerName teamEarlySurrendered teamId teamPosition \
0 XXXTentacíon False 100 TOP
1 Madorbaul False 100 JUNGLE
2 Daln51 False 100 MIDDLE
3 Poopy Mike False 100 BOTTOM
4 Miss Lillia False 100 UTILITY
5 MoistureCreature False 200 TOP
6 SlothoftheAbyss False 200 JUNGLE
7 Rotome False 200 MIDDLE
8 Negi Valentine False 200 BOTTOM
9 MixedEnigma False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 9 1940 107579 26834
1 9 1940 183321 20983
2 35 1940 135939 24695
3 1 1940 151298 19245
4 36 1940 34218 7243
5 57 1940 121957 17302
6 40 1940 134137 11242
7 31 1940 144073 30426
8 0 1940 223241 42045
9 38 1940 45533 18507
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 33819 10800 126 97
1 35736 18004 43 147
2 36033 8956 173 149
3 26293 7105 179 40
4 26498 3715 24 186
5 28678 3504 167 892
6 34874 15703 37 370
7 24662 8384 128 62
8 25202 9448 213 13
9 21119 4101 41 152
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 282 1 23505
1 241 1 18085
2 314 5 3428
3 303 3 17131
4 298 5 12458
5 168 1 1791
6 253 1 46307
7 169 1 1950
8 176 5 11797
9 235 1 8955
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 7817 1680 0 8
1 866 1667 2 8
2 2704 2107 2 8
3 132 1439 2 8
4 1003 2213 0 8
5 95 2924 2 6
6 213 3723 0 6
7 1248 2246 0 6
8 3806 1784 4 6
9 3420 1845 1 6
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 14 0 0 8 False
1 21 1 1 11 False
2 18 0 0 11 False
3 21 0 2 10 False
4 49 2 7 19 False
5 17 1 0 11 True
6 14 0 0 8 True
7 15 2 0 9 True
8 20 0 1 11 True
9 48 4 5 17 True ,
assists baronKills bountyLevel champLevel championName \
0 1 0 2 14 Tryndamere
1 2 0 0 11 Graves
2 9 0 2 12 Soraka
3 3 0 4 11 Tristana
4 7 0 2 10 Thresh
5 1 0 0 12 MasterYi
6 5 0 0 12 FiddleSticks
7 2 0 0 11 Viego
8 0 0 0 11 Katarina
9 5 0 0 10 Sion
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3490 8123 3490
1 840 18990 840
2 1010 3988 1010
3 5040 7818 5040
4 907 1480 907
5 5938 6859 5938
6 157 11300 157
7 1008 1008 1008
8 0 971 0
9 732 6614 732
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 4 0 0 False False
1 3 2 2 False False
2 0 3 0 False False
3 1 1 0 False True
4 0 2 0 True False
5 5 0 0 False False
6 2 1 1 False False
7 3 1 0 False False
8 4 0 0 False False
9 8 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False True False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 10408 TOP 0
1 True 7105 JUNGLE 0
2 True 6524 MIDDLE 0
3 True 8691 BOTTOM 0
4 True 6112 UTILITY 0
5 True 7673 TOP 0
6 True 6710 JUNGLE 0
7 True 6633 MIDDLE 0
8 True 6899 BOTTOM 0
9 True 5272 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1055 6672 3006 3133 3046 0 3340
1 0 6673 2031 3047 3134 2055 1018 3364
2 0 1056 6617 3158 2003 3114 1082 3340
3 0 1055 6672 3006 1038 1018 1042 3340
4 0 3857 3117 3190 3067 0 0 3364
5 0 1054 6673 3006 3033 0 0 3340
6 0 2031 3152 3020 2055 3191 1052 3330
7 0 1054 6670 3006 3153 1036 0 3340
8 0 3020 2420 1029 1082 3115 1052 3340
9 0 3855 3068 3047 2055 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 5 11 3 3
1 0 0 0 0
2 1 2 2 1
3 2 7 4 1
4 1 2 2 1
5 0 3 0 1
6 0 1 0 1
7 0 1 0 1
8 0 3 0 1
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 558 0 0
1 476 7592 403
2 0 29026 5304
3 766 14541 1596
4 0 5706 2459
5 419 0 0
6 1190 74646 5343
7 861 743 357
8 894 60229 7846
9 284 10846 1295
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 5062 12 0 0
1 4502 112 0 0
2 1378 4 0 0
3 3333 0 0 0
4 1893 0 0 0
5 790 7 0 0
6 3907 116 0 0
7 2815 4 0 0
8 2017 4 0 0
9 2990 8 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 127226
1 0 2 105611
2 0 3 8208
3 0 4 50430
4 0 5 3590
5 0 6 69603
6 0 7 6474
7 0 8 43116
8 0 9 7578
9 0 10 35420
physicalDamageDealtToChampions physicalDamageTaken role \
0 24390 20439 NONE
1 5922 8488 NONE
2 1603 3480 SOLO
3 12858 6409 CARRY
4 542 1632 SUPPORT
5 7571 13863 SOLO
6 81 13204 NONE
7 4577 9263 SOLO
8 348 8495 CARRY
9 5627 16253 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 6 3 4 77
1 14 11 2 4 192
2 3 3 2 4 31
3 1 4 1 7 197
4 2 4 3 14 104
5 3 4 3 6 235
6 13 11 2 4 135
7 2 4 2 14 343
8 3 14 2 4 318
9 4 4 1 12 180
summonerName teamEarlySurrendered teamId teamPosition \
0 Sºlus False 100 TOP
1 Give Me Kayn False 100 JUNGLE
2 GOONWIK False 100 MIDDLE
3 freesat107 False 100 BOTTOM
4 Freesat109 False 100 UTILITY
5 Negi Valentine False 200 TOP
6 SlothoftheAbyss False 200 JUNGLE
7 Rotome False 200 MIDDLE
8 Meowjininer2 False 200 BOTTOM
9 teddyforsale False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 8 1341 139107 25988
1 8 1341 125514 7062
2 24 1341 49548 6907
3 4 1341 72485 16429
4 23 1341 13806 3291
5 0 1341 78519 8605
6 24 1341 94522 5606
7 3 1341 44126 5200
8 0 1341 68365 8752
9 16 1341 51431 6923
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 26465 9818 151 52
1 13112 4167 31 264
2 5209 9166 83 209
3 10347 2794 138 24
4 3525 251 33 50
5 15228 2561 104 0
6 17880 10963 9 455
7 12787 2311 110 6
8 11106 1437 120 0
9 21200 1680 47 337
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 142 1 11881
1 41 1 12311
2 0 5 12313
3 21 2 7513
4 0 4 4508
5 81 1 8916
6 36 1 13400
7 100 1 265
8 91 1 557
9 173 1 5164
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1598 962 0 3
1 737 122 2 3
2 0 350 0 3
3 1975 605 2 3
4 289 0 0 3
5 1034 573 1 4
6 182 768 1 4
7 265 707 0 4
8 557 594 0 4
9 0 1955 1 4
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 13 0 1 7 True
1 14 4 1 2 True
2 21 4 2 9 True
3 19 1 3 8 True
4 31 2 5 12 True
5 15 0 2 7 False
6 25 2 3 8 False
7 5 1 0 4 False
8 13 0 2 5 False
9 17 2 3 8 False ,
assists baronKills bountyLevel champLevel championName \
0 6 0 0 15 Kayle
1 10 0 0 13 Bard
2 5 0 0 15 Diana
3 5 0 0 14 Sion
4 7 0 1 16 Veigar
5 19 1 4 18 Chogath
6 20 0 0 17 Galio
7 10 1 6 18 LeeSin
8 11 0 3 16 Ezreal
9 24 0 1 15 Lux
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 1202 6625 1202
1 110 110 110
2 2935 6778 2935
3 974 1548 974
4 5880 6055 5880
5 3949 19475 3949
6 1746 3725 1746
7 2032 43274 2032
8 8321 37351 8321
9 3255 8715 3255
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 9 0 0 False False
1 12 3 0 False False
2 13 1 0 False False
3 12 0 0 False False
4 5 2 0 False False
5 4 2 2 True False
6 4 4 0 True False
7 4 6 1 True False
8 4 0 1 False True
9 6 5 1 True False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 13279 TOP 0
1 False 8045 UTILITY 0
2 False 10860 JUNGLE 0
3 False 11762 BOTTOM 0
4 False 11879 MIDDLE 0
5 False 14313 TOP 0
6 False 13821 MIDDLE 0
7 False 17836 JUNGLE 2
8 False 15102 BOTTOM 0
9 False 11483 UTILITY 1
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 3 3042 2033 3006 3153 3124 3035 3340
1 3 3158 3190 1082 3853 3066 3110 3364
2 3 3157 3020 6655 3115 0 0 3364
3 3 6693 3036 3134 6695 3111 1036 3364
4 3 3020 6656 2033 1082 3135 1058 3363
5 0 3193 3076 4401 6662 3111 1011 3340
6 0 3157 3152 3089 3102 0 3020 3364
7 0 2421 6676 3111 6692 3053 3814 3340
8 0 3140 3508 3042 6691 3158 3035 3363
9 0 3853 3157 3020 4005 3165 1058 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 9 5 4
1 0 1 0 1
2 0 2 0 1
3 1 7 2 2
4 0 3 0 1
5 2 6 4 1
6 4 10 3 1
7 4 19 9 2
8 4 12 3 2
9 1 4 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 405 44548 8661
1 675 18089 4466
2 378 149802 11638
3 368 17693 3077
4 580 134640 15482
5 671 98295 10962
6 824 132302 25225
7 874 69620 4057
8 740 19032 10019
9 489 43091 17690
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 13807 20 1 0
1 12778 0 1 0
2 14094 113 1 0
3 16083 16 1 0
4 12260 0 1 0
5 11991 33 0 0
6 9886 8 0 0
7 12151 164 0 0
8 6177 28 0 0
9 6400 8 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 70189
1 0 2 5655
2 0 3 26438
3 0 4 124494
4 0 5 12580
5 0 6 35312
6 0 7 5151
7 0 8 147643
8 0 9 160750
9 0 10 6536
physicalDamageDealtToChampions physicalDamageTaken role summoner1Casts \
0 12635 6842 SOLO 3
1 1848 10048 SOLO 4
2 2088 13257 NONE 4
3 21377 22039 DUO 5
4 875 5955 DUO 4
5 2811 22044 SOLO 3
6 474 11909 SOLO 5
7 19789 19158 NONE 23
8 20321 10863 SOLO 5
9 1434 7758 NONE 5
summoner1Id summoner2Casts summoner2Id summonerLevel summonerName \
0 4 2 12 260 StalwartHide
1 14 5 4 372 JewishOrphan
2 4 17 11 316 Patreon Princess
3 4 4 12 253 RamenConnoisseur
4 4 3 12 343 Rotome
5 12 4 4 140 Handsome farmer
6 4 3 12 148 djinda
7 11 5 4 208 ojinda
8 7 4 4 160 CI SecBang
9 14 3 4 207 wazsupYO
teamEarlySurrendered teamId teamPosition timeCCingOthers timePlayed \
0 False 100 TOP 13 2016
1 False 100 UTILITY 27 2016
2 False 100 JUNGLE 10 2016
3 False 100 BOTTOM 47 2016
4 False 100 MIDDLE 53 2016
5 False 200 TOP 80 2016
6 False 200 MIDDLE 39 2016
7 False 200 JUNGLE 17 2016
8 False 200 BOTTOM 8 2016
9 False 200 UTILITY 60 2016
totalDamageDealt totalDamageDealtToChampions totalDamageTaken totalHeal \
0 117469 21708 21773 5511
1 36286 6966 23633 5124
2 186800 14968 29139 5634
3 142278 24544 40070 1134
4 147221 16357 19025 1872
5 150705 17323 34366 13559
6 139316 26107 22577 3699
7 239333 24608 31847 16638
8 191886 31495 17785 4248
9 51051 19724 14158 878
totalMinionsKilled totalTimeCCDealt totalTimeSpentDead totalUnitsHealed \
0 139 249 273 5
1 25 382 270 5
2 74 149 372 1
3 162 581 370 1
4 211 134 186 1
5 172 1432 150 1
6 165 112 109 1
7 58 371 107 1
8 167 139 132 3
9 17 207 171 1
trueDamageDealt trueDamageDealtToChampions trueDamageTaken turretKills \
0 2732 412 1122 0
1 12540 650 806 0
2 10560 1242 1788 1
3 90 90 1947 0
4 0 0 809 3
5 17096 3549 330 1
6 1862 408 782 2
7 22069 761 538 1
8 12102 1154 744 4
9 1424 600 0 1
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 9 21 0 3
1 9 46 3 8
2 9 25 1 5
3 9 13 1 1
4 9 28 2 2
5 4 26 2 2
6 4 29 4 2
7 4 36 6 3
8 4 21 0 2
9 4 84 5 7
wardsPlaced win
0 10 False
1 17 False
2 3 False
3 8 False
4 5 False
5 10 True
6 7 True
7 14 True
8 10 True
9 32 True ,
assists baronKills bountyLevel champLevel championName \
0 8 0 0 17 Nasus
1 11 0 0 16 Diana
2 7 0 0 17 Jayce
3 6 0 0 17 MissFortune
4 6 0 0 14 Leona
5 10 0 4 18 Darius
6 13 2 1 17 Evelynn
7 11 0 4 18 Kayle
8 9 0 0 17 Jhin
9 13 0 0 15 Nami
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 7611 13945 7611
1 141 22934 141
2 2917 11655 2917
3 2902 34438 2902
4 854 2358 854
5 12077 21573 12077
6 461 16076 461
7 8405 32366 8405
8 2328 6042 2328
9 825 825 825
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 6 3 0 False False
1 7 3 3 False False
2 8 3 0 False False
3 5 2 1 False False
4 8 8 0 False False
5 4 1 0 False False
6 5 2 1 True False
7 3 2 0 False True
8 7 1 0 False False
9 9 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 12378 TOP 0
1 False 13620 JUNGLE 0
2 False 14391 MIDDLE 0
3 False 18644 BOTTOM 0
4 False 7630 UTILITY 0
5 False 18872 TOP 0
6 False 13372 JUNGLE 1
7 False 18982 MIDDLE 0
8 False 15456 BOTTOM 0
9 False 9437 UTILITY 1
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 2 3082 0 3075 3065 6632 3158 3340
1 2 4636 3157 3020 3165 1058 1058 3364
2 2 6695 6692 3142 3158 3814 0 3363
3 2 3094 3036 3026 3031 3006 6672 3363
4 2 3860 3190 3050 3117 2055 0 3364
5 0 3036 6631 3193 3053 3047 3075 3340
6 0 1029 3152 2420 3100 3020 3089 3340
7 0 4629 3115 4633 3041 3006 3089 3363
8 0 1055 6671 3009 6676 3094 3031 3340
9 0 3853 3158 4005 3011 6616 1004 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 0 1 0 1
1 1 4 2 1
2 2 7 5 2
3 2 15 10 2
4 0 1 0 1
5 4 13 4 3
6 0 2 0 1
7 3 11 4 1
8 2 7 4 1
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 850 34741 6617
1 606 188661 14868
2 658 24355 2628
3 1542 5799 2353
4 607 5028 1385
5 602 2857 735
6 819 116153 9615
7 826 221853 25105
8 820 6787 2500
9 702 8374 3701
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 7416 12 1 0
1 6573 159 1 0
2 11258 27 1 0
3 9346 40 1 0
4 8602 0 1 0
5 12190 12 0 0
6 4634 148 0 0
7 2266 52 0 0
8 6054 8 0 0
9 5500 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 141751
1 0 2 29757
2 0 3 170684
3 0 4 248034
4 0 5 5129
5 0 6 196529
6 0 7 12666
7 0 8 56180
8 0 9 168647
9 0 10 2253
physicalDamageDealtToChampions physicalDamageTaken role \
0 8024 25741 SOLO
1 1430 17958 NONE
2 16073 13776 SOLO
3 38076 12219 CARRY
4 801 13741 SUPPORT
5 32562 26693 SOLO
6 471 22316 NONE
7 4129 13615 SOLO
8 16160 11707 CARRY
9 183 13206 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 12 5 4 368
1 19 11 4 4 248
2 5 12 3 4 194
3 5 7 5 4 230
4 4 4 5 14 52
5 5 4 8 6 66
6 18 11 2 4 269
7 4 4 4 12 342
8 6 7 5 4 215
9 5 4 3 3 30
summonerName teamEarlySurrendered teamId teamPosition \
0 Koi Is A Fish False 100 TOP
1 Linh Is A Potato False 100 JUNGLE
2 DroolingSloth False 100 MIDDLE
3 Twisted Emerald False 100 BOTTOM
4 KevinLam3011 False 100 UTILITY
5 xXxMommaLoverxXx False 200 TOP
6 ConanTroutman False 200 JUNGLE
7 Rotome False 200 MIDDLE
8 Bitter Butthole False 200 BOTTOM
9 laineybon False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 15 2307 178488 14641
1 12 2307 234693 16499
2 6 2307 199449 18773
3 13 2307 280831 45952
4 18 2307 15518 2702
5 48 2307 213625 42572
6 8 2307 144210 10631
7 11 2307 302853 31408
8 17 2307 178457 19797
9 18 2307 10628 3884
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 38326 7277 205 111
1 26365 8973 66 160
2 26270 7429 239 171
3 24325 10912 240 218
4 24475 3720 35 40
5 42845 15150 238 460
6 27857 9515 29 267
7 17645 10988 274 332
8 18538 4496 228 55
9 19611 6929 14 114
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 186 1 1995
1 214 1 16274
2 286 1 4410
3 211 3 26998
4 202 5 5360
5 161 1 14238
6 180 1 15390
7 131 5 24820
8 137 5 3022
9 290 4 0
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 5167 2 10
1 201 1832 0 10
2 72 1236 1 10
3 5522 2759 1 10
4 516 2132 0 10
5 9273 3961 4 5
6 544 906 1 5
7 2174 1762 4 5
8 1136 776 0 5
9 0 904 0 5
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 24 3 4 13 False
1 27 3 5 4 False
2 29 3 2 14 False
3 24 2 2 13 False
4 79 9 8 36 False
5 29 1 6 15 True
6 43 2 10 14 True
7 42 3 7 9 True
8 28 1 3 12 True
9 26 0 2 17 True ,
assists baronKills bountyLevel champLevel championName \
0 4 0 3 14 Darius
1 4 0 0 12 Shaco
2 3 0 0 13 Garen
3 5 0 0 13 Tristana
4 6 0 0 12 Nami
5 6 0 0 14 Chogath
6 9 2 0 15 Sett
7 6 0 1 15 Zed
8 4 0 0 15 Varus
9 20 0 0 13 Soraka
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 1336 1336 1336
1 0 8842 0
2 3116 3116 3116
3 2036 6064 2036
4 0 124 0
5 1037 3660 1037
6 4448 30323 4448
7 3214 16405 3214
8 4480 21403 4480
9 1578 2617 1578
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 1 0 False False
1 14 1 0 True False
2 7 0 0 False True
3 4 3 0 False False
4 5 0 0 False False
5 5 2 1 False False
6 5 0 3 False False
7 4 0 0 False False
8 3 1 0 False False
9 3 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False True False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 12213 TOP 0
1 True 9522 JUNGLE 0
2 True 9855 MIDDLE 0
3 True 9199 BOTTOM 0
4 True 5695 UTILITY 0
5 True 9147 TOP 0
6 True 10572 JUNGLE 1
7 True 12976 MIDDLE 0
8 True 12582 BOTTOM 0
9 True 8313 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 1055 6691 3009 6676 3508 1038 3340
1 1 3006 2031 3508 6691 3035 0 3364
2 1 1054 6631 2055 3006 3053 1031 3340
3 1 1055 6672 3046 1036 3006 1036 3340
4 1 3853 3158 4005 4642 0 0 3364
5 0 1054 3047 6662 3075 3024 1029 3340
6 0 6692 1053 3006 6676 1043 0 3340
7 0 6692 1036 3047 3071 6694 1037 3364
8 0 3123 3004 6691 3158 6694 0 3340
9 0 3011 6617 3853 3158 3114 1028 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 8 4 2
1 1 7 4 2
2 1 4 2 1
3 0 1 0 1
4 0 0 0 0
5 1 7 6 1
6 1 4 2 1
7 2 13 7 3
8 2 11 9 2
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 917 318 0
1 468 31069 6852
2 688 427 119
3 489 18851 690
4 580 11646 6174
5 612 53242 11606
6 551 7815 0
7 636 7917 953
8 996 12839 4573
9 1131 14443 6829
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 6575 0 0 0
1 4396 72 0 0
2 5387 12 0 0
3 3613 12 0 0
4 4882 0 0 0
5 3367 4 0 0
6 5718 148 0 0
7 3011 16 0 0
8 3661 24 0 0
9 2706 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 107893
1 0 2 38187
2 0 3 69898
3 0 4 92845
4 0 5 1670
5 0 6 10674
6 0 7 128525
7 0 8 107052
8 0 9 146040
9 0 10 2378
physicalDamageDealtToChampions physicalDamageTaken role \
0 20865 11259 SOLO
1 7573 21125 NONE
2 11398 19586 SOLO
3 8517 11127 CARRY
4 700 9658 SUPPORT
5 2363 21732 SOLO
6 8098 24753 NONE
7 23504 13094 SOLO
8 19107 11161 CARRY
9 1061 8280 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 6 6 66
1 14 11 6 14 53
2 4 4 7 14 342
3 2 4 4 7 221
4 3 4 2 3 30
5 2 12 3 4 162
6 4 4 11 11 114
7 3 4 6 14 325
8 3 7 3 4 281
9 5 3 3 4 215
summonerName teamEarlySurrendered teamId teamPosition \
0 xXxMommaLoverxXx False 100 TOP
1 imistermeeseeks2 False 100 JUNGLE
2 Rotome False 100 MIDDLE
3 Fireballcharging False 100 BOTTOM
4 laineybon False 100 UTILITY
5 FallenGravity23 False 200 TOP
6 FSNXero False 200 JUNGLE
7 Huse sas False 200 MIDDLE
8 Zostro False 200 BOTTOM
9 Ecayse False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 17 1696 113956 26249
1 33 1696 80864 15842
2 33 1696 77784 14400
3 1 1696 115987 10242
4 31 1696 13316 6874
5 58 1696 74265 16535
6 17 1696 153542 11288
7 8 1696 122305 25993
8 29 1696 161294 24309
9 38 1696 16821 7890
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 20408 4522 174 199
1 26821 2684 17 501
2 28590 2978 120 93
3 14852 4412 142 24
4 14859 5332 7 172
5 29725 3710 91 625
6 32847 12907 8 192
7 17806 3882 129 137
8 15545 5352 181 316
9 12281 24868 8 169
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 194 1 5744
1 405 1 11608
2 245 1 7459
3 101 3 4290
4 141 8 0
5 171 1 10349
6 156 1 17202
7 109 1 7336
8 74 3 2414
9 94 5 0
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 5384 2573 0 7
1 1416 1300 0 7
2 2882 3616 2 7
3 1035 112 1 7
4 0 318 0 7
5 2565 4626 1 3
6 3190 2375 2 3
7 1536 1700 1 3
8 628 721 2 3
9 0 1294 0 3
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 17 1 1 9 False
1 13 1 3 2 False
2 3 2 0 2 False
3 22 3 0 12 False
4 5 0 1 3 False
5 18 2 0 9 True
6 17 0 1 8 True
7 17 0 3 5 True
8 17 1 0 11 True
9 41 2 3 11 True ,
assists baronKills bountyLevel champLevel championName \
0 4 0 5 13 Sett
1 7 0 0 10 Ashe
2 8 0 2 12 Veigar
3 10 0 1 12 Graves
4 9 0 0 10 Nami
5 0 0 0 11 Urgot
6 1 0 0 10 LeeSin
7 2 0 0 11 Katarina
8 4 0 0 10 KogMaw
9 4 0 0 9 Senna
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 4278 5598 4278
1 2451 5795 2451
2 757 6699 757
3 484 20687 484
4 0 584 0
5 915 1352 915
6 275 10301 275
7 1475 1475 1475
8 2181 2596 2181
9 497 497 497
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 2 0 0 False True
1 5 1 0 False False
2 2 2 0 False False
3 1 1 1 True False
4 4 0 0 False False
5 5 0 0 False False
6 6 1 2 False False
7 5 1 0 False False
8 5 0 0 False False
9 5 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 10875 TOP 0
1 True 6510 BOTTOM 0
2 True 7457 MIDDLE 0
3 True 8819 JUNGLE 0
4 True 4939 UTILITY 0
5 True 7032 TOP 0
6 True 6766 JUNGLE 0
7 True 6217 MIDDLE 0
8 True 6429 BOTTOM 0
9 True 5276 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1055 6693 2031 3006 6676 1036 3340
1 0 1055 6672 3006 1053 0 0 3340
2 0 2033 6656 1082 0 3020 0 3340
3 0 6673 6676 3047 1018 0 0 3364
4 0 3851 3158 4005 4642 0 0 3340
5 0 2033 6631 1011 3047 1036 1036 3340
6 0 6692 2031 3133 3158 1028 0 3340
7 0 1082 3115 3020 1052 0 0 3340
8 0 1055 6671 2422 1053 1043 0 3340
9 0 3863 3134 6660 3009 1037 0 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 3 11 5 2
1 1 4 2 1
2 2 4 2 1
3 1 5 4 1
4 0 2 0 1
5 1 3 2 2
6 2 5 2 2
7 1 2 2 2
8 0 2 0 1
9 0 2 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 566 303 133
1 662 1050 584
2 850 52079 10564
3 854 5903 235
4 682 4644 2559
5 333 97 97
6 345 12914 886
7 497 48861 8172
8 571 18210 5219
9 668 43 43
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 2065 13 0 0
1 4264 0 0 0
2 3119 8 0 0
3 2400 100 0 0
4 4064 0 0 0
5 2086 3 0 0
6 4963 66 0 2
7 4099 0 0 0
8 2220 0 0 0
9 1490 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 88143
1 0 2 37658
2 0 3 7087
3 0 4 92595
4 0 5 1493
5 1 6 57793
6 0 7 43326
7 0 8 6790
8 1 9 37030
9 0 10 7260
physicalDamageDealtToChampions physicalDamageTaken role \
0 15361 9800 SUPPORT
1 5881 6153 SUPPORT
2 818 6613 SUPPORT
3 7524 9680 SUPPORT
4 123 4879 SUPPORT
5 7286 7997 SUPPORT
6 6848 11287 SUPPORT
7 499 7197 SUPPORT
8 4221 9424 SUPPORT
9 3468 6626 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 5 14 66
1 4 7 1 4 191
2 2 4 2 12 342
3 11 11 1 4 60
4 2 4 2 3 30
5 3 4 3 12 269
6 3 4 9 11 365
7 3 4 1 12 225
8 4 7 4 4 263
9 2 4 0 14 246
summonerName teamEarlySurrendered teamId teamPosition \
0 xXxMommaLoverxXx False 100 TOP
1 mèo ú False 100 BOTTOM
2 Rotome False 100 MIDDLE
3 mèo hoang False 100 JUNGLE
4 laineybon False 100 UTILITY
5 iSloth False 200 TOP
6 lil stylish False 200 JUNGLE
7 vanderbolt False 200 MIDDLE
8 Raptorex55 False 200 BOTTOM
9 DoctoreCoqueBloc False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 18 1186 95881 17723
1 19 1186 42619 7199
2 24 1186 63812 11382
3 17 1186 111293 8173
4 9 1186 6137 2682
5 17 1186 58182 7675
6 10 1186 63607 7942
7 0 1186 62367 8671
8 4 1186 60616 10286
9 15 1186 7304 3512
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 12489 4452 112 128
1 10668 1621 80 315
2 10104 1743 94 68
3 12161 5088 29 340
4 8964 3568 6 93
5 11572 536 96 161
6 16776 4282 10 262
7 12265 549 104 4
8 11972 1489 102 269
9 8182 1633 3 33
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 62 1 7434
1 80 3 3910
2 65 1 4645
3 32 1 12794
4 79 4 0
5 105 1 291
6 143 1 7366
7 119 1 6715
8 131 2 5375
9 121 3 0
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 2228 623 2 2
1 733 250 1 2
2 0 371 0 2
3 413 80 0 2
4 0 20 0 2
5 291 1487 0 3
6 208 525 0 3
7 0 969 1 3
8 845 328 1 3
9 0 64 0 3
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 12 0 1 6 True
1 13 1 1 6 True
2 14 2 0 7 True
3 12 1 3 1 True
4 9 0 2 5 True
5 10 1 1 6 False
6 7 1 0 5 False
7 6 1 0 6 False
8 3 0 0 3 False
9 20 2 1 10 False ,
assists baronKills bountyLevel champLevel championName \
0 7 0 1 17 Quinn
1 11 0 5 18 Kindred
2 13 0 1 18 Diana
3 9 2 0 15 Jhin
4 17 0 0 15 Nautilus
5 4 0 0 16 Viego
6 8 0 0 16 Ekko
7 8 0 0 16 Pantheon
8 13 0 0 15 Samira
9 17 0 0 15 Yuumi
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 7010 12652 7010
1 5284 38614 5284
2 7430 23716 7430
3 2372 10294 2372
4 395 1143 395
5 5164 8074 5164
6 1633 12418 1633
7 1650 6196 1650
8 1338 7220 1338
9 346 488 346
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 0 0 False True
1 8 2 2 True False
2 6 0 1 False False
3 7 1 0 False False
4 8 2 0 False False
5 9 0 0 False False
6 9 1 2 False False
7 10 2 0 False False
8 10 1 0 False False
9 9 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False True False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 14099 TOP 0
1 False 18373 JUNGLE 0
2 False 16419 MIDDLE 0
3 False 10730 BOTTOM 1
4 False 8683 UTILITY 0
5 False 13345 TOP 0
6 False 13519 JUNGLE 0
7 False 11306 MIDDLE 0
8 False 13961 BOTTOM 0
9 False 8741 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 6671 3095 3031 1055 3123 3047 3363
1 0 6671 3026 3095 3031 3006 3033 3364
2 0 3089 3916 3157 4636 3020 3100 3340
3 0 1055 3009 6671 6676 3086 1042 3340
4 0 3860 3190 3047 3109 2055 3076 3364
5 1 1055 3153 6672 3047 3091 3077 3340
6 1 3152 3157 3020 3165 3100 1052 3340
7 1 6692 3053 3158 3071 0 0 3363
8 1 3072 6676 3047 6673 1031 1037 3340
9 1 3853 2055 6616 6617 3504 1082 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 8 3 2
1 5 20 5 3
2 3 15 8 2
3 0 2 0 1
4 0 2 0 1
5 2 7 3 2
6 4 12 4 2
7 1 6 3 1
8 1 7 3 1
9 1 4 3 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 630 4098 2377
1 401 37967 7266
2 531 150531 32705
3 408 5330 1449
4 561 11954 5906
5 378 8576 1674
6 403 128028 18826
7 376 5446 1321
8 356 27408 2409
9 667 10994 5639
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 5746 12 0 0
1 11082 143 0 0
2 6774 29 0 0
3 3893 15 0 0
4 5468 0 0 0
5 9214 23 1 0
6 11608 126 1 0
7 12682 16 1 0
8 11267 8 1 0
9 7484 0 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 150566
1 0 2 167708
2 0 3 24483
3 0 4 109338
4 0 5 8444
5 0 6 148504
6 0 7 24119
7 0 8 109913
8 0 9 154159
9 0 10 1717
physicalDamageDealtToChampions physicalDamageTaken role \
0 19990 12382 SOLO
1 29034 20923 NONE
2 4327 16320 SOLO
3 12971 13048 CARRY
4 2302 14792 SUPPORT
5 16826 18436 SOLO
6 2688 29641 NONE
7 15292 18023 SOLO
8 21633 21548 CARRY
9 905 7978 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 7 14 291
1 17 11 5 4 441
2 2 12 3 4 411
3 4 4 6 7 121
4 8 3 3 4 311
5 4 4 6 14 260
6 5 4 22 11 98
7 3 4 4 14 342
8 6 21 6 4 217
9 5 3 5 14 119
summonerName teamEarlySurrendered teamId teamPosition \
0 Heart Pupils False 100 TOP
1 FearSparrow False 100 JUNGLE
2 ForGotteNNapKiN False 100 MIDDLE
3 SnoopinLikeDora False 100 BOTTOM
4 Alyssandria False 100 UTILITY
5 StalwartHide False 200 TOP
6 xxNovember False 200 JUNGLE
7 Rotome False 200 MIDDLE
8 Wolfen119 False 200 BOTTOM
9 TrophyHusband2 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 27 1953 159350 23467
1 13 1953 217613 38038
2 11 1953 184376 37354
3 26 1953 114669 14420
4 56 1953 26571 8388
5 10 1953 184678 21324
6 20 1953 162825 22854
7 22 1953 120220 17295
8 1 1953 192394 24400
9 14 1953 13161 6994
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 19617 1674 186 161
1 33431 12930 61 244
2 24440 3011 162 102
3 17298 3402 162 74
4 21427 1024 33 276
5 28671 5187 204 55
6 41993 14257 31 376
7 31027 1954 150 59
8 33652 136 252 15
9 15880 14999 3 44
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 280 1 4684
1 300 12 11937
2 260 1 9361
3 214 3 0
4 236 1 6172
5 342 1 27596
6 324 1 10677
7 285 1 4860
8 283 1 10826
9 269 5 450
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1099 1488 2 3
1 1737 1425 2 3
2 322 1344 3 3
3 0 356 1 3
4 180 1166 0 3
5 2823 1020 1 8
6 1339 743 0 8
7 681 322 1 8
8 356 836 1 8
9 450 417 0 8
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 23 0 0 11 True
1 28 2 5 4 True
2 18 2 2 8 True
3 17 1 3 8 True
4 45 3 2 20 True
5 15 2 1 10 False
6 26 1 3 12 False
7 6 2 0 5 False
8 23 1 4 10 False
9 36 2 1 14 False ,
assists baronKills bountyLevel champLevel championName \
0 2 0 0 12 Darius
1 12 0 0 11 Udyr
2 6 0 4 13 Veigar
3 6 0 8 12 Caitlyn
4 17 0 3 10 Janna
5 0 0 0 12 Trundle
6 2 0 0 12 Gwen
7 1 0 0 12 Lucian
8 5 0 0 10 Jhin
9 4 0 0 9 Alistar
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2344 7320 2344
1 639 19592 639
2 2602 4909 2602
3 7796 7796 7796
4 1883 1883 1883
5 4876 4876 4876
6 0 17391 0
7 481 481 481
8 957 1899 957
9 0 339 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 3 0 1 False False
1 3 4 0 False False
2 2 0 0 False False
3 1 2 0 False False
4 1 0 0 False False
5 2 0 0 False False
6 5 4 2 False False
7 4 1 0 False False
8 8 0 0 True False
9 8 0 0 False True
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False True False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 8554 TOP 0
1 True 6848 JUNGLE 0
2 True 7862 MIDDLE 0
3 True 11375 BOTTOM 1
4 True 7285 UTILITY 0
5 True 6946 TOP 0
6 True 7667 JUNGLE 0
7 True 6544 MIDDLE 0
8 True 5890 BOTTOM 0
9 True 5898 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1055 6691 6676 3009 0 0 3340
1 0 3066 6664 2031 2055 1029 3158 3364
2 0 1082 6656 2033 3108 3020 1028 3363
3 0 1055 3094 6672 1038 3006 0 3340
4 0 3853 3158 6617 3504 0 0 3364
5 1 1054 3047 3078 1053 3070 0 3363
6 1 3047 2031 4633 1043 1026 1052 3364
7 1 3006 6671 3057 1036 1055 1036 3340
8 1 1055 6671 3006 1042 1042 0 3340
9 1 3859 2065 3020 4630 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 4 3 2
1 0 0 0 0
2 1 5 4 1
3 2 15 8 3
4 1 3 3 1
5 1 2 2 1
6 1 3 2 1
7 0 2 0 1
8 0 0 0 0
9 0 3 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 836 0 0
1 514 41323 2840
2 483 63236 11103
3 710 2072 1100
4 183 11874 5061
5 737 1025 1025
6 528 39081 3240
7 605 2287 962
8 250 6956 480
9 342 13742 5483
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 1953 4 0 0
1 4008 92 0 0
2 1583 8 0 0
3 2847 8 0 0
4 1811 0 0 0
5 207 1 0 0
6 6986 113 0 0
7 4601 8 0 0
8 4490 0 0 0
9 5059 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 86335
1 0 2 33398
2 0 3 8523
3 0 4 92873
4 0 5 2409
5 0 6 65666
6 0 7 29773
7 0 8 60001
8 0 9 58737
9 0 10 5803
physicalDamageDealtToChampions physicalDamageTaken role \
0 11314 9664 SOLO
1 2438 13935 NONE
2 408 7267 SOLO
3 17283 6927 CARRY
4 899 4460 SUPPORT
5 5163 11569 SOLO
6 1104 14504 NONE
7 6868 5137 SOLO
8 10122 9898 CARRY
9 1210 10943 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 4 5 14 259
1 3 4 12 11 253
2 1 4 2 12 342
3 3 4 3 7 54
4 3 4 4 3 63
5 3 6 2 4 227
6 12 11 1 4 400
7 2 14 2 4 318
8 3 4 4 7 353
9 5 14 8 4 558
summonerName teamEarlySurrendered teamId teamPosition \
0 StalwartHide False 100 TOP
1 OblivionsSoul False 100 JUNGLE
2 Rotome False 100 MIDDLE
3 Le Spécialiste False 100 BOTTOM
4 5 UN 4 False 100 UTILITY
5 Leviathan Falls False 200 TOP
6 Lil Brain False 200 JUNGLE
7 Kartanah False 200 MIDDLE
8 lycheelaura False 200 BOTTOM
9 vietvince False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 12 1243 91929 13887
1 22 1243 89525 5767
2 20 1243 71760 11512
3 6 1243 104277 20644
4 28 1243 14284 5961
5 7 1243 69411 6188
6 5 1243 102593 5863
7 0 1243 66043 8234
8 11 1243 65693 10602
9 52 1243 25096 7154
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 11961 1248 148 55
1 18374 7312 17 176
2 9293 1253 124 78
3 10586 2545 129 66
4 6627 4112 3 120
5 13688 4603 144 127
6 22365 6804 27 208
7 10257 640 131 0
8 15257 2308 126 112
9 17153 4393 33 113
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 67 1 5593
1 71 1 14804
2 51 1 0
3 27 3 9330
4 8 12 0
5 50 1 2720
6 117 1 33738
7 132 1 3754
8 116 3 0
9 152 5 5550
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 2573 343 1 1
1 488 430 1 1
2 0 442 1 1
3 2260 811 3 1
4 0 355 0 1
5 0 1910 1 6
6 1518 874 0 6
7 404 517 0 6
8 0 868 0 6
9 460 1150 0 6
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 8 0 0 6 True
1 18 6 2 5 True
2 8 1 0 3 True
3 22 3 2 8 True
4 23 2 0 12 True
5 8 0 0 5 False
6 18 4 2 7 False
7 15 1 0 6 False
8 12 0 2 6 False
9 17 0 2 7 False ,
assists baronKills bountyLevel champLevel championName \
0 3 0 0 13 Darius
1 5 0 0 11 LeeSin
2 4 0 0 13 Pantheon
3 2 0 0 11 Syndra
4 6 0 0 10 Nautilus
5 4 0 1 14 Garen
6 8 0 2 13 Diana
7 3 0 3 12 Veigar
8 12 0 2 12 Sivir
9 8 0 1 10 Pyke
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 1680 2073 1680
1 0 18078 0
2 3113 3232 3113
3 0 641 0
4 0 225 0
5 3782 4623 3782
6 436 9937 436
7 3648 4344 3648
8 1794 5713 1794
9 1613 1613 1613
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 2 0 False False
1 6 0 2 True False
2 3 0 0 False True
3 5 4 0 False False
4 3 8 0 False False
5 4 0 0 False False
6 4 4 1 False False
7 4 3 0 False False
8 1 3 0 False False
9 3 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False True False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 8409 TOP 0
1 True 7783 JUNGLE 0
2 True 9540 MIDDLE 0
3 True 7469 BOTTOM 0
4 True 5129 UTILITY 0
5 True 9891 TOP 0
6 True 9209 JUNGLE 0
7 True 9619 MIDDLE 0
8 True 8683 BOTTOM 0
9 True 8562 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1055 3053 6631 3047 0 0 3363
1 0 3158 2055 6692 3053 0 0 3340
2 0 6692 2033 3111 3071 1036 1037 3340
3 0 0 1082 3070 3020 6655 3191 3363
4 0 3857 3190 0 3117 0 0 3364
5 0 1055 6631 3142 3047 3066 0 3340
6 0 2031 3157 4636 3047 1052 0 3364
7 0 3158 6656 2033 1082 1026 4630 3363
8 0 1055 0 6691 3004 0 3158 3363
9 0 3117 2031 3857 3134 6691 1036 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 4 2 1
1 1 4 2 1
2 1 4 2 1
3 2 4 2 1
4 0 0 0 0
5 1 6 4 2
6 1 4 2 1
7 2 7 3 3
8 1 2 2 2
9 0 3 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 652 0 0
1 326 22559 1290
2 731 1705 650
3 513 42106 8689
4 488 6876 3091
5 609 0 0
6 325 107604 9589
7 549 70874 7492
8 646 0 0
9 781 0 0
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 2355 1 0 0
1 6621 103 0 0
2 4601 0 0 0
3 1463 4 0 0
4 3524 0 0 0
5 1015 8 0 0
6 5010 138 0 0
7 1767 8 0 0
8 4230 0 0 0
9 3367 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 78362
1 0 2 62747
2 0 3 65999
3 0 4 5878
4 0 5 6376
5 0 6 83245
6 0 7 25305
7 0 8 8579
8 0 9 82045
9 0 10 15535
physicalDamageDealtToChampions physicalDamageTaken role \
0 7136 11610 SOLO
1 4001 15206 NONE
2 9013 8770 SOLO
3 569 7971 CARRY
4 1621 6352 SUPPORT
5 9841 13756 DUO
6 1099 11885 NONE
7 719 6978 DUO
8 13481 1695 CARRY
9 4421 3789 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 4 6 187
1 13 11 3 4 236
2 3 4 5 14 458
3 2 4 4 7 346
4 3 14 2 4 247
5 4 4 6 14 259
6 4 4 9 11 283
7 2 4 2 12 341
8 4 1 2 4 166
9 5 14 2 4 296
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 nahhut False 100 TOP 12
1 jay daddy False 100 JUNGLE 7
2 Nažca False 100 MIDDLE 10
3 Blitzedlegend False 100 BOTTOM 16
4 EpicHenchy False 100 UTILITY 30
5 StalwartHide False 200 TOP 28
6 ctrl f dad False 200 JUNGLE 9
7 Rotome False 200 MIDDLE 15
8 Fandril5 False 200 BOTTOM 0
9 Hi im Kahul False 200 UTILITY 18
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1404 79043 7817
1 1404 98301 5442
2 1404 68394 10354
3 1404 48212 9486
4 1404 19256 5355
5 1404 90395 12431
6 1404 139171 10882
7 1404 79618 8286
8 1404 84650 13481
9 1404 22343 5284
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 15683 1267 154 50
1 22218 6808 17 306
2 13597 2628 129 11
3 10533 1435 117 96
4 10167 655 28 165
5 15696 1119 147 90
6 17279 6795 20 196
7 9446 1514 138 82
8 6166 1274 152 2
9 7298 1072 44 76
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 129 1 681
1 118 1 12994
2 66 1 690
3 107 2 227
4 41 5 6004
5 137 1 7150
6 85 1 6261
7 105 1 164
8 21 1 2605
9 72 1 6807
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 681 1717 1 3
1 150 390 1 3
2 690 225 0 3
3 227 1097 0 3
4 641 290 0 3
5 2590 924 1 2
6 193 383 0 2
7 74 700 1 2
8 0 239 1 2
9 863 142 0 2
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 17 2 3 9 False
1 15 1 1 6 False
2 10 0 0 7 False
3 27 4 4 11 False
4 43 8 4 24 False
5 14 0 2 7 True
6 23 4 1 6 True
7 21 3 4 9 True
8 15 3 1 8 True
9 37 2 6 14 True ,
assists baronKills bountyLevel champLevel championName \
0 2 0 0 11 Jax
1 1 0 0 10 Evelynn
2 1 0 0 12 Veigar
3 2 0 0 10 Draven
4 2 0 0 9 Thresh
5 1 0 4 14 Akali
6 8 0 5 13 Shyvana
7 4 0 8 13 Qiyana
8 11 0 0 12 Senna
9 5 0 0 9 Nautilus
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 734 13204 734
1 0 2132 0
2 714 714 714
3 1220 4780 1220
4 215 1231 215
5 0 4037 0
6 4781 16550 4781
7 562 2218 562
8 3410 5787 3410
9 0 1296 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 3 0 0 False False
1 5 0 0 False False
2 2 2 0 False False
3 8 0 1 False False
4 4 2 0 False False
5 1 0 0 False False
6 1 2 2 False False
7 1 2 0 False False
8 1 3 0 True False
9 2 4 0 False True
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False True False
7 False False False
8 True False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 6337 TOP 0
1 True 6999 JUNGLE 0
2 True 6189 MIDDLE 0
3 True 7185 BOTTOM 0
4 True 4492 UTILITY 0
5 True 7927 TOP 0
6 True 9590 JUNGLE 0
7 True 8911 MIDDLE 0
8 True 8724 BOTTOM 0
9 True 5811 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 6632 2033 1043 1001 1053 0 3340
1 0 3152 3020 1082 0 0 0 3364
2 0 1056 6656 0 1082 3158 0 3363
3 0 1055 6673 2031 3006 3134 1037 3340
4 0 3190 3857 3117 2010 2055 0 3364
5 0 1054 2031 4633 3047 1029 1011 3363
6 0 1043 2031 4636 0 3111 1052 3364
7 0 1037 6693 0 3134 3111 3070 3364
8 0 6672 2031 3006 3124 0 0 3340
9 0 3190 3860 0 3117 3067 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 0 0 0
1 1 3 2 1
2 0 1 0 1
3 0 1 0 1
4 0 0 0 0
5 1 4 4 2
6 1 5 5 2
7 1 8 8 2
8 1 2 2 1
9 1 3 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 870 15872 2184
1 623 74289 5710
2 629 44385 4686
3 328 0 0
4 391 3762 1734
5 366 63645 7865
6 660 84217 9089
7 727 7748 1140
8 456 0 0
9 736 5811 2610
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 6901 12 0 0
1 4545 90 0 0
2 3527 0 0 0
3 5248 8 0 0
4 2034 0 0 0
5 2983 12 0 0
6 4536 133 0 0
7 5846 12 0 0
8 844 8 0 0
9 2682 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 54580
1 0 2 9718
2 0 3 8121
3 0 4 74469
4 0 5 3669
5 0 6 16652
6 0 7 39705
7 0 8 74003
8 0 9 64925
9 0 10 7797
physicalDamageDealtToChampions physicalDamageTaken role \
0 5717 6478 NONE
1 388 14999 NONE
2 732 4560 SOLO
3 5509 10842 CARRY
4 228 4263 SUPPORT
5 1080 9700 SOLO
6 582 16373 NONE
7 11098 5435 SOLO
8 8076 3486 CARRY
9 1727 4400 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 3 12 259
1 3 4 9 11 263
2 3 4 1 12 341
3 4 7 4 4 132
4 1 14 2 4 26
5 2 12 3 4 343
6 12 11 3 4 330
7 2 14 3 4 251
8 2 4 4 7 299
9 4 4 4 14 230
summonerName teamEarlySurrendered teamId teamPosition \
0 StalwartHide False 100 TOP
1 JuIez False 100 JUNGLE
2 Rotome False 100 MIDDLE
3 OTPantheon False 100 BOTTOM
4 Redpilot NA False 100 UTILITY
5 LIAMisMEOW False 200 TOP
6 Project Faiz False 200 JUNGLE
7 XxChinaBearxX False 200 MIDDLE
8 Períodt luv False 200 BOTTOM
9 NonToxicMessiah False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 10 1328 81267 7901
1 4 1328 89141 6354
2 13 1328 52506 5418
3 5 1328 74469 5509
4 15 1328 12620 2113
5 0 1328 90304 9360
6 1 1328 132854 9937
7 13 1328 91147 12579
8 15 1328 88672 8821
9 28 1328 20505 4668
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 13705 2653 122 58
1 20072 7389 21 183
2 8186 896 119 41
3 16827 1710 159 43
4 6705 531 27 33
5 12775 577 147 50
6 20910 8080 28 137
7 11357 0 136 53
8 4481 4266 143 67
9 7170 0 28 144
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 105 1 10815
1 146 1 5134
2 67 1 0
3 177 3 0
4 73 3 5189
5 14 1 10005
6 21 1 8931
7 30 0 9396
8 14 5 23746
9 45 0 6897
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 325 1 3
1 256 526 0 3
2 0 97 0 3
3 0 737 0 3
4 150 408 0 3
5 414 92 0 1
6 265 0 3 1
7 341 76 0 1
8 744 150 0 1
9 330 88 0 1
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 12 0 1 7 False
1 3 0 0 1 False
2 12 2 0 8 False
3 7 0 1 5 False
4 23 3 3 10 False
5 11 0 0 6 True
6 15 2 1 2 True
7 19 2 0 6 True
8 29 3 4 10 True
9 27 4 2 16 True ,
assists baronKills bountyLevel champLevel championName \
0 6 0 0 14 Gangplank
1 5 0 9 15 Riven
2 8 0 5 14 Kassadin
3 5 0 4 14 Jinx
4 17 0 1 13 Sona
5 0 0 0 14 Gwen
6 1 0 0 11 Rumble
7 1 0 0 15 Kayle
8 0 0 0 12 MissFortune
9 0 0 0 12 Nami
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 7741 12420 7741
1 841 11272 841
2 2832 2832 2832
3 16406 22828 16406
4 3303 5000 3303
5 536 954 536
6 431 13650 431
7 412 412 412
8 326 326 326
9 58 58 58
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 2 0 0 False False
1 0 2 1 False False
2 1 1 0 False False
3 2 2 1 False False
4 0 0 1 False False
5 3 0 0 False True
6 9 0 0 False False
7 5 3 0 False False
8 6 0 0 False False
9 5 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 9165 TOP 0
1 False 11496 JUNGLE 1
2 False 10048 MIDDLE 1
3 False 13416 BOTTOM 2
4 False 7420 UTILITY 0
5 False 9207 TOP 0
6 False 6722 JUNGLE 0
7 False 9758 MIDDLE 0
8 False 7864 BOTTOM 0
9 False 4122 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3508 3111 6691 1036 0 0 3340
1 0 6630 2031 3074 2055 3133 3158 3364
2 0 3020 6656 3042 0 1056 0 3363
3 0 3031 6672 3006 3085 1036 1036 3340
4 0 3853 6617 3020 6616 0 0 3364
5 4 1056 3047 4633 3115 3057 1052 3340
6 4 2421 2031 3020 4636 1082 1052 3340
7 4 1056 1082 3006 3115 4633 0 3363
8 4 1055 6671 3006 3134 1018 1037 3340
9 4 3850 3158 2065 0 0 0 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 0 0 0 0
1 1 9 9 1
2 1 6 5 3
3 2 12 7 4
4 0 1 0 1
5 1 3 2 1
6 0 0 0 0
7 0 2 0 1
8 0 0 0 0
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 963 7418 2061
1 0 9373 26
2 844 65957 15498
3 1329 920 463
4 0 13745 3118
5 1202 39553 6471
6 429 76605 6097
7 735 94479 8609
8 721 7288 1064
9 954 5905 2432
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 4737 16 0 0
1 5016 165 0 0
2 5933 8 0 0
3 8851 16 0 0
4 2391 4 0 0
5 5021 4 1 0
6 5485 92 1 0
7 8384 0 1 0
8 1794 0 1 0
9 1660 0 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 124294
1 0 2 142174
2 0 3 24400
3 0 4 171376
4 0 5 3858
5 0 6 24956
6 0 7 15168
7 0 8 34144
8 0 9 97224
9 0 10 1071
physicalDamageDealtToChampions physicalDamageTaken role \
0 7250 5561 NONE
1 9850 14686 NONE
2 3119 13155 SOLO
3 22157 7549 CARRY
4 502 4424 SUPPORT
5 1744 12567 DUO
6 438 20214 NONE
7 4082 11268 DUO
8 7476 13470 CARRY
9 42 7990 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 4 14 539
1 17 11 4 4 259
2 1 4 4 21 371
3 3 7 2 4 74
4 4 14 2 4 154
5 3 4 6 14 259
6 11 11 2 4 74
7 3 4 3 12 341
8 2 4 1 14 132
9 3 4 1 3 27
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 Snowfire False 100 TOP 4
1 tr3y False 100 JUNGLE 14
2 TNightFury77 False 100 MIDDLE 24
3 TChonkers False 100 BOTTOM 14
4 Foopah False 100 UTILITY 6
5 StalwartHide False 200 TOP 4
6 Ryncwind False 200 JUNGLE 7
7 Rotome False 200 MIDDLE 8
8 Alece False 200 BOTTOM 4
9 laineybon False 200 UTILITY 12
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1600 139986 11049
1 1600 163242 10134
2 1600 93577 18618
3 1600 183586 25569
4 1600 17733 3750
5 1600 88774 13592
6 1600 103006 7058
7 1600 128872 12865
8 1600 106343 8771
9 1600 6977 2474
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 13189 4221 154 279
1 21297 9349 23 335
2 19872 6657 161 124
3 17271 2363 232 59
4 6978 10024 5 14
5 19749 2880 164 29
6 26680 6075 24 229
7 20577 3861 198 264
8 15640 826 187 114
9 10284 3268 4 117
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 58 1 8273
1 0 1 11695
2 30 1 3220
3 88 2 11289
4 0 5 130
5 78 1 24264
6 208 1 11233
7 144 4 248
8 138 1 1830
9 130 5 0
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1737 2890 2 1
1 257 1594 1 1
2 0 783 0 1
3 2948 870 6 1
4 130 162 2 1
5 5375 2159 0 11
6 523 980 1 11
7 173 924 0 11
8 230 375 0 11
9 0 633 0 11
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 10 0 0 6 True
1 14 3 1 2 True
2 16 2 2 8 True
3 20 2 2 8 True
4 26 0 0 14 True
5 17 0 2 8 False
6 16 0 0 8 False
7 10 3 2 7 False
8 6 0 0 5 False
9 8 0 0 5 False ,
assists baronKills bountyLevel champLevel championName \
0 11 0 1 14 Shen
1 8 0 0 13 Shaco
2 8 0 0 13 Katarina
3 12 0 1 13 Ashe
4 5 0 1 12 Xerath
5 5 0 1 13 Morgana
6 2 0 0 13 Khazix
7 1 0 2 14 Ahri
8 2 0 0 12 Ezreal
9 4 0 0 11 Nami
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 1660 2380 1660
1 455 9815 455
2 1925 6880 1925
3 9294 21340 9294
4 4441 7274 4441
5 0 4756 0
6 2160 4172 2160
7 937 4166 937
8 4091 4370 4091
9 885 1063 885
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 2 2 0 False False
1 4 0 3 True False
2 5 2 0 False False
3 1 4 0 True False
4 4 0 0 False True
5 9 2 0 False False
6 5 0 0 False False
7 5 0 0 False False
8 6 0 0 False False
9 8 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False True False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 8675 TOP 0
1 False 8894 JUNGLE 0
2 False 9557 MIDDLE 0
3 False 10844 BOTTOM 1
4 False 9567 UTILITY 0
5 False 8452 JUNGLE 0
6 False 8469 TOP 0
7 False 8675 MIDDLE 0
8 False 8338 BOTTOM 0
9 False 5310 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1054 6662 3107 3076 3047 0 3340
1 0 3006 6691 3142 1036 1036 0 3364
2 0 2421 3020 3115 4633 1056 1052 3340
3 0 1053 6672 3006 3085 1038 2055 3340
4 0 2424 3853 6655 4628 3191 3020 3364
5 2 3157 2031 1052 0 6653 3020 3364
6 2 6692 2033 3158 3042 1036 1036 3340
7 2 1056 6655 3020 4628 0 0 3340
8 2 1055 3158 6691 2055 3508 0 3340
9 2 3851 3158 2065 3916 1004 0 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 1 4 2 1
1 1 6 4 2
2 2 8 4 1
3 1 4 3 1
4 2 11 5 2
5 0 4 0 1
6 0 2 0 1
7 2 5 2 2
8 0 3 0 1
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 993 23880 4321
1 684 32086 3394
2 609 61740 16198
3 1385 629 629
4 477 47709 18913
5 504 82700 10389
6 927 711 711
7 640 42355 5997
8 572 14182 3569
9 391 4845 2174
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 5011 2 0 0
1 5283 112 0 0
2 8477 4 0 0
3 2224 10 0 0
4 2934 0 0 0
5 12750 104 1 0
6 8011 6 1 0
7 8346 0 1 0
8 6620 0 1 0
9 9377 0 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 33031
1 0 2 56847
2 0 3 15582
3 0 4 100492
4 0 5 2353
5 0 6 12969
6 0 7 86398
7 0 8 11350
8 0 9 72066
9 0 10 868
physicalDamageDealtToChampions physicalDamageTaken role \
0 5708 9970 SOLO
1 4156 15079 NONE
2 1722 8859 SOLO
3 8030 5238 CARRY
4 267 6798 SUPPORT
5 883 11926 NONE
6 9205 9961 SOLO
7 440 6290 SOLO
8 6900 8219 CARRY
9 129 3461 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 12 3 4 192
1 3 14 13 11 222
2 4 14 3 12 232
3 2 7 1 4 133
4 1 14 3 4 332
5 2 4 12 11 287
6 3 4 3 14 259
7 2 4 4 14 132
8 2 4 3 7 341
9 2 4 1 3 27
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 Ooflord34 False 100 TOP 29
1 robottoy7 False 100 JUNGLE 15
2 DarkFlame270 False 100 MIDDLE 1
3 Grognar False 100 BOTTOM 17
4 Sleepi False 100 UTILITY 21
5 Eevulpix False 200 JUNGLE 37
6 StalwartHide False 200 TOP 7
7 Alece False 200 MIDDLE 8
8 Rotome False 200 BOTTOM 0
9 laineybon False 200 UTILITY 5
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1493 72784 10777
1 1493 97394 8200
2 1493 80914 18516
3 1493 108078 9442
4 1493 50332 19291
5 1493 103194 12255
6 1493 90959 10591
7 1493 83358 9070
8 1493 90659 10469
9 1493 5713 2304
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 17673 2318 110 662
1 21530 10576 14 717
2 20145 3750 115 25
3 7665 799 147 489
4 10151 1422 24 105
5 25405 8789 26 216
6 18614 4352 140 328
7 15379 778 125 73
8 15378 716 145 0
9 13075 4136 3 75
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 80 1 15872
1 91 1 8460
2 171 1 3591
3 40 2 6957
4 108 1 270
5 292 1 7525
6 150 1 3849
7 163 1 29652
8 145 2 4410
9 205 5 0
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 747 2691 0 2
1 650 1167 0 2
2 596 2808 0 2
3 783 202 7 2
4 110 418 0 2
5 982 728 0 8
6 674 641 1 8
7 2632 742 0 8
8 0 538 1 8
9 0 236 0 8
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 14 2 1 8 True
1 8 0 2 0 True
2 14 2 0 9 True
3 17 5 1 5 True
4 28 1 1 15 True
5 17 2 2 6 False
6 10 0 2 6 False
7 8 0 0 6 False
8 8 1 0 5 False
9 8 0 0 5 False ,
assists baronKills bountyLevel champLevel championName \
0 4 0 0 17 MonkeyKing
1 8 1 1 17 Kayn
2 6 0 1 18 Sylas
3 7 0 6 18 Samira
4 12 0 0 15 Leona
5 2 0 0 18 Mordekaiser
6 10 0 0 15 Zyra
7 7 0 0 18 Kayle
8 3 0 0 16 Ekko
9 6 0 0 14 Vi
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2406 11752 2406
1 659 23816 659
2 1712 6151 1712
3 6754 22748 6754
4 382 879 382
5 4403 6997 4403
6 599 3714 599
7 1249 8830 1249
8 3947 5298 3947
9 95 8278 95
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 0 0 False True
1 7 2 3 False False
2 6 2 0 False False
3 3 2 0 False False
4 7 5 0 False False
5 7 0 0 False False
6 8 4 0 False False
7 5 1 1 False False
8 7 5 0 False False
9 7 0 1 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 13404 TOP 1
1 False 11503 JUNGLE 0
2 False 13807 MIDDLE 0
3 False 19035 BOTTOM 0
4 False 8652 UTILITY 0
5 False 14423 TOP 0
6 False 12628 UTILITY 0
7 False 13213 MIDDLE 0
8 False 13355 BOTTOM 0
9 False 8424 JUNGLE 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3508 6673 6676 3111 1018 3035 3340
1 0 3158 3074 1057 6630 3051 2055 3340
2 0 3157 6656 4629 3165 0 3158 3363
3 0 3026 6676 3111 3031 6673 3072 3363
4 0 3860 1033 3190 3111 3050 1011 3364
5 1 1056 3157 3047 3115 4633 3165 3340
6 1 3853 3157 3165 1011 3158 6653 3364
7 1 1055 6673 3006 3031 3508 3086 3363
8 1 3020 3100 3152 2421 2033 3089 3340
9 1 3047 2031 3078 3044 1028 1037 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 8 3 2
1 0 2 0 1
2 2 10 3 1
3 2 13 6 2
4 0 1 0 1
5 2 8 3 2
6 1 6 3 2
7 1 7 4 2
8 2 9 6 2
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 1100 24686 2424
1 512 11094 74
2 623 126754 32801
3 827 24213 4751
4 581 12278 4167
5 782 159412 25443
6 432 95053 28674
7 1253 69698 10466
8 812 134944 14987
9 602 9095 0
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 13947 16 0 0
1 18080 175 0 0
2 20771 8 0 0
3 11673 51 0 0
4 18006 0 0 0
5 11261 8 1 0
6 6180 4 1 0
7 13281 39 1 0
8 8483 4 1 0
9 8065 116 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 127172
1 0 2 174702
2 0 3 11252
3 0 4 247895
4 0 5 7708
5 0 6 24916
6 0 7 5702
7 0 8 102008
8 0 9 18385
9 0 10 97987
physicalDamageDealtToChampions physicalDamageTaken role \
0 17725 11387 SOLO
1 13318 25897 NONE
2 233 14193 SOLO
3 22374 10173 CARRY
4 2158 4726 SUPPORT
5 3254 19996 SOLO
6 989 12873 SUPPORT
7 11838 13472 SOLO
8 2108 18224 CARRY
9 5254 20677 NONE
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 5 4 7 14 146
1 5 4 23 11 162
2 5 4 5 12 353
3 3 4 4 7 146
4 8 4 9 14 399
5 4 4 4 12 259
6 5 4 5 7 341
7 5 4 4 12 341
8 8 14 5 4 283
9 3 4 8 11 132
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 NatehanJamison False 100 TOP 9
1 Drug Cartel False 100 JUNGLE 9
2 Lips Dat Grip False 100 MIDDLE 45
3 StarkIsKing False 100 BOTTOM 2
4 Baby Yoda False 100 UTILITY 45
5 StalwartHide False 200 TOP 7
6 Nar Garzvog False 200 UTILITY 39
7 Rotome False 200 MIDDLE 13
8 aPseudonymity False 200 BOTTOM 25
9 Alece False 200 JUNGLE 19
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 2090 153134 21424
1 2090 205770 14021
2 2090 154023 33063
3 2090 286605 27385
4 2090 27385 7523
5 2090 185490 29708
6 2090 101080 29831
7 2090 183824 22929
8 2090 157710 18326
9 2090 111564 5354
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 25598 2499 193 21
1 44381 20119 38 425
2 36406 13689 178 427
3 21942 2401 281 49
4 23661 1571 46 77
5 32229 8591 229 65
6 19310 2323 92 221
7 27394 4106 202 367
8 27946 6474 202 363
9 29026 9268 15 226
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 276 1 1274
1 207 1 19973
2 255 1 16016
3 65 2 14496
4 151 4 7399
5 228 1 1162
6 221 2 324
7 199 3 12117
8 227 1 4380
9 187 1 4482
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1274 263 1 5
1 629 404 1 5
2 28 1441 1 5
3 259 95 3 5
4 1197 928 0 5
5 1010 971 2 6
6 168 257 0 6
7 624 640 1 6
8 1229 1238 2 6
9 100 282 0 6
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 15 0 0 10 True
1 31 3 1 11 True
2 35 2 2 15 True
3 18 3 5 5 True
4 65 6 8 30 True
5 21 0 2 12 False
6 55 6 6 22 False
7 33 1 2 9 False
8 32 5 4 15 False
9 17 0 2 6 False ,
assists baronKills bountyLevel champLevel championName \
0 5 0 0 15 LeeSin
1 2 0 0 15 XinZhao
2 8 0 0 16 Ahri
3 6 0 0 15 Yasuo
4 7 0 0 14 Yone
5 7 0 5 18 Sett
6 5 1 3 16 MasterYi
7 12 0 5 18 Kayle
8 17 0 0 16 Jinx
9 7 0 2 13 Lux
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2502 4852 2502
1 0 12004 0
2 1393 3012 1393
3 1857 3464 1857
4 1661 7049 1661
5 11186 17615 11186
6 2609 28745 2609
7 4462 16786 4462
8 5183 12046 5183
9 1702 3854 1702
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 0 0 False True
1 8 3 1 False False
2 3 3 1 False False
3 8 3 0 False False
4 10 4 1 False False
5 6 0 1 False False
6 7 1 1 False False
7 2 1 0 False False
8 9 0 0 False False
9 6 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False True False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 11550 TOP 0
1 False 12431 JUNGLE 0
2 False 10506 MIDDLE 0
3 False 13397 BOTTOM 0
4 False 11407 UTILITY 0
5 False 17895 TOP 0
6 False 13512 JUNGLE 0
7 False 14517 MIDDLE 1
8 False 11561 BOTTOM 0
9 False 10107 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 6333 6630 3047 3071 0 0 3340
1 1 3153 2031 3047 3053 6692 1031 3364
2 1 6656 3158 3916 4629 1056 1026 3340
3 1 1055 6673 3006 3031 6333 3086 3363
4 1 3857 3072 6671 1031 3006 1037 3364
5 0 6333 3143 6631 3047 3075 3742 3340
6 0 6691 3508 3006 3133 0 6676 3364
7 0 1056 3041 3006 3115 4633 3089 3340
8 0 1055 6671 3006 3085 3033 3086 3340
9 0 3853 6655 3020 4628 1058 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 4 3 1
1 3 8 3 1
2 1 3 3 1
3 2 7 4 1
4 1 8 3 1
5 3 16 5 2
6 2 7 3 2
7 1 5 5 2
8 0 2 0 1
9 2 6 2 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 753 50337 2629
1 550 19302 1384
2 1787 73168 10279
3 693 15220 1291
4 397 15468 5602
5 381 10147 2036
6 480 5748 0
7 930 125362 15952
8 305 1896 1286
9 658 27529 11432
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 7701 18 1 0
1 8083 146 1 0
2 6585 9 1 0
3 5690 19 1 0
4 6014 19 1 1
5 7680 13 0 0
6 4237 183 0 0
7 4441 4 0 0
8 4753 0 0 0
9 2457 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 84775
1 0 2 139590
2 0 3 16887
3 0 4 144302
4 0 5 78197
5 0 6 161107
6 0 7 191210
7 0 8 43188
8 0 9 129726
9 0 10 2801
physicalDamageDealtToChampions physicalDamageTaken role \
0 9136 18387 SOLO
1 9222 26035 NONE
2 1242 9622 SOLO
3 12646 16473 CARRY
4 11336 15796 SUPPORT
5 29011 20089 SOLO
6 13634 21441 NONE
7 2171 7998 SOLO
8 9159 12532 CARRY
9 793 6145 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 5 14 5 4 239
1 15 11 5 4 130
2 6 14 4 4 166
3 7 3 5 4 284
4 5 4 5 14 209
5 3 12 6 4 51
6 6 4 16 11 257
7 4 4 2 12 340
8 5 7 4 4 191
9 5 4 5 14 132
summonerName teamEarlySurrendered teamId teamPosition \
0 rcã False 100 TOP
1 LordSparks86 False 100 JUNGLE
2 Jaden Wang False 100 MIDDLE
3 Phasekila False 100 BOTTOM
4 hersh1e False 100 UTILITY
5 JapaneseOPPAI False 200 TOP
6 StalwartHide False 200 JUNGLE
7 Rotome False 200 MIDDLE
8 MoistureCreature False 200 BOTTOM
9 Alece False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 20 2079 137764 12532
1 17 2079 166803 12151
2 27 2079 134265 15947
3 23 2079 160385 14206
4 25 2079 105961 20424
5 39 2079 210437 34673
6 5 2079 220366 18756
7 8 2079 174039 18582
8 19 2079 143213 11016
9 36 2079 31240 13134
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 29256 4587 154 240
1 36444 15663 38 508
2 17034 3450 182 84
3 24662 5144 202 124
4 24176 3619 77 63
5 31885 9273 207 319
6 26197 11167 31 151
7 14832 8360 236 303
8 19753 2798 162 65
9 9934 870 19 146
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 175 1 2652
1 272 1 7910
2 102 1 44209
3 230 1 862
4 278 1 12294
5 178 1 39182
6 234 1 23406
7 48 5 5489
8 224 3 11590
9 137 1 908
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 767 3168 0 9
1 1544 2325 0 9
2 4425 826 1 9
3 268 2498 2 9
4 3485 2365 0 9
5 3624 4115 2 3
6 5121 518 2 3
7 459 2391 2 3
8 570 2467 1 3
9 908 1331 1 3
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 18 0 2 10 False
1 32 5 3 4 False
2 23 4 0 12 False
3 21 3 1 13 False
4 68 5 6 25 False
5 12 1 0 7 True
6 36 1 7 9 True
7 22 1 2 10 True
8 20 0 2 11 True
9 59 1 3 28 True ,
assists baronKills bountyLevel champLevel championName \
0 2 0 0 15 Gwen
1 7 0 0 12 Poppy
2 3 0 0 14 Kayle
3 9 0 0 14 Ashe
4 10 0 0 12 Seraphine
5 9 0 1 17 Jax
6 12 1 1 13 Rammus
7 4 0 3 16 Sylas
8 8 0 1 14 Twitch
9 20 0 0 13 Lulu
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2739 2829 2739
1 803 4411 803
2 2598 6836 2598
3 2063 6182 2063
4 830 1746 830
5 7416 16876 7416
6 827 22299 827
7 3626 7432 3626
8 4467 17321 4467
9 1323 2324 1323
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 4 0 0 False False
1 13 1 1 False False
2 5 1 0 False False
3 6 1 1 False False
4 6 0 0 False False
5 3 1 0 False False
6 5 0 2 False False
7 4 0 0 False False
8 6 1 0 False True
9 1 0 0 True False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False True False
8 True False False
9 True False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 12067 TOP 0
1 False 6873 JUNGLE 0
2 False 9837 MIDDLE 0
3 False 10623 BOTTOM 0
4 False 8377 UTILITY 0
5 False 13370 TOP 0
6 False 9812 JUNGLE 0
7 False 14174 MIDDLE 1
8 False 12594 BOTTOM 0
9 False 8524 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 1054 4633 3047 3100 4629 1058 3340
1 1 3068 3047 3076 1011 0 0 3340
2 1 1056 3006 1082 3115 4633 0 3340
3 1 1055 3153 6672 3006 3086 1042 3340
4 1 3853 6617 3020 3011 3114 1052 3364
5 0 2033 3153 3158 3078 3053 1029 3340
6 0 3047 2031 6664 4401 3076 1028 3364
7 0 6656 3157 0 3100 3041 3020 3340
8 0 3085 3031 3006 6672 0 0 3340
9 0 3853 2065 6616 3009 3114 1033 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 3 7 3 2
1 0 0 0 0
2 0 4 0 1
3 2 5 2 1
4 0 3 0 1
5 1 5 2 1
6 0 1 0 1
7 4 17 9 5
8 3 10 4 1
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 745 50856 6286
1 551 15947 2674
2 437 74448 6566
3 606 1192 1192
4 876 23854 10717
5 746 35244 5284
6 796 67588 5472
7 589 140459 22778
8 758 4656 779
9 1651 11920 3319
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 6762 12 1 0
1 12497 64 1 1
2 6851 20 1 0
3 6675 16 1 0
4 5704 0 1 0
5 5537 40 0 0
6 6090 120 0 0
7 6054 44 0 0
8 6768 16 0 0
9 6282 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 32015
1 0 2 57418
2 0 3 31317
3 0 4 108643
4 1 5 2349
5 0 6 145189
6 0 7 26825
7 0 8 6968
8 0 9 122063
9 0 10 5326
physicalDamageDealtToChampions physicalDamageTaken role \
0 2298 11924 SOLO
1 7565 13955 NONE
2 2884 8131 SOLO
3 14342 10132 CARRY
4 1391 8582 SUPPORT
5 12950 12095 SOLO
6 1582 16937 NONE
7 452 17475 SOLO
8 20477 9667 CARRY
9 1161 5931 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 4 14 257
1 13 11 4 4 191
2 4 4 3 12 340
3 5 4 4 7 107
4 4 4 6 14 131
5 2 12 3 4 302
6 4 4 18 11 275
7 4 14 5 4 924
8 6 14 4 4 420
9 5 7 4 4 307
summonerName teamEarlySurrendered teamId teamPosition \
0 StalwartHide False 100 TOP
1 MoistureCreature False 100 JUNGLE
2 Rotome False 100 MIDDLE
3 TG Catalyst False 100 BOTTOM
4 Alece False 100 UTILITY
5 Snaggleberry False 200 TOP
6 Pikachuboomboom False 200 JUNGLE
7 VAN Xiao Hou Zi False 200 MIDDLE
8 IGTM7 False 200 BOTTOM
9 h ó n ę y False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 4 1833 113353 13643
1 23 1833 88321 10847
2 8 1833 110181 9450
3 36 1833 117244 17508
4 25 1833 26645 12550
5 19 1833 198894 18550
6 32 1833 109083 8075
7 28 1833 151129 23860
8 9 1833 152706 27766
9 33 1833 17325 4559
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 19775 5009 167 72
1 29164 3837 28 509
2 16646 4302 156 225
3 18501 2314 160 618
4 15684 4614 19 112
5 21395 1408 209 155
6 24557 8596 14 461
7 24614 9002 143 486
8 17759 2775 159 141
9 12595 4774 14 210
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 157 1 30481
1 359 1 14956
2 170 5 4416
3 205 3 7408
4 186 5 442
5 132 1 18460
6 173 1 14669
7 128 1 3701
8 204 1 25987
9 41 5 78
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 5058 1088 1 8
1 608 2711 0 8
2 0 1663 2 8
3 1974 1692 0 8
4 442 1397 0 8
5 316 3762 2 3
6 1020 1529 1 3
7 630 1084 3 3
8 6510 1324 1 3
9 78 381 1 3
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 16 0 1 9 False
1 26 1 1 10 False
2 8 1 1 5 False
3 13 1 0 8 False
4 37 0 5 20 False
5 19 1 0 9 True
6 16 0 2 1 True
7 20 0 1 10 True
8 16 2 2 9 True
9 55 0 4 28 True ,
assists baronKills bountyLevel champLevel championName \
0 9 0 0 18 Senna
1 7 0 0 15 Sejuani
2 3 0 1 17 Pantheon
3 3 0 9 17 Xayah
4 15 1 2 15 Xerath
5 3 0 0 18 Yasuo
6 5 0 0 14 Yone
7 3 0 0 16 Kayle
8 4 0 0 15 Lucian
9 2 0 1 13 Zyra
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 6681 12859 6681
1 125 21368 125
2 4011 17000 4011
3 9005 30543 9005
4 945 3561 945
5 6179 20423 6179
6 0 14995 0
7 1703 3929 1703
8 2514 3234 2514
9 0 0 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 2 1 0 False False
1 4 0 1 False False
2 7 2 1 False False
3 1 0 1 False False
4 1 9 0 False False
5 5 0 0 False False
6 5 0 2 False True
7 2 1 0 False False
8 11 1 0 False False
9 7 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False True False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 15924 MIDDLE 0
1 False 11918 JUNGLE 0
2 False 12575 TOP 0
3 False 17182 BOTTOM 2
4 False 10864 UTILITY 0
5 False 14843 TOP 0
6 False 10582 JUNGLE 0
7 False 12094 MIDDLE 0
8 False 10887 BOTTOM 0
9 False 9825 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3042 3124 3009 6672 3094 3134 3340
1 0 3068 3075 3047 3083 2055 1033 3364
2 0 3053 6692 3047 6333 3123 0 3340
3 0 6671 3072 3006 3508 3031 2421 3363
4 0 3853 3157 2055 6655 3020 1058 3364
5 2 6673 3033 3006 3031 6333 1053 3340
6 2 6673 1038 3006 3072 1037 0 3364
7 2 1082 3157 3115 4633 3006 1058 3363
8 2 3508 6671 1038 1018 1037 3006 3363
9 2 1058 3070 6653 3853 4637 3158 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 7 4 2
1 1 3 2 1
2 0 3 0 1
3 2 14 9 1
4 1 3 2 1
5 2 6 3 2
6 1 3 3 1
7 1 3 2 1
8 0 0 0 0
9 0 3 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 1440 3105 563
1 849 78739 4263
2 358 4866 154
3 1529 1642 1639
4 1139 72213 29293
5 742 3124 730
6 1107 34468 2467
7 1578 95288 8948
8 364 7029 1985
9 401 69496 23438
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 6584 28 0 0
1 14391 179 0 0
2 7142 23 0 0
3 6297 28 0 0
4 7554 12 0 0
5 3932 32 1 0
6 5710 136 1 1
7 5466 12 1 0
8 10943 8 1 0
9 10911 0 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 163987
1 0 2 98487
2 0 3 166815
3 0 4 266793
4 0 5 4107
5 0 6 260519
6 0 7 130393
7 0 8 38701
8 0 9 151337
9 0 10 2920
physicalDamageDealtToChampions physicalDamageTaken role \
0 21609 7989 SOLO
1 4702 25639 NONE
2 11664 18335 SOLO
3 14385 7660 CARRY
4 307 7533 SUPPORT
5 11601 15548 SOLO
6 6173 19784 NONE
7 2122 15617 SOLO
8 8878 13456 CARRY
9 584 6974 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 2 12 398
1 19 11 6 4 106
2 5 14 4 4 140
3 4 7 2 4 295
4 4 4 5 3 384
5 4 4 3 12 45
6 5 4 15 11 257
7 3 4 2 12 340
8 6 7 4 4 271
9 6 3 5 4 331
summonerName teamEarlySurrendered teamId teamPosition \
0 BenisPro False 100 MIDDLE
1 BenisMan24 False 100 JUNGLE
2 BenisBeater False 100 TOP
3 Ømegaßenis False 100 BOTTOM
4 BrokenBenis False 100 UTILITY
5 Astico False 200 TOP
6 StalwartHide False 200 JUNGLE
7 Rotome False 200 MIDDLE
8 Egirl Applebees False 200 BOTTOM
9 Egirl in heat False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 36 2163 186957 24936
1 20 2163 191444 9620
2 21 2163 183388 13265
3 7 2163 281301 16252
4 31 2163 76416 29601
5 14 2163 269390 12742
6 18 2163 174319 11227
7 5 2163 154315 11190
8 0 2163 158444 10941
9 61 2163 76826 24022
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 15110 8637 257 279
1 40796 12429 23 453
2 26709 8867 227 37
3 14011 5717 294 57
4 15917 2911 45 172
5 21794 4717 254 151
6 26276 9155 47 286
7 22355 10756 218 242
8 25172 4195 217 0
9 18275 1808 59 313
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 106 5 19864
1 99 4 14216
2 224 1 11706
3 21 2 12865
4 33 1 96
5 149 1 5745
6 209 1 9457
7 98 5 20325
8 245 3 77
9 173 1 4410
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 2764 536 2 5
1 655 765 0 5
2 1446 1231 1 5
3 227 54 5 5
4 0 829 0 5
5 410 2313 2 8
6 2586 781 0 8
7 120 1272 2 8
8 77 772 1 8
9 0 389 0 8
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 26 1 1 13 True
1 25 2 6 1 True
2 27 2 4 13 True
3 27 1 1 8 True
4 85 11 10 35 True
5 16 0 0 9 False
6 24 0 5 7 False
7 15 1 1 8 False
8 42 1 4 13 False
9 54 0 10 23 False ,
assists baronKills bountyLevel champLevel championName \
0 7 0 0 14 Pantheon
1 8 0 0 12 Rammus
2 6 0 0 14 Syndra
3 5 0 0 12 Seraphine
4 6 0 0 11 Thresh
5 9 0 1 15 Malphite
6 11 1 1 15 Viego
7 4 0 0 15 Yasuo
8 2 0 14 14 Tristana
9 19 0 1 12 Alistar
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 0 0 0
1 0 1962 0
2 363 1661 363
3 474 474 474
4 324 324 324
5 6092 8672 6092
6 3148 42597 3148
7 6285 13157 6285
8 7965 18624 7965
9 289 1179 289
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 4 1 0 False False
1 7 0 0 True False
2 6 1 0 False True
3 8 1 0 False False
4 9 2 0 False False
5 6 0 0 False False
6 2 3 4 False False
7 4 0 0 False False
8 1 1 0 False False
9 3 10 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False True False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 9463 TOP 0
1 False 7449 JUNGLE 0
2 False 9804 MIDDLE 0
3 False 8685 BOTTOM 0
4 False 6475 UTILITY 0
5 False 10417 TOP 0
6 False 12381 JUNGLE 0
7 False 12270 MIDDLE 1
8 False 13969 BOTTOM 1
9 False 8223 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 2 6692 2033 3111 3074 3044 0 3340
1 2 4636 3020 1058 1058 0 0 3364
2 2 4632 0 3020 6653 3135 3916 3363
3 2 2065 3070 1052 3158 6616 4632 3364
4 2 3857 3190 2055 3076 1011 3117 3364
5 0 3191 2420 1082 3020 3108 6655 3340
6 0 6672 1036 2055 3140 3091 3111 3364
7 0 6673 3046 3140 1038 3006 1037 3364
8 0 2421 6671 3031 3046 1055 3006 3363
9 0 3190 2031 0 3860 3117 3067 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 2 2 1
1 0 3 0 1
2 2 5 2 2
3 1 4 3 1
4 0 2 0 1
5 1 5 2 1
6 1 8 6 1
7 1 5 3 2
8 1 14 14 3
9 0 2 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 677 7610 477
1 623 49340 5419
2 447 90273 9618
3 560 63802 8688
4 392 6602 3429
5 431 52197 15594
6 1229 21372 2171
7 899 18143 707
8 180 22604 2724
9 702 8004 4423
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 7389 0 1 0
1 5011 80 1 0
2 3837 5 1 0
3 5304 0 1 0
4 5865 0 1 0
5 7029 0 0 0
6 4619 155 0 0
7 6291 63 0 0
8 5866 33 0 0
9 5935 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 102682
1 0 2 18219
2 0 3 9236
3 0 4 10552
4 0 5 5092
5 0 6 34581
6 0 7 131120
7 0 8 170223
8 0 9 118502
9 0 10 2825
physicalDamageDealtToChampions physicalDamageTaken role \
0 10400 8520 NONE
1 980 16598 NONE
2 1007 10082 SOLO
3 1706 9685 CARRY
4 1146 13626 SUPPORT
5 1719 8484 SOLO
6 12168 14463 NONE
7 8739 10292 SOLO
8 18008 6861 CARRY
9 561 6094 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 4 2 12 340
1 6 6 16 11 257
2 6 14 4 4 623
3 4 4 6 7 468
4 6 14 5 4 250
5 3 4 3 14 269
6 12 11 4 4 644
7 3 4 3 14 120
8 3 4 3 7 487
9 3 14 10 4 38
summonerName teamEarlySurrendered teamId teamPosition \
0 Rotome False 100 TOP
1 StalwartHide False 100 JUNGLE
2 A Lunar Eclipse False 100 MIDDLE
3 Songstress Sera False 100 BOTTOM
4 thresh Iantern False 100 UTILITY
5 HealerGame False 200 TOP
6 RDZoilking False 200 JUNGLE
7 lin ran False 200 MIDDLE
8 IconoclastC False 200 BOTTOM
9 Rykilla False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 13 1688 113537 10878
1 25 1688 73604 7232
2 26 1688 101913 11362
3 30 1688 77194 10394
4 30 1688 16487 5505
5 33 1688 87386 17922
6 17 1688 178047 16462
7 27 1688 193831 9845
8 12 1688 143346 21395
9 34 1688 14466 5217
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 16668 3884 177 38
1 22307 5335 15 468
2 14495 1699 155 228
3 15882 3515 138 183
4 20593 1026 33 67
5 15738 869 128 453
6 19548 12535 33 237
7 17031 5673 163 193
8 14651 7105 152 94
9 12467 5780 28 66
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 88 1 3245
1 193 1 6044
2 141 1 2403
3 135 5 2840
4 198 3 4793
5 200 1 608
6 82 3 25554
7 138 1 5464
8 8 3 2240
9 80 5 3635
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 758 0 10
1 832 697 0 10
2 737 575 0 10
3 0 892 0 10
4 929 1100 0 10
5 608 224 4 0
6 2122 465 2 0
7 398 447 2 0
8 662 1923 2 0
9 232 438 0 0
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 12 1 1 6 False
1 13 0 1 3 False
2 11 1 0 9 False
3 11 1 0 9 False
4 47 3 7 23 False
5 15 0 1 8 True
6 23 24 3 5 True
7 8 0 2 3 True
8 18 1 4 9 True
9 65 10 7 28 True ,
assists baronKills bountyLevel champLevel championName \
0 8 0 0 13 Sylas
1 6 0 0 14 LeeSin
2 6 0 0 16 Kayle
3 6 0 0 14 Samira
4 12 0 0 13 Lulu
5 12 0 0 14 Aatrox
6 13 0 0 14 FiddleSticks
7 6 0 5 17 Veigar
8 11 0 1 15 Varus
9 15 0 0 13 Seraphine
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 1613 4308 1613
1 1842 21880 1842
2 3604 3936 3604
3 0 6333 0
4 0 852 0
5 4332 10554 4332
6 266 5032 266
7 9997 12658 9997
8 7289 12001 7289
9 2993 3262 2993
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 10 5 0 False True
1 7 12 2 True False
2 7 0 0 False False
3 6 0 1 False False
4 6 4 0 False False
5 11 1 0 False False
6 6 0 0 False False
7 3 0 0 False False
8 4 1 1 False False
9 6 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False True False
9 True False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 9366 TOP 0
1 False 11354 JUNGLE 0
2 False 10708 MIDDLE 0
3 False 12847 BOTTOM 0
4 False 6488 UTILITY 0
5 False 9425 TOP 0
6 False 8983 JUNGLE 0
7 False 15626 MIDDLE 0
8 False 13749 BOTTOM 1
9 False 8808 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 2 4636 3157 2033 3158 1082 3916 3340
1 2 3133 3074 3047 6692 2055 1031 3340
2 2 1056 3115 3006 4633 3113 0 3340
3 2 1055 6673 3036 3072 1018 3158 3340
4 2 3851 6617 1057 3114 3158 0 3364
5 0 1055 6630 3158 6609 3077 1036 3340
6 0 2031 3157 3152 3020 1052 0 3330
7 0 2033 6656 3157 3041 3089 3020 3363
8 0 3133 6672 3006 3085 3031 1018 3340
9 0 3853 6617 6616 3158 1052 3114 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 5 0 1
1 1 11 10 2
2 0 3 0 1
3 3 10 4 3
4 0 1 0 1
5 0 4 0 1
6 0 2 0 1
7 3 17 9 4
8 2 11 6 2
9 0 2 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 468 75418 21175
1 1183 29637 3416
2 734 100049 11052
3 745 15384 3272
4 642 11103 3215
5 423 0 0
6 499 115499 14806
7 969 160670 31784
8 818 9494 4812
9 421 26234 7936
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 18425 14 1 0
1 13711 114 1 0
2 13444 12 1 0
3 9330 29 1 0
4 6865 5 1 0
5 17009 0 0 0
6 10082 132 0 0
7 6514 19 0 0
8 7140 11 0 0
9 5864 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 7990
1 0 2 91881
2 0 3 41062
3 0 4 116269
4 0 5 2160
5 0 6 72135
6 0 7 10575
7 0 8 12434
8 0 9 130710
9 0 10 2436
physicalDamageDealtToChampions physicalDamageTaken role \
0 294 19260 SOLO
1 17651 18947 NONE
2 2330 7913 SOLO
3 16785 11518 CARRY
4 354 6901 SUPPORT
5 18576 19426 SOLO
6 88 21061 NONE
7 1025 6784 SOLO
8 18363 8116 CARRY
9 759 5970 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 5 12 366
1 4 4 15 11 334
2 2 12 3 4 175
3 4 7 4 4 225
4 3 14 4 4 193
5 4 4 4 12 257
6 0 4 10 11 44
7 2 4 3 12 338
8 4 4 4 7 231
9 4 4 3 14 130
summonerName teamEarlySurrendered teamId teamPosition \
0 Frost EXIA False 100 TOP
1 ShangL1uShangDan False 100 JUNGLE
2 pangfei False 100 MIDDLE
3 Lawlietz False 100 BOTTOM
4 Vœråçiøus False 100 UTILITY
5 SussieAmogus False 200 TOP
6 IXIXIXIXIXIXI False 200 JUNGLE
7 Rotome False 200 MIDDLE
8 Kelthzard False 200 BOTTOM
9 Alece False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 22 1718 88223 21520
1 12 1718 132756 21826
2 3 1718 168665 13425
3 4 1718 133249 20460
4 21 1718 13527 3834
5 20 1718 80247 18576
6 41 1718 130439 15298
7 59 1718 178775 32911
8 31 1718 148707 25553
9 21 1718 29168 9194
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 38565 9411 89 366
1 33901 9546 15 497
2 21770 5564 200 155
3 21598 3171 136 63
4 13864 1909 12 208
5 37160 12904 107 219
6 31523 17575 16 463
7 13518 2271 193 150
8 15399 3898 192 266
9 11883 3593 22 103
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 316 1 4815
1 257 1 11236
2 225 4 27552
3 161 3 1596
4 151 5 264
5 329 1 8112
6 120 1 4364
7 127 1 5671
8 142 2 8503
9 175 5 497
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 50 879 0 9
1 758 1241 1 9
2 41 412 1 9
3 402 750 0 9
4 264 97 0 9
5 0 724 1 2
6 404 380 0 2
7 102 220 4 2
8 2377 143 4 2
9 497 48 0 2
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 27 5 3 12 False
1 31 14 3 21 False
2 8 0 0 5 False
3 10 0 0 7 False
4 43 4 3 20 False
5 22 1 7 9 True
6 35 0 3 0 True
7 13 1 0 5 True
8 20 1 6 7 True
9 34 0 1 18 True ,
assists baronKills bountyLevel champLevel championName \
0 0 0 6 15 Garen
1 4 0 1 11 LeeSin
2 4 0 0 12 Pantheon
3 8 0 2 11 Ashe
4 10 0 0 11 Seraphine
5 1 0 0 11 Shen
6 3 0 0 11 RekSai
7 2 0 0 10 Akali
8 1 0 0 10 Draven
9 3 0 0 10 Morgana
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 5025 5989 5025
1 1411 14134 1411
2 600 1326 600
3 1752 2898 1752
4 600 902 600
5 0 0 0
6 0 5656 0
7 0 2750 0
8 650 650 650
9 674 674 674
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 1 0 0 False False
1 5 1 1 False False
2 3 3 0 False True
3 2 0 0 False False
4 1 0 0 False False
5 6 0 0 False False
6 4 1 1 False False
7 6 0 0 False False
8 5 0 0 False False
9 4 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 8866 TOP 0
1 True 7498 JUNGLE 0
2 True 7309 MIDDLE 0
3 True 7460 BOTTOM 0
4 True 5655 UTILITY 0
5 True 5229 TOP 0
6 True 7659 JUNGLE 0
7 True 5137 MIDDLE 0
8 True 7623 BOTTOM 0
9 True 4357 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1054 6029 1036 3006 3071 0 3340
1 0 6692 2031 1036 3047 1028 0 3340
2 0 6692 2033 3158 1053 3133 2055 3340
3 0 1055 6672 3006 3086 1036 0 3340
4 0 3853 3158 6617 3114 0 0 3364
5 0 1054 4635 3047 3076 0 0 3340
6 0 6693 2031 3134 1036 1028 3047 3364
7 0 4636 0 1001 0 0 0 3340
8 0 3036 3508 3006 1055 0 0 3340
9 0 3853 4005 1001 2055 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 7 6 3
1 2 7 3 1
2 2 5 2 2
3 2 5 3 2
4 0 1 0 1
5 0 1 0 1
6 2 6 2 1
7 0 1 0 1
8 2 4 2 2
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 392 0 0
1 367 17710 776
2 446 311 311
3 826 764 764
4 830 19033 6090
5 365 25019 5610
6 478 5879 0
7 251 33935 6298
8 476 0 0
9 473 10743 2995
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 5480 4 0 0
1 2925 88 0 0
2 4050 0 0 0
3 1753 0 0 0
4 1582 0 0 0
5 735 0 0 0
6 2118 96 0 0
7 517 0 0 0
8 3277 4 0 0
9 2887 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 92538
1 0 2 57605
2 0 3 52915
3 0 4 51540
4 0 5 2071
5 0 6 27666
6 0 7 71610
7 0 8 7705
8 0 9 71198
9 0 10 2364
physicalDamageDealtToChampions physicalDamageTaken role \
0 10323 10056 DUO
1 6297 13127 SUPPORT
2 10192 6522 SUPPORT
3 9335 5135 SUPPORT
4 879 2741 SUPPORT
5 4979 13745 SUPPORT
6 8616 15453 SUPPORT
7 674 11587 SUPPORT
8 8013 6914 DUO
9 253 4843 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 4 14 193
1 2 4 10 11 257
2 2 4 3 14 338
3 2 4 2 7 231
4 1 4 3 14 130
5 2 4 1 12 61
6 2 4 10 11 253
7 3 4 2 12 438
8 2 4 3 7 201
9 2 4 2 3 31
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 KnG Nightmare False 100 TOP 32
1 SussieAmogus False 100 JUNGLE 10
2 Rotome False 100 MIDDLE 15
3 Kelthzard False 100 BOTTOM 29
4 Alece False 100 UTILITY 14
5 1Cr34K False 200 TOP 20
6 LASTGAMEDONE False 200 JUNGLE 19
7 MagicClaps False 200 MIDDLE 1
8 Chery1 False 200 BOTTOM 6
9 tEiLyHAdonis False 200 UTILITY 15
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1143 97730 14034
1 1143 84660 7534
2 1143 53520 10797
3 1143 64354 10494
4 1143 21477 7342
5 1143 54683 10866
6 1143 89884 10815
7 1143 44987 6990
8 1143 73002 8266
9 1143 13107 3249
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 16181 1642 152 68
1 16734 6252 7 278
2 11354 1985 97 19
3 7464 887 111 407
4 4386 1740 22 76
5 17862 1051 103 166
6 17930 9327 10 252
7 12622 274 97 43
8 10896 2494 137 44
9 8002 558 16 25
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 21 1 5191
1 116 1 9344
2 80 1 294
3 60 2 12050
4 21 4 372
5 144 1 1996
6 67 1 12393
7 126 1 3346
8 135 2 1804
9 107 1 0
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 3711 644 2 0
1 461 681 0 0
2 294 781 0 0
3 394 575 1 0
4 372 62 0 0
5 276 3381 0 3
6 2198 358 0 3
7 18 518 0 3
8 252 704 0 3
9 0 271 0 3
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 8 0 0 5 True
1 10 1 0 6 True
2 14 4 1 7 True
3 8 0 0 5 True
4 12 0 1 7 True
5 3 0 0 2 False
6 10 1 0 3 False
7 13 0 3 6 False
8 4 0 0 2 False
9 17 3 1 8 False ,
assists baronKills bountyLevel champLevel championName \
0 0 0 1 16 Darius
1 7 0 0 15 Kayn
2 7 0 9 18 Kayle
3 6 0 1 13 Ashe
4 15 0 0 13 Seraphine
5 5 0 0 14 Gwen
6 10 0 0 14 JarvanIV
7 3 0 0 16 Yone
8 7 0 0 14 Aphelios
9 13 0 0 12 Morgana
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 11466 17628 11466
1 0 11041 0
2 8865 23339 8865
3 3604 6537 3604
4 1595 2118 1595
5 0 1833 0
6 249 29974 249
7 560 4749 560
8 3366 4588 3366
9 78 986 78
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 6 0 1 False False
1 10 0 1 False False
2 0 1 1 False False
3 9 1 0 False False
4 5 0 0 False True
5 11 1 0 False False
6 8 1 2 False False
7 4 3 0 False False
8 7 5 0 False False
9 7 3 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 14894 TOP 0
1 False 11772 JUNGLE 0
2 False 15329 MIDDLE 1
3 False 9454 BOTTOM 0
4 False 9180 UTILITY 1
5 False 8212 TOP 0
6 False 9881 JUNGLE 0
7 False 12993 MIDDLE 0
8 False 12090 BOTTOM 0
9 False 7725 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1057 6333 3053 3047 3078 3051 3340
1 0 3158 6693 3814 3042 3133 0 3364
2 0 1056 3115 3041 3006 4633 1058 3340
3 0 1055 6672 3006 3046 1042 1018 3340
4 0 3853 6617 3158 6616 3011 1004 3364
5 2 4633 1054 3115 0 0 3020 3340
6 2 3047 6630 2031 3053 3076 1028 3340
7 2 1054 6673 3006 3072 3031 0 3340
8 2 3085 6672 3047 3031 1036 0 3363
9 2 3853 2055 3157 3009 4005 1028 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 3 15 6 2
1 1 8 2 1
2 1 9 9 2
3 0 2 0 1
4 1 3 2 1
5 0 3 0 1
6 1 4 2 1
7 1 9 6 2
8 3 11 4 2
9 1 3 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 671 0 0
1 287 9739 2571
2 0 149495 14894
3 289 1597 1497
4 679 32440 11229
5 264 33448 5469
6 702 14372 708
7 909 29511 3850
8 393 1650 949
9 543 14895 8534
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 7339 20 0 0
1 5396 159 0 0
2 2002 52 0 0
3 3658 7 0 0
4 3528 0 0 0
5 6603 0 1 0
6 9030 132 1 0
7 3278 8 1 0
8 6476 4 1 0
9 5803 0 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 166461
1 0 2 162589
2 0 3 42823
3 0 4 84782
4 0 5 2008
5 0 6 22091
6 0 7 111856
7 0 8 124709
8 0 9 108071
9 0 10 3306
physicalDamageDealtToChampions physicalDamageTaken role \
0 27354 13947 NONE
1 17479 28226 NONE
2 3286 9381 SOLO
3 14281 11629 CARRY
4 885 8067 SUPPORT
5 2709 21833 SOLO
6 15782 24907 NONE
7 10745 15017 SOLO
8 16515 12314 CARRY
9 871 11588 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 5 4 8 14 256
1 15 11 3 4 421
2 2 4 4 12 338
3 4 4 5 7 231
4 4 4 4 14 130
5 2 12 4 4 415
6 4 4 10 11 190
7 3 4 5 14 85
8 4 4 5 7 1059
9 6 14 4 4 274
summonerName teamEarlySurrendered teamId teamPosition \
0 SussieAmogus False 100 TOP
1 rhaast omegalul False 100 JUNGLE
2 Rotome False 100 MIDDLE
3 Kelthzard False 100 BOTTOM
4 Alece False 100 UTILITY
5 Yuunagi False 200 TOP
6 forgottentowel False 200 JUNGLE
7 Not Toxic Player False 200 MIDDLE
8 Kìmchì False 200 BOTTOM
9 Épreuve False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 25 1776 187192 33762
1 9 1776 178926 21290
2 9 1776 198164 18538
3 43 1776 100565 16755
4 28 1776 34871 12537
5 3 1776 80810 12284
6 27 1776 143174 17607
7 15 1776 158248 16943
8 23 1776 125273 20537
9 52 1776 19400 10505
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 27428 7695 167 212
1 35887 14588 13 302
2 12756 8070 234 414
3 17383 2758 155 580
4 12292 4194 29 207
5 31164 4798 122 49
6 37076 11812 30 431
7 20236 3995 215 110
8 19440 6339 148 205
9 18338 2677 8 82
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 199 1 20731
1 266 1 6598
2 0 5 5845
3 224 4 14184
4 110 5 422
5 318 1 25269
6 247 1 16945
7 103 1 4027
8 149 4 15552
9 184 1 1198
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 6407 6141 3 2
1 1238 2264 0 2
2 357 1372 5 2
3 976 2094 1 2
4 422 696 0 2
5 4105 2727 0 10
6 1117 3137 0 10
7 2347 1940 1 10
8 3072 650 1 10
9 1100 946 0 10
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 20 0 3 10 True
1 19 0 5 0 True
2 21 1 3 9 True
3 15 1 1 10 True
4 33 0 2 15 True
5 15 1 0 9 False
6 18 1 0 10 False
7 18 3 1 11 False
8 28 5 2 12 False
9 56 7 1 24 False ,
assists baronKills bountyLevel champLevel championName \
0 6 0 0 14 Gnar
1 7 0 0 14 Viego
2 10 0 0 14 Viktor
3 6 0 0 12 Jinx
4 12 0 1 13 Bard
5 7 0 1 14 DrMundo
6 12 0 0 14 Nidalee
7 10 0 0 15 Kayle
8 5 0 0 14 Samira
9 25 0 0 13 Lulu
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 1183 1565 1183
1 0 6635 0
2 3368 5644 3368
3 5890 8355 5890
4 270 787 270
5 4777 5070 4777
6 286 31929 286
7 5517 11492 5517
8 4054 10940 4054
9 1193 3605 1193
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 9 2 0 False False
1 6 5 1 False False
2 5 1 0 False False
3 11 0 0 False False
4 10 4 0 False False
5 4 1 0 False False
6 4 1 2 False False
7 2 1 1 False False
8 12 0 0 True False
9 7 2 0 False True
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False True False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 10734 TOP 0
1 True 10575 JUNGLE 0
2 True 9792 MIDDLE 0
3 True 10442 BOTTOM 0
4 True 8517 UTILITY 0
5 True 8422 TOP 0
6 True 9626 JUNGLE 0
7 True 11642 MIDDLE 1
8 True 17194 BOTTOM 0
9 True 8142 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 6632 3153 3076 3111 3044 0 3340
1 1 6672 6609 1053 3111 1043 2055 3364
2 1 3157 2033 6653 1001 3165 0 3340
3 1 1038 3046 6672 3006 3123 1018 3363
4 1 3853 3916 3108 3067 2065 3009 3364
5 0 2055 3068 3047 3075 1028 0 3364
6 0 4636 3157 1052 1082 0 3158 3364
7 0 3115 3157 1082 4633 0 3006 3340
8 0 3033 6673 6676 3006 3031 3072 3340
9 0 3853 6617 3111 3504 3114 2055 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 5 2 1
1 3 9 3 2
2 0 3 0 1
3 2 8 2 2
4 0 4 0 1
5 1 5 2 1
6 1 3 2 1
7 1 5 4 2
8 6 27 5 4
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 306 9148 4208
1 726 10896 1330
2 785 88744 16776
3 298 1502 592
4 249 16079 8648
5 785 41862 7813
6 651 116510 8761
7 1351 81816 9433
8 222 13284 5795
9 318 14209 4208
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 11804 0 0 0
1 4630 98 0 0
2 5605 0 0 0
3 7686 16 0 0
4 7260 0 0 0
5 6947 4 0 0
6 7083 141 0 0
7 7037 20 0 0
8 9450 12 0 0
9 3319 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 82455
1 0 2 83219
2 0 3 10744
3 0 4 101451
4 0 5 3942
5 0 6 21584
6 0 7 17933
7 0 8 33870
8 0 9 123331
9 0 10 6340
physicalDamageDealtToChampions physicalDamageTaken role \
0 17962 12302 SOLO
1 10822 20872 NONE
2 921 6497 SOLO
3 11441 14526 CARRY
4 2314 11849 SUPPORT
5 3728 15593 SOLO
6 713 23825 NONE
7 2549 6820 SOLO
8 37993 21692 CARRY
9 1425 11780 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 12 4 4 81
1 12 11 3 4 136
2 2 12 4 4 212
3 4 4 5 7 455
4 4 4 7 14 221
5 4 4 2 12 391
6 3 4 15 11 279
7 2 4 3 12 337
8 5 7 4 4 263
9 4 14 4 4 299
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 Cyanites False 100 TOP 35
1 blacksmithgu False 100 JUNGLE 10
2 Athereis I False 100 MIDDLE 22
3 Kuroi Jukai False 100 BOTTOM 17
4 Curo Arcane False 100 UTILITY 20
5 hani False 200 TOP 7
6 Jay Jay False 200 JUNGLE 2
7 Rotome False 200 MIDDLE 5
8 TPT Legerity False 200 BOTTOM 1
9 Babbitto False 200 UTILITY 23
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1558 96509 22367
1 1558 103843 13599
2 1558 111276 17697
3 1558 110400 13297
4 1558 21185 12126
5 1558 80367 11541
6 1558 152789 9760
7 1558 116183 12192
8 1558 137672 44319
9 1558 21233 6318
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 24467 2593 151 329
1 26175 12047 16 202
2 12160 613 176 144
3 22491 4682 123 104
4 19449 4094 20 130
5 22985 7637 111 122
6 31385 18544 13 112
7 14169 4292 186 189
8 33061 4235 120 14
9 16020 3261 17 211
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 272 1 4905
1 155 1 9727
2 152 1 11788
3 265 2 7446
4 199 5 1163
5 158 1 16920
6 130 3 18345
7 90 4 496
8 298 3 1055
9 188 5 684
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 196 360 1 6
1 1446 673 0 6
2 0 58 1 6
3 1263 277 1 6
4 1163 338 0 6
5 0 444 0 3
6 285 476 1 3
7 210 311 4 3
8 529 1917 1 3
9 684 920 0 3
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 21 2 3 10 False
1 11 19 1 5 False
2 10 1 2 5 False
3 11 0 1 6 False
4 52 4 4 24 False
5 19 2 0 6 True
6 17 1 2 3 True
7 20 1 6 6 True
8 9 0 2 5 True
9 28 3 1 14 True ,
assists baronKills bountyLevel champLevel championName \
0 7 0 0 15 Nasus
1 7 0 0 13 MonkeyKing
2 7 0 1 15 Orianna
3 6 0 0 14 Vayne
4 15 0 0 13 Thresh
5 12 0 3 15 Viego
6 20 0 0 15 Gragas
7 10 1 1 17 AurelionSol
8 6 0 1 15 Caitlyn
9 18 0 0 15 Blitzcrank
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 6770 8857 6770
1 0 13649 0
2 945 1145 945
3 1002 4298 1002
4 194 1029 194
5 4823 12995 4823
6 529 14109 529
7 11131 16244 11131
8 7472 20245 7472
9 358 1979 358
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 4 3 0 True False
1 11 4 0 False True
2 7 0 0 False False
3 13 1 0 False False
4 12 4 0 False False
5 3 2 0 False False
6 6 5 4 False False
7 6 3 0 False False
8 7 0 0 False False
9 6 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 10925 TOP 0
1 False 10987 JUNGLE 0
2 False 9709 MIDDLE 0
3 False 13577 BOTTOM 0
4 False 8273 UTILITY 0
5 False 15209 TOP 0
6 False 10267 JUNGLE 2
7 False 17215 MIDDLE 1
8 False 12854 BOTTOM 0
9 False 9779 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 3 3110 3065 6632 2055 1001 0 3363
1 3 6632 3111 3071 2055 3133 1031 3364
2 3 3040 2033 3067 6655 0 3020 3340
3 3 1055 6672 3124 3006 3075 3211 3363
4 3 3857 3190 3076 3117 3050 1028 3364
5 0 1055 3153 3047 6673 3036 3057 3340
6 0 3158 3157 3067 6656 3108 0 3364
7 0 6656 1058 3089 3020 3135 3116 3363
8 0 6671 3036 1055 3006 3031 0 3363
9 0 6656 3860 4628 3117 1082 1052 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 3 2 1
1 2 10 3 2
2 0 3 0 1
3 3 10 3 2
4 0 2 0 1
5 2 12 8 2
6 0 1 0 1
7 4 20 9 2
8 2 8 5 3
9 1 6 4 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 764 27092 5000
1 369 19452 3544
2 790 90568 17404
3 559 422 23
4 612 14131 7482
5 998 7633 2885
6 402 103941 14116
7 610 176060 35289
8 833 1672 1421
9 696 23342 13425
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 11039 4 1 0
1 14581 85 1 0
2 11518 0 1 0
3 13579 7 1 0
4 18154 0 1 0
5 5052 36 0 0
6 8717 138 0 1
7 9724 20 0 0
8 7494 20 0 0
9 7073 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 114573
1 0 2 73264
2 0 3 12247
3 0 4 73530
4 0 5 6636
5 0 6 125024
6 0 7 22262
7 0 8 10021
8 0 9 142139
9 0 10 8563
physicalDamageDealtToChampions physicalDamageTaken role \
0 4543 15625 SOLO
1 17913 22666 NONE
2 986 8565 DUO
3 15072 11571 DUO
4 1381 14347 SOLO
5 16932 14050 DUO
6 1434 25222 NONE
7 1896 14259 DUO
8 27223 11480 CARRY
9 3831 11322 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 12 5 4 199
1 4 4 15 11 186
2 4 4 2 12 197
3 6 7 4 4 308
4 5 4 7 14 29
5 4 4 5 14 337
6 19 11 6 4 328
7 3 4 6 14 162
8 4 4 4 7 557
9 11 4 7 14 188
summonerName teamEarlySurrendered teamId teamPosition \
0 Drowsycub78 False 100 TOP
1 ChekcÖÜT False 100 JUNGLE
2 potatodan False 100 MIDDLE
3 Kenger95 False 100 BOTTOM
4 PewPewGamerGamer False 100 UTILITY
5 Rotome False 200 TOP
6 VigorousForeplay False 200 JUNGLE
7 Discere Faciendo False 200 MIDDLE
8 Ðiscreet False 200 BOTTOM
9 PikaBoooooo False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 10 1855 159326 9544
1 21 1855 104317 22244
2 24 1855 102816 18391
3 8 1855 97649 19793
4 36 1855 25376 9976
5 13 1855 134170 20640
6 56 1855 135890 16216
7 42 1855 187528 38319
8 27 1855 148228 29349
9 62 1855 39090 18799
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 27245 2798 178 1036
1 38546 11584 24 97
2 20833 1866 177 255
3 26039 5661 131 48
4 33853 1631 42 91
5 20226 8289 140 102
6 36764 20049 11 527
7 26167 5772 202 279
8 20960 4400 173 137
9 19873 2953 32 121
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 150 1 17660
1 306 1 11600
2 281 1 0
3 431 3 23696
4 364 5 4608
5 82 1 1512
6 184 1 9685
7 225 1 1447
8 206 3 4416
9 123 1 7184
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 580 2 10
1 786 1298 0 10
2 0 749 0 10
3 4696 888 1 10
4 1112 1352 0 10
5 822 1124 2 3
6 665 2825 0 3
7 1133 2182 5 3
8 704 1985 3 3
9 1543 1477 0 3
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 14 4 1 7 False
1 36 6 6 5 False
2 10 0 1 6 False
3 16 1 3 10 False
4 80 4 9 36 False
5 37 11 5 10 True
6 18 5 1 6 True
7 34 3 2 13 True
8 15 1 4 7 True
9 47 0 7 16 True ,
assists baronKills bountyLevel champLevel championName \
0 7 0 5 16 Singed
1 11 0 1 14 Rammus
2 3 0 2 14 Zed
3 7 0 5 13 Jhin
4 7 0 0 11 Brand
5 4 0 0 13 Jax
6 6 0 0 14 Poppy
7 4 0 0 14 Viego
8 1 0 0 14 Ziggs
9 8 0 0 11 Thresh
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3696 5224 3696
1 124 5981 124
2 5233 5233 5233
3 3025 3025 3025
4 1202 4378 1202
5 4437 8025 4437
6 0 6934 0
7 1014 2381 1014
8 1384 3331 1384
9 145 145 145
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 3 0 0 False True
1 3 0 1 False False
2 6 1 0 False False
3 2 0 0 False False
4 7 0 0 False False
5 16 1 0 False False
6 4 0 2 False False
7 6 1 0 False False
8 5 0 0 False False
9 6 5 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 14842 TOP 0
1 True 9862 JUNGLE 0
2 True 9838 MIDDLE 0
3 True 12228 BOTTOM 0
4 True 7558 UTILITY 0
5 True 9412 TOP 0
6 True 9127 JUNGLE 0
7 True 9303 MIDDLE 0
8 True 11493 BOTTOM 0
9 True 6737 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3041 3916 3047 3116 4633 4637 3340
1 0 6664 2033 3047 3075 1031 0 3364
2 0 6693 2031 3158 6676 3133 0 3340
3 0 1055 6671 3009 6676 3094 0 3340
4 0 3853 6653 1052 3020 1026 1011 3340
5 0 2033 3111 3153 3078 1057 1036 3340
6 0 6632 4401 3047 1031 1028 0 3364
7 0 1054 3153 6673 3047 0 0 3340
8 0 3040 3020 3157 1058 6653 0 3340
9 0 3857 3190 2055 3111 3105 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 16 10 2
1 1 4 3 1
2 1 4 2 1
3 2 10 5 3
4 1 3 2 1
5 1 5 2 1
6 0 2 0 1
7 2 4 2 1
8 2 8 4 2
9 1 2 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 720 140202 26101
1 687 94377 5839
2 608 4992 625
3 935 4331 1219
4 449 36896 12720
5 178 13959 4776
6 683 12242 1084
7 573 2098 903
8 783 117213 20844
9 770 8175 4327
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 8018 8 0 0
1 8045 144 0 0
2 4078 4 0 0
3 8540 0 0 0
4 6213 8 0 0
5 16425 0 0 0
6 12797 126 0 0
7 7786 16 0 0
8 5680 0 0 0
9 5204 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 4938
1 0 2 29833
2 0 3 94845
3 0 4 112014
4 0 5 3341
5 0 6 59394
6 0 7 100610
7 0 8 89148
8 0 9 8925
9 0 10 5954
physicalDamageDealtToChampions physicalDamageTaken role \
0 1686 22228 SOLO
1 1049 17108 NONE
2 13240 9601 SOLO
3 12577 5451 CARRY
4 982 7218 SUPPORT
5 13714 10103 SOLO
6 8758 13841 NONE
7 8968 12174 SOLO
8 552 4335 NONE
9 896 8367 SOLO
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 8 14 5 4 277
1 15 11 3 4 207
2 0 14 3 4 207
3 5 7 4 4 251
4 1 14 3 4 226
5 3 12 3 4 304
6 2 4 13 11 126
7 1 4 3 14 337
8 5 7 4 4 389
9 2 4 7 14 249
summonerName teamEarlySurrendered teamId teamPosition \
0 HolyMeatballs False 100 TOP
1 MilleniumWarrior False 100 JUNGLE
2 Bustin Bieber False 100 MIDDLE
3 ClutchSurvivor False 100 BOTTOM
4 AllSeeingIvern False 100 UTILITY
5 Kim Peter False 200 TOP
6 Meapii False 200 JUNGLE
7 Rotome False 200 MIDDLE
8 Ghalfall False 200 BOTTOM
9 kaisy False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 48 1627 147574 29691
1 23 1627 132920 7288
2 8 1627 106309 13966
3 15 1627 116725 13936
4 14 1627 40608 14075
5 19 1627 75238 18491
6 26 1627 120621 11208
7 7 1627 91659 10284
8 14 1627 126327 21397
9 28 1627 18686 6189
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 31149 9652 196 523
1 26079 11436 12 679
2 14020 1909 178 148
3 14422 5310 180 90
4 13578 1020 26 24
5 27569 3296 117 70
6 27077 11486 25 651
7 20638 3815 154 24
8 10526 2697 206 152
9 13821 931 33 67
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 58 1 2433
1 94 5 8710
2 191 1 6470
3 70 3 379
4 184 1 371
5 384 1 1885
6 88 1 7768
7 180 1 412
8 99 4 188
9 105 5 4555
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1904 902 2 3
1 400 925 0 3
2 100 340 2 3
3 139 430 1 3
4 371 145 0 3
5 0 1040 3 5
6 1366 437 0 5
7 412 677 0 5
8 0 510 0 5
9 966 250 0 5
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 16 0 2 8 True
1 6 0 2 0 True
2 14 1 1 7 True
3 7 0 0 5 True
4 47 0 4 25 True
5 11 1 0 8 False
6 15 0 0 3 False
7 16 2 1 6 False
8 12 0 2 6 False
9 60 6 6 24 False ,
assists baronKills bountyLevel champLevel championName \
0 6 0 0 13 Yasuo
1 10 0 0 14 Karthus
2 4 0 1 13 Viego
3 6 0 0 13 Kaisa
4 8 0 0 12 Swain
5 7 0 1 15 Tryndamere
6 10 0 1 15 LeeSin
7 9 1 1 15 Jax
8 9 0 1 16 Caitlyn
9 9 0 0 14 Nautilus
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 752 752 752
1 4081 7332 4081
2 4560 6512 4560
3 947 2968 947
4 441 1684 441
5 6408 34045 6408
6 1291 20007 1291
7 3519 8674 3519
8 10470 13269 10470
9 2639 5527 2639
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 8 1 0 False False
1 9 0 0 False False
2 8 1 0 False False
3 5 1 1 False False
4 10 1 0 False False
5 3 0 0 False False
6 5 0 3 True False
7 3 1 0 True False
8 7 0 0 False True
9 1 3 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 7992 TOP 0
1 False 10299 JUNGLE 0
2 False 10060 MIDDLE 0
3 False 8594 BOTTOM 0
4 False 8598 UTILITY 0
5 False 13841 TOP 0
6 False 10727 JUNGLE 1
7 False 10461 MIDDLE 1
8 False 16349 BOTTOM 2
9 False 9099 UTILITY 1
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 5 1055 3006 6673 1053 1018 1029 3340
1 5 2031 3157 1026 3020 6653 3916 3340
2 5 1055 3153 3006 6673 2055 3133 3340
3 5 6671 3006 6676 1042 1042 1055 3340
4 5 3853 3157 6653 3047 3916 0 3364
5 0 1055 6694 6693 3006 6676 1038 3340
6 0 3142 1036 3158 6692 3123 1036 3340
7 0 0 1043 3078 1053 3047 1037 3340
8 0 3095 3006 6673 3031 3094 3123 3340
9 0 3860 0 6662 3075 3067 3047 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 2 0 1
1 1 3 2 2
2 0 6 0 1
3 1 4 2 1
4 1 4 2 2
5 1 9 7 3
6 2 7 2 1
7 1 4 2 1
8 5 16 4 2
9 1 4 4 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 894 8583 969
1 777 134603 16238
2 301 4513 1382
3 476 9912 3836
4 303 33425 10450
5 625 0 0
6 487 25548 2991
7 1156 14132 1851
8 649 7827 3078
9 1551 23340 4800
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 2423 8 1 0
1 2700 78 1 0
2 2621 0 1 0
3 1890 4 1 0
4 4430 0 1 0
5 5722 24 0 0
6 7901 124 0 0
7 6841 24 0 0
8 11388 24 0 0
9 3908 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 89948
1 0 2 6125
2 0 3 89091
3 0 4 56609
4 0 5 2020
5 0 6 171246
6 0 7 85037
7 0 8 61350
8 0 9 176206
9 0 10 8682
physicalDamageDealtToChampions physicalDamageTaken role \
0 9644 18170 SOLO
1 25 22216 NONE
2 13858 21779 SOLO
3 4580 13508 NONE
4 1038 13352 SOLO
5 17421 19066 SOLO
6 12119 18595 NONE
7 7722 10233 SOLO
8 30156 15162 CARRY
9 1488 7303 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 5 4 5 6 176
1 12 11 3 4 191
2 3 4 5 14 335
3 6 7 4 4 68
4 3 14 2 4 164
5 5 3 5 21 416
6 12 11 4 4 215
7 5 4 4 14 110
8 4 4 5 7 113
9 6 14 4 4 53
summonerName teamEarlySurrendered teamId teamPosition \
0 Coolgum15 False 100 TOP
1 MoistureCreature False 100 JUNGLE
2 Rotome False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 Thick2BThighs False 100 UTILITY
5 MrBumpTastik False 200 TOP
6 Fruitymon False 200 JUNGLE
7 TacticalTard False 200 MIDDLE
8 Rosinator1 False 200 BOTTOM
9 Byjinn False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 15 1734 102761 10614
1 18 1734 146308 17020
2 14 1734 98573 15979
3 0 1734 82521 8416
4 44 1734 36138 12181
5 17 1734 176123 17631
6 13 1734 116931 15534
7 16 1734 79450 10143
8 11 1734 185714 33234
9 31 1734 39112 7199
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 21100 3197 130 88
1 25550 6153 62 218
2 24829 5001 148 31
3 15644 3139 91 0
4 18083 1498 33 232
5 25171 13928 171 118
6 26914 9026 11 347
7 17565 2290 110 68
8 27391 8404 203 82
9 11270 1570 38 347
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 265 1 4230
1 240 1 5580
2 251 1 4968
3 67 4 16000
4 242 1 692
5 108 1 4877
6 147 1 6346
7 98 1 3967
8 255 3 1680
9 40 1 7089
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 506 0 11
1 756 633 2 11
2 738 428 0 11
3 0 245 0 11
4 692 300 0 11
5 210 381 2 2
6 424 416 1 2
7 569 490 0 2
8 0 839 4 2
9 910 58 3 2
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 28 1 0 8 False
1 14 0 2 7 False
2 10 6 1 4 False
3 15 1 0 8 False
4 16 1 0 8 False
5 14 0 0 9 True
6 13 0 1 6 True
7 18 1 0 9 True
8 17 1 1 8 True
9 56 3 4 22 True ,
assists baronKills bountyLevel champLevel championName \
0 1 0 0 13 Darius
1 6 0 0 13 FiddleSticks
2 6 0 0 14 Viego
3 8 0 0 12 Jhin
4 5 0 0 11 Pyke
5 16 0 0 15 Ornn
6 8 0 0 13 Evelynn
7 8 0 3 15 Diana
8 9 0 4 14 Samira
9 25 0 0 13 Nautilus
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 5321 5321 5321
1 244 5255 244
2 1898 3940 1898
3 637 1387 637
4 0 0 0
5 5714 5714 5714
6 2095 14312 2095
7 7468 9090 7468
8 11403 17426 11403
9 2853 4281 2853
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 9 1 0 False False
1 8 0 1 False False
2 4 3 0 False False
3 7 0 0 True False
4 9 3 0 False True
5 4 0 0 False False
6 5 2 1 False False
7 3 0 0 False False
8 5 1 2 False False
9 4 3 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False True False
9 True False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 9080 TOP 0
1 False 9039 JUNGLE 0
2 False 11132 MIDDLE 0
3 False 7672 BOTTOM 0
4 False 9462 UTILITY 0
5 False 9285 TOP 0
6 False 9362 JUNGLE 2
7 False 10165 MIDDLE 0
8 False 15320 BOTTOM 0
9 False 9037 UTILITY 1
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 3 3053 6631 3111 3066 1055 0 3340
1 3 3157 3020 2031 6653 4630 0 3330
2 3 1055 3153 3006 6673 3133 3057 3364
3 3 6671 3009 3035 1018 0 1055 3340
4 3 3857 6693 3111 3814 1031 1036 3364
5 0 7003 3047 3083 3076 0 0 3340
6 0 3152 3100 3020 0 1082 0 3340
7 0 1056 4636 3020 1029 3100 0 3340
8 0 6676 3031 7008 3006 1038 0 3340
9 0 3860 7019 3117 3075 3024 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 4 2 1
1 2 6 4 2
2 1 4 2 1
3 1 3 2 2
4 0 4 0 1
5 1 5 4 1
6 1 5 3 2
7 2 5 3 1
8 5 19 5 3
9 1 3 3 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 450 0 0
1 696 105915 13378
2 814 8095 1115
3 364 5851 857
4 304 0 0
5 613 34307 8125
6 456 98434 9837
7 594 109355 15503
8 424 13200 4015
9 827 16953 8096
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 11615 8 1 0
1 13011 120 1 0
2 9512 4 1 0
3 6831 0 1 0
4 6878 0 1 0
5 3069 1 0 0
6 4629 125 0 0
7 4904 20 0 0
8 2231 8 0 0
9 3296 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 91269
1 0 2 5856
2 0 3 107852
3 0 4 45114
4 0 5 16037
5 0 6 45411
6 0 7 12221
7 0 8 15633
8 0 9 118740
9 0 10 7539
physicalDamageDealtToChampions physicalDamageTaken role \
0 11893 16515 SOLO
1 88 15300 NONE
2 10896 12514 SOLO
3 6141 6271 CARRY
4 5523 7943 SUPPORT
5 4841 15055 SOLO
6 397 19491 NONE
7 1435 7132 SOLO
8 25844 13926 CARRY
9 3026 8224 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 5 6 176
1 9 11 4 4 135
2 3 4 3 14 335
3 4 7 3 4 68
4 3 14 3 4 164
5 3 12 3 4 161
6 13 11 2 4 107
7 1 4 2 12 161
8 4 4 3 7 208
9 3 4 5 3 111
summonerName teamEarlySurrendered teamId teamPosition \
0 Coolgum15 False 100 TOP
1 SlothoftheAbyss False 100 JUNGLE
2 Rotome False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 Thick2BThighs False 100 UTILITY
5 CMiester False 200 TOP
6 scrappy131 False 200 JUNGLE
7 CelerityV2 False 200 MIDDLE
8 swart2330 False 200 BOTTOM
9 MakunMayo False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 22 1555 102261 13057
1 22 1555 116652 13880
2 7 1555 116231 12296
3 19 1555 55016 6999
4 21 1555 24741 6790
5 25 1555 79719 12966
6 3 1555 117739 10465
7 5 1555 124988 16938
8 1 1555 132151 30070
9 70 1555 29373 11879
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 28319 5094 141 150
1 28437 13475 9 491
2 22310 8104 194 22
3 13456 2364 91 125
4 15067 1399 35 66
5 20241 622 120 357
6 24768 11268 17 136
7 12416 2799 161 30
8 17001 4632 167 3
9 11662 250 37 263
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 309 1 10991
1 234 1 4880
2 163 1 284
3 184 3 4050
4 226 1 8703
5 136 1 0
6 143 1 7084
7 96 1 0
8 134 4 210
9 91 1 4880
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1163 188 1 11
1 414 125 1 11
2 284 283 0 11
3 0 353 0 11
4 1266 245 0 11
5 0 2116 2 2
6 230 646 0 2
7 0 379 3 2
8 210 844 4 2
9 756 141 2 2
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 15 1 1 8 False
1 13 0 2 3 False
2 15 7 2 4 False
3 7 0 0 5 False
4 27 3 2 12 False
5 6 0 0 4 True
6 26 2 1 9 True
7 8 0 0 4 True
8 14 1 1 9 True
9 45 3 7 15 True ,
assists baronKills bountyLevel champLevel championName \
0 6 0 6 13 Garen
1 10 0 1 12 Nunu
2 6 0 9 14 Kayle
3 4 0 1 10 Ezreal
4 5 0 2 10 Brand
5 0 0 0 11 Yone
6 0 0 0 11 Khazix
7 1 0 0 13 Chogath
8 2 0 0 10 Kaisa
9 3 0 0 9 Swain
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 4100 4100 4100
1 60 4187 60
2 3864 6683 3864
3 2381 3618 2381
4 1475 2865 1475
5 0 84 0
6 160 8431 160
7 3689 3689 3689
8 3914 5359 3914
9 2257 3264 2257
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 3 0 0 False False
1 2 0 1 False False
2 0 1 1 False False
3 3 0 0 False False
4 3 2 0 False False
5 5 0 0 False False
6 3 0 0 False False
7 9 0 0 False False
8 4 0 0 False True
9 6 0 1 True False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 9764 TOP 0
1 True 7642 JUNGLE 0
2 True 9992 MIDDLE 0
3 True 5893 UTILITY 0
4 True 6106 UTILITY 0
5 True 5057 MIDDLE 0
6 True 7017 JUNGLE 0
7 True 6770 TOP 0
8 True 7098 BOTTOM 0
9 True 6156 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 0 6631 0 1054 3742 3006 3340
1 0 3068 2031 3111 1031 3066 1028 3340
2 0 1056 2055 3006 3115 4635 1026 3340
3 0 3508 3158 1036 1036 0 1055 3340
4 0 3853 3020 6653 1028 2055 0 3364
5 0 1055 6673 0 1001 0 0 3340
6 0 6691 2031 3158 3134 1037 0 3340
7 0 3075 1054 3047 6660 1029 1033 3340
8 0 1055 6672 3006 3134 1037 0 3340
9 0 3853 6653 1001 2421 3191 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 9 6 1
1 0 3 0 1
2 1 9 9 2
3 0 3 0 1
4 1 3 2 1
5 0 0 0 0
6 2 4 2 1
7 1 2 2 1
8 1 3 2 2
9 0 2 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 324 893 191
1 406 34252 4679
2 0 59518 10141
3 437 5243 1793
4 586 24140 9583
5 497 9187 836
6 508 7351 356
7 188 33341 5682
8 561 5957 2554
9 428 29135 7706
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 6916 2 0 0
1 3861 96 0 0
2 947 12 0 0
3 4107 0 0 0
4 2327 0 0 0
5 5513 0 0 0
6 4184 114 0 0
7 7011 0 0 0
8 5319 4 0 0
9 6537 8 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 68424
1 0 2 21559
2 0 3 26743
3 0 4 32575
4 0 5 1535
5 0 6 32043
6 0 7 89354
7 0 8 20588
8 0 9 54366
9 0 10 5011
physicalDamageDealtToChampions physicalDamageTaken role \
0 14924 10253 NONE
1 1151 17361 NONE
2 4142 5428 SOLO
3 2863 2264 DUO
4 517 4452 DUO
5 1462 5986 SOLO
6 6129 15539 NONE
7 2055 12883 SOLO
8 5164 4084 CARRY
9 868 5415 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 5 14 375
1 5 11 2 4 135
2 2 4 1 12 335
3 2 7 1 4 68
4 2 14 1 4 164
5 1 14 3 4 41
6 3 4 14 11 86
7 4 4 2 12 38
8 4 4 4 7 116
9 4 4 4 14 555
summonerName teamEarlySurrendered teamId teamPosition \
0 vapeHawHaw False 100 TOP
1 SlothoftheAbyss False 100 JUNGLE
2 Rotome False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 Thick2BThighs False 100 UTILITY
5 Amaghi False 200 MIDDLE
6 SUP3RN0VA313 False 200 JUNGLE
7 x9 trash False 200 TOP
8 vahag False 200 BOTTOM
9 Lets Hug False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 36 1303 72609 18379
1 23 1303 97341 6203
2 9 1303 92347 14428
3 0 1303 39328 4657
4 8 1303 25951 10377
5 6 1303 45080 2873
6 1 1303 103590 6753
7 47 1303 64959 8092
8 0 1303 64283 7965
9 28 1303 34818 9226
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 18290 1650 103 101
1 21576 13637 18 398
2 6664 2429 149 223
3 6524 861 64 0
4 6959 673 20 15
5 11772 1774 93 23
6 19779 12093 5 143
7 21827 2618 114 311
8 10305 2424 115 0
9 12846 1534 30 170
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 76 1 3292
1 41 1 41530
2 0 3 6087
3 41 2 1510
4 53 1 276
5 159 1 3849
6 61 1 6885
7 185 1 11029
8 101 2 3959
9 118 1 671
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 3264 1119 1 2
1 372 353 0 2
2 144 287 1 2
3 0 153 1 2
4 276 178 0 2
5 574 272 0 3
6 267 56 0 3
7 354 1932 1 3
8 245 901 1 3
9 651 893 0 3
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 4 0 0 3 True
1 10 0 1 4 True
2 10 3 0 5 True
3 7 0 0 6 True
4 28 4 1 11 True
5 8 0 0 5 False
6 11 0 0 5 False
7 5 1 0 3 False
8 5 0 0 4 False
9 31 0 3 13 False ,
assists baronKills bountyLevel champLevel championName \
0 7 0 2 18 Yorick
1 15 0 0 16 Udyr
2 10 0 4 18 Viego
3 15 0 1 15 Jhin
4 19 0 0 15 Morgana
5 9 0 0 17 Mordekaiser
6 12 1 0 17 DrMundo
7 10 0 0 16 Talon
8 8 0 0 16 Darius
9 12 0 0 14 Pyke
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 12109 12109 12109
1 2187 30805 2187
2 4855 30498 4855
3 2067 7923 2067
4 739 4605 739
5 4224 6977 4224
6 875 11724 875
7 697 7146 697
8 6113 13337 6113
9 0 1563 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 8 0 0 False False
1 11 1 2 False False
2 4 1 1 False False
3 10 0 1 False False
4 11 6 0 False False
5 5 0 0 False False
6 5 0 2 False False
7 10 2 0 False False
8 7 0 0 True False
9 13 0 0 False True
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 True False False
1 False True False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 16001 TOP 1
1 False 12796 JUNGLE 0
2 False 19888 MIDDLE 0
3 False 11720 BOTTOM 1
4 False 10512 UTILITY 0
5 False 12011 TOP 0
6 False 15567 JUNGLE 0
7 False 15538 MIDDLE 0
8 False 14369 BOTTOM 0
9 False 13487 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 2033 3078 3111 3074 6694 6609 3340
1 0 3140 4401 6664 3111 3076 1053 3364
2 0 3033 6673 3006 3153 3508 3036 3364
3 0 6671 3009 3036 3086 2015 1055 3340
4 0 3853 3916 6653 3157 3158 1026 3364
5 2 1056 4633 3047 4637 3075 3211 3340
6 2 6664 3143 3111 3075 3742 3044 3340
7 2 6693 3004 3158 3142 3814 3134 3340
8 2 6609 6631 3047 3053 3742 1028 3340
9 2 3857 3142 6693 3179 3814 3117 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 2 6 2 1
1 1 5 2 1
2 4 21 7 2
3 1 5 2 1
4 0 3 0 1
5 1 5 4 1
6 2 8 5 2
7 3 16 5 3
8 1 7 3 2
9 2 7 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 554 24270 11842
1 531 65570 6506
2 799 9948 3515
3 445 9500 1509
4 542 50890 27322
5 878 114312 11952
6 703 115074 13895
7 1006 0 0
8 487 646 0
9 647 0 0
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 6232 1 0 0
1 6444 105 0 0
2 7334 30 0 0
3 2839 12 0 0
4 3921 9 0 0
5 9234 4 1 0
6 11704 156 1 0
7 10674 20 1 0
8 14169 48 1 0
9 8862 4 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 209605
1 0 2 70184
2 0 3 202556
3 0 4 92332
4 0 5 5163
5 0 6 24808
6 0 7 70933
7 0 8 138766
8 0 9 159887
9 0 10 49084
physicalDamageDealtToChampions physicalDamageTaken role \
0 29075 20063 SOLO
1 9656 36360 NONE
2 38049 26195 SOLO
3 12897 15301 CARRY
4 1860 19421 SUPPORT
5 1916 23415 SOLO
6 8742 32158 NONE
7 40203 24341 SOLO
8 17935 25886 CARRY
9 15025 19649 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 3 12 67
1 19 11 9 6 307
2 4 4 5 14 335
3 4 7 5 4 68
4 5 4 8 3 409
5 4 4 1 14 47
6 5 4 20 11 174
7 8 14 5 4 218
8 7 7 6 4 313
9 5 4 5 14 142
summonerName teamEarlySurrendered teamId teamPosition \
0 Scut Farkkus False 100 TOP
1 AhriMainz False 100 JUNGLE
2 Rotome False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 senshia False 100 UTILITY
5 ObiJuanKenbi False 200 TOP
6 SodaCARBON6 False 200 JUNGLE
7 MirrowRush False 200 MIDDLE
8 ChromosomeBandit False 200 BOTTOM
9 SkigaMonsterks False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 18 2308 249036 40918
1 35 2308 163436 17179
2 17 2308 220231 42825
3 25 2308 101833 14407
4 93 2308 56053 29182
5 4 2308 175377 14387
6 17 2308 197945 23380
7 4 2308 143120 41206
8 20 2308 168763 21888
9 30 2308 62579 17593
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 28190 6266 236 234
1 44284 15719 45 152
2 35556 15170 198 119
3 19035 2230 114 138
4 25831 4344 21 167
5 32933 13069 151 22
6 44708 26318 59 378
7 35393 9173 131 118
8 40555 13113 146 376
9 28781 3995 51 157
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 343 1 15161
1 412 1 27682
2 175 1 7726
3 277 2 0
4 310 1 0
5 240 1 36257
6 157 1 11938
7 406 1 4353
8 209 4 8229
9 459 1 13494
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 1894 4 5
1 1016 1479 2 5
2 1260 2026 2 5
3 0 894 2 5
4 0 2489 0 5
5 518 284 2 10
6 742 844 0 10
7 1003 378 0 10
8 3952 500 2 10
9 2567 270 0 10
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 16 0 1 10 True
1 21 1 2 4 True
2 30 2 2 4 True
3 21 0 3 10 True
4 101 6 1 56 True
5 9 0 0 6 False
6 16 0 1 9 False
7 22 2 1 13 False
8 27 0 4 11 False
9 30 0 3 16 False ,
assists baronKills bountyLevel champLevel championName \
0 3 0 0 15 Yorick
1 3 1 0 12 Warwick
2 3 0 0 14 Vladimir
3 4 0 0 11 Tristana
4 5 0 0 12 Veigar
5 8 0 0 14 Jax
6 14 0 3 14 Olaf
7 3 0 1 15 Pantheon
8 9 0 9 13 Jhin
9 19 0 1 13 Thresh
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3545 9196 3545
1 587 6478 587
2 0 7744 0
3 3145 9106 3145
4 718 718 718
5 7218 8673 7218
6 1018 25728 1018
7 2121 8042 2121
8 2063 8200 2063
9 421 2843 421
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 6 0 False False
1 6 2 0 False False
2 6 4 0 False False
3 6 2 0 False False
4 8 3 0 False False
5 5 0 0 False False
6 2 0 2 False True
7 3 2 0 True False
8 2 0 1 True False
9 3 3 0 True False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False True False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 9711 TOP 0
1 True 9789 JUNGLE 0
2 True 9114 MIDDLE 0
3 True 7100 BOTTOM 0
4 True 6273 UTILITY 0
5 True 10361 TOP 0
6 True 12584 JUNGLE 0
7 True 10899 MIDDLE 0
8 True 12417 BOTTOM 0
9 True 7479 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3742 3078 3047 2055 0 0 3364
1 0 6632 3748 3076 3047 1028 0 3364
2 0 3152 0 2421 1052 3020 4629 3340
3 0 1055 3006 6672 1042 3123 1042 3340
4 0 3859 3190 1031 3066 1028 3158 3364
5 0 1054 3153 3047 6632 3044 0 3340
6 0 3047 2031 6631 3053 3075 3067 3340
7 0 6692 2033 3158 3123 3071 1028 3363
8 0 6671 1055 3036 6676 0 3009 3340
9 0 3860 3190 3075 0 0 3158 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 4 2 1
1 1 5 3 1
2 2 5 2 2
3 0 0 0 0
4 0 1 0 1
5 0 2 0 1
6 3 8 3 3
7 2 10 5 3
8 1 10 9 1
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 500 22556 7033
1 705 31959 4570
2 564 90139 17133
3 495 13035 1064
4 401 24694 5039
5 478 21078 4176
6 1173 8714 278
7 893 326 326
8 734 7448 2320
9 692 14465 5717
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 4778 8 0 0
1 3099 92 0 0
2 2611 5 0 0
3 2977 8 0 0
4 1782 0 0 0
5 7567 0 0 0
6 8527 143 0 0
7 4468 8 0 0
8 9380 24 0 0
9 6980 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 103619
1 0 2 37124
2 0 3 7188
3 0 4 55989
4 0 5 3025
5 0 6 96349
6 0 7 138701
7 0 8 103066
8 0 9 134590
9 0 10 7432
physicalDamageDealtToChampions physicalDamageTaken role \
0 12841 17033 NONE
1 3516 26691 NONE
2 1058 22598 SOLO
3 6400 10529 CARRY
4 558 11790 SUPPORT
5 11143 14793 SOLO
6 14620 19110 NONE
7 15704 9494 SOLO
8 22318 8758 CARRY
9 886 4498 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 3 12 368
1 4 4 14 11 284
2 5 4 5 14 270
3 4 4 5 7 251
4 3 14 4 4 145
5 3 4 2 12 203
6 2 4 17 11 36
7 2 4 3 14 335
8 5 7 4 4 130
9 4 4 5 14 233
summonerName teamEarlySurrendered teamId teamPosition \
0 Richard Thick False 100 TOP
1 bussy bop False 100 JUNGLE
2 tuba section False 100 MIDDLE
3 shady raccoon False 100 BOTTOM
4 Sociopathogenics False 100 UTILITY
5 Andjew False 200 TOP
6 INT 2 Success False 200 JUNGLE
7 Rotome False 200 MIDDLE
8 Musty Bawsaq False 200 BOTTOM
9 ExtraaChromosome False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 10 1664 126225 19875
1 17 1664 76411 8305
2 7 1664 101249 19534
3 2 1664 77325 8070
4 32 1664 29127 5884
5 15 1664 124483 15319
6 19 1664 179797 22323
7 16 1664 103755 16392
8 27 1664 146860 25233
9 28 1664 31002 7234
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 24022 4590 155 174
1 32242 16615 16 344
2 27044 16144 138 109
3 14122 3103 115 3
4 15471 729 43 82
5 22437 3247 176 96
6 28415 17057 44 594
7 14324 4046 142 25
8 19126 8785 164 147
9 11727 1636 41 77
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 124 1 50
1 153 1 7328
2 187 1 3922
3 128 4 8300
4 158 4 1407
5 175 1 7055
6 84 1 32380
7 83 1 362
8 55 2 4822
9 69 5 9104
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 2210 1 6
1 218 2451 0 6
2 1342 1835 0 6
3 604 615 0 6
4 285 1898 1 6
5 0 76 2 2
6 7424 777 2 2
7 362 361 1 2
8 594 987 0 2
9 630 247 0 2
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 25 7 2 7 False
1 16 3 1 5 False
2 23 4 3 14 False
3 23 2 1 11 False
4 21 3 2 10 False
5 14 0 2 8 True
6 14 0 2 4 True
7 22 2 2 8 True
8 15 0 1 9 True
9 42 3 7 15 True ,
assists baronKills bountyLevel champLevel championName \
0 3 0 0 12 Gnar
1 2 0 0 11 LeeSin
2 2 0 0 12 Annie
3 2 0 0 8 Vayne
4 4 0 0 9 Alistar
5 1 0 1 12 Jayce
6 10 0 0 11 Amumu
7 4 0 3 12 Kayle
8 7 0 4 11 Lucian
9 11 0 3 10 Thresh
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2858 2858 2858
1 1000 10509 1000
2 341 341 341
3 1303 1303 1303
4 466 466 466
5 2516 2516 2516
6 0 8793 0
7 2936 3573 2936
8 4381 7245 4381
9 1488 1636 1488
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 3 1 0 False True
1 5 1 0 True False
2 3 0 0 False False
3 7 0 0 False False
4 4 0 0 False False
5 5 4 0 False False
6 2 0 2 False False
7 2 0 0 False False
8 3 3 0 False False
9 1 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 6508 TOP 0
1 True 8026 JUNGLE 0
2 True 5487 MIDDLE 0
3 True 5340 JUNGLE 0
4 True 4201 UTILITY 0
5 True 6810 TOP 0
6 True 6231 JUNGLE 0
7 True 7847 MIDDLE 0
8 True 8160 BOTTOM 0
9 True 6704 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1054 1037 1028 6631 0 3047 3340
1 0 3133 6630 0 3067 1036 3111 3340
2 0 2423 2033 6655 3158 1052 0 3340
3 0 1055 6672 1001 1043 0 0 3340
4 0 3117 3859 3190 0 0 0 3340
5 0 2033 0 3133 6692 3158 3070 3340
6 0 3068 2031 3047 0 0 0 3340
7 0 1056 0 3115 3006 1028 1052 3340
8 0 3006 6672 2003 0 3133 1055 3363
9 0 3190 3859 2055 3117 3067 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 1 0 1
1 1 8 6 1
2 0 0 0 0
3 0 3 0 1
4 0 1 0 1
5 1 4 2 1
6 0 1 0 1
7 2 7 3 2
8 1 5 4 2
9 2 5 3 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 542 2803 962
1 427 13672 1103
2 532 24107 1342
3 478 0 0
4 570 10144 3877
5 235 5113 2193
6 855 58458 5061
7 482 32730 4561
8 470 1646 630
9 623 9009 4427
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 3168 0 0 0
1 5252 72 0 0
2 3073 0 0 0
3 3549 0 0 0
4 3143 0 0 0
5 1378 0 0 0
6 2038 95 0 0
7 1510 0 0 0
8 1624 4 0 0
9 1821 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 61403
1 0 2 44494
2 0 3 11573
3 0 4 28051
4 0 5 3987
5 0 6 54850
6 0 7 13840
7 0 8 19271
8 0 9 58856
9 0 10 3410
physicalDamageDealtToChampions physicalDamageTaken role \
0 7827 9525 SUPPORT
1 6889 12893 SUPPORT
2 842 3526 DUO
3 5866 6338 SUPPORT
4 862 5498 SUPPORT
5 8275 9359 SUPPORT
6 1354 13849 SUPPORT
7 1680 4336 SUPPORT
8 9277 4693 SUPPORT
9 787 5042 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 4 2 12 142
1 2 4 8 11 263
2 2 12 2 4 199
3 2 4 3 7 188
4 5 4 3 14 147
5 2 4 2 12 231
6 2 4 11 11 213
7 2 4 1 12 335
8 1 4 2 7 140
9 2 14 3 4 29
summonerName teamEarlySurrendered teamId teamPosition \
0 Unoyd False 100 TOP
1 Deceptim False 100 JUNGLE
2 snorlax1242 False 100 MIDDLE
3 Evilmonster626 False 100 BOTTOM
4 shreddershadow False 100 UTILITY
5 Flamebom False 200 TOP
6 Vicpoo False 200 JUNGLE
7 Rotome False 200 MIDDLE
8 Johnathan Chan False 200 BOTTOM
9 Unleashed Dragon False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 17 1113 71311 8789
1 8 1113 66910 8630
2 1 1113 35681 2185
3 4 1113 30373 6711
4 28 1113 16909 5203
5 7 1113 60423 10576
6 9 1113 80564 7643
7 4 1113 52282 6465
8 0 1113 66231 10853
9 24 1113 16566 5620
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 13057 1303 115 282
1 18939 7305 7 229
2 6939 305 120 85
3 10397 1811 73 7
4 9545 2176 27 62
5 10761 299 108 68
6 16569 7394 7 131
7 5914 1937 131 184
8 6866 1098 133 0
9 7489 621 29 70
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 67 1 7105
1 104 1 8742
2 97 1 0
3 148 3 2322
4 101 3 2777
5 118 1 459
6 57 1 8265
7 56 3 280
8 57 2 5727
9 16 3 4147
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 363 1 3
1 638 793 0 3
2 0 339 0 3
3 845 509 0 3
4 464 903 0 3
5 107 24 0 1
6 1227 681 0 1
7 223 68 1 1
8 945 548 1 1
9 405 626 1 1
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 11 1 3 5 False
1 8 1 0 7 False
2 9 0 1 5 False
3 5 0 0 5 False
4 10 0 0 7 False
5 16 5 3 10 True
6 7 0 0 4 True
7 10 0 2 5 True
8 15 3 1 8 True
9 31 3 3 10 True ,
assists baronKills bountyLevel champLevel championName \
0 9 0 2 14 Gangplank
1 14 0 0 15 Nunu
2 8 0 0 16 Jayce
3 9 0 0 14 Xayah
4 18 0 0 13 Soraka
5 5 0 0 16 Yorick
6 7 0 0 13 Warwick
7 9 0 0 15 Viego
8 3 0 1 13 Vayne
9 9 0 0 12 Nami
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 7415 7415 7415
1 753 7354 753
2 9456 15319 9456
3 6301 8369 6301
4 707 1107 707
5 5860 12938 5860
6 0 14037 0
7 913 8567 913
8 0 2202 0
9 0 401 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 2 0 False False
1 4 1 0 False False
2 7 0 1 False False
3 4 1 0 False False
4 3 1 0 False False
5 6 0 0 True False
6 10 0 2 False True
7 9 1 1 False False
8 7 0 0 False False
9 5 3 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 11258 TOP 1
1 False 12087 JUNGLE 0
2 False 14609 MIDDLE 0
3 False 11165 BOTTOM 0
4 False 7881 UTILITY 0
5 False 13786 TOP 0
6 False 9037 JUNGLE 0
7 False 11305 MIDDLE 0
8 False 9971 BOTTOM 0
9 False 6701 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 2033 3078 6676 3044 1028 3158 3340
1 0 3068 3041 3075 3047 3105 1029 3364
2 0 6694 3047 6692 3004 6676 3123 3340
3 0 1055 6671 3508 1038 3047 1018 3363
4 0 3853 6616 6617 3158 3067 1004 3364
5 1 3075 4401 3047 3078 3742 0 3340
6 1 6672 3153 3047 0 0 0 3340
7 1 1055 3153 6673 3047 3508 0 3340
8 1 1055 6672 3006 3153 3086 0 3340
9 1 3853 6617 3117 3011 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 3 2 2
1 2 9 5 2
2 3 14 6 2
3 3 9 4 2
4 0 2 0 2
5 3 8 3 1
6 1 5 2 2
7 0 4 0 1
8 1 6 3 2
9 1 2 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 323 15839 4587
1 600 82905 12470
2 443 16308 5768
3 914 1154 1154
4 902 10550 4603
5 476 29301 7233
6 247 36892 6167
7 308 4873 1460
8 908 2628 1222
9 661 12082 5669
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 5115 0 0 0
1 7879 131 0 0
2 4290 12 0 0
3 4956 14 0 0
4 1652 0 0 0
5 7696 8 1 0
6 9007 105 1 0
7 5929 12 1 0
8 3979 16 1 0
9 4312 0 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 127006
1 0 2 24627
2 0 3 150918
3 0 4 114243
4 0 5 3264
5 0 6 125418
6 0 7 55080
7 0 8 96562
8 0 9 76226
9 0 10 2146
physicalDamageDealtToChampions physicalDamageTaken role \
0 8838 19355 DUO
1 1038 20956 NONE
2 23040 13930 DUO
3 20084 12673 CARRY
4 394 6229 SUPPORT
5 18405 15808 SOLO
6 5643 22342 NONE
7 14634 16572 SOLO
8 11036 15244 CARRY
9 1023 7837 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 2 12 228
1 14 11 3 4 169
2 6 14 4 4 632
3 5 7 4 4 303
4 3 4 3 14 121
5 6 6 4 4 310
6 13 11 5 4 109
7 3 4 5 14 335
8 4 7 4 4 256
9 2 4 6 14 162
summonerName teamEarlySurrendered teamId teamPosition \
0 PingSpam False 100 TOP
1 Spangly Mantis 2 False 100 JUNGLE
2 Captain Herman False 100 MIDDLE
3 carlyahoo False 100 BOTTOM
4 one tasty taco False 100 UTILITY
5 Lee Braum Jayce False 200 TOP
6 530sFearless False 200 JUNGLE
7 Rotome False 200 MIDDLE
8 SaltyChoi False 200 BOTTOM
9 destinyTail0 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 8 1729 150987 15613
1 39 1729 159650 15268
2 10 1729 186516 30120
3 27 1729 115892 21576
4 32 1729 14110 5293
5 18 1729 157260 25813
6 31 1729 104579 13593
7 7 1729 106317 17157
8 11 1729 106956 15561
9 31 1729 15010 7474
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 25141 4782 167 349
1 30996 15853 31 433
2 19908 3732 195 163
3 18876 4357 153 61
4 9218 15301 11 170
5 25407 4876 184 258
6 32551 12819 17 237
7 24225 4247 149 31
8 19958 5140 130 15
9 12481 11280 11 176
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 190 1 8142
1 122 1 52116
2 250 1 19289
3 107 3 494
4 112 5 296
5 161 1 2540
6 269 1 12606
7 308 1 4882
8 240 3 28101
9 162 5 782
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 2188 670 1 2
1 1759 2159 0 2
2 1311 1688 2 2
3 338 1247 5 2
4 296 1336 0 2
5 174 1903 1 8
6 1781 1201 0 8
7 1062 1722 1 8
8 3302 734 0 8
9 782 331 0 8
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 16 2 0 11 True
1 14 1 0 5 True
2 15 0 1 8 True
3 14 1 0 9 True
4 50 1 7 20 True
5 11 1 3 4 False
6 15 0 0 9 False
7 15 2 0 7 False
8 12 0 1 7 False
9 51 3 6 28 False ,
assists baronKills bountyLevel champLevel championName \
0 6 0 1 16 Viego
1 9 0 0 16 MasterYi
2 8 0 0 17 Ahri
3 16 0 1 17 Ashe
4 15 0 2 15 Lux
5 11 0 0 16 Sion
6 10 0 0 16 Tristana
7 11 0 0 16 Shen
8 11 0 0 15 Kaisa
9 10 0 1 15 Zyra
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 5637 11943 5637
1 615 17779 615
2 4316 4316 4316
3 9766 20251 9766
4 1874 2539 1874
5 1966 3833 1966
6 104 18772 104
7 0 1445 0
8 0 0 0
9 0 255 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 4 2 0 False False
1 10 0 1 False False
2 7 0 0 False False
3 8 4 2 False False
4 5 3 0 False False
5 12 0 0 False False
6 9 5 2 False True
7 3 2 0 False False
8 9 0 0 True False
9 13 4 0 True False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False True False
2 True False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 10986 TOP 0
1 False 15444 JUNGLE 0
2 False 14492 MIDDLE 0
3 False 16765 BOTTOM 1
4 False 9912 UTILITY 0
5 False 10772 MIDDLE 0
6 False 13483 JUNGLE 0
7 False 10814 TOP 0
8 False 10839 BOTTOM 0
9 False 11596 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1055 3153 6673 3047 3035 0 3340
1 0 6691 3006 6676 6695 3036 1036 3364
2 0 1058 3157 4629 3020 6655 3135 3340
3 0 6672 3046 3031 3072 1036 3006 3363
4 0 3020 3157 3853 2055 6655 3108 3364
5 1 1054 3143 1033 3111 3075 6662 3340
6 1 6672 3046 3006 2015 3031 3086 3363
7 1 3065 3047 3075 3068 0 0 3340
8 1 6671 1055 3085 6676 3006 0 3340
9 1 3020 3157 6653 3165 3853 2055 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 1 0 1
1 4 16 4 3
2 5 14 3 2
3 3 11 3 2
4 1 4 2 1
5 2 7 2 1
6 4 9 2 2
7 1 3 2 1
8 1 6 2 2
9 2 9 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 549 3927 1606
1 405 6103 0
2 547 86716 20108
3 465 1929 1929
4 607 44549 14148
5 369 33319 5728
6 683 27935 2257
7 1526 36899 4958
8 775 10206 5062
9 561 56926 20999
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 7489 28 0 0
1 10602 158 0 0
2 9112 4 0 0
3 8299 44 0 0
4 5795 8 0 0
5 11000 4 1 0
6 8976 139 1 0
7 6333 1 1 0
8 5951 0 1 0
9 7957 0 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 124365
1 0 2 148870
2 0 3 12184
3 0 4 189256
4 0 5 6925
5 0 6 80783
6 0 7 138479
7 0 8 43729
8 0 9 89340
9 0 10 2712
physicalDamageDealtToChampions physicalDamageTaken role \
0 13532 13617 SOLO
1 28324 23688 NONE
2 2437 14120 SOLO
3 28952 10896 CARRY
4 571 5536 SUPPORT
5 13574 32909 SOLO
6 13358 21965 NONE
7 5979 14722 SOLO
8 4806 13352 CARRY
9 872 12296 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 4 2 12 335
1 3 4 15 11 229
2 4 4 6 14 329
3 4 7 3 4 186
4 3 3 2 4 131
5 3 12 5 4 361
6 1 4 17 11 420
7 1 12 3 4 256
8 4 4 3 7 220
9 7 14 4 4 80
summonerName teamEarlySurrendered teamId teamPosition \
0 Rotome False 100 TOP
1 William Shatner False 100 JUNGLE
2 Freebeemee False 100 MIDDLE
3 Captain Limbo False 100 BOTTOM
4 Make Me Famous False 100 UTILITY
5 Dammit Moon Moon False 200 MIDDLE
6 UseIess Jungle False 200 JUNGLE
7 EpicGoose False 200 TOP
8 Jakill101 False 200 BOTTOM
9 Foolsfate False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 11 2006 141020 15139
1 4 2006 180223 34844
2 31 2006 144758 29915
3 40 2006 215507 36533
4 57 2006 52183 15427
5 36 2006 121289 19303
6 5 2006 188486 17523
7 27 2006 89495 11636
8 0 2006 99620 9941
9 30 2006 60615 22727
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 21796 4864 189 63
1 35353 12484 12 204
2 24153 6348 187 68
3 19841 1220 221 791
4 11548 410 23 255
5 53178 2606 143 1049
6 34187 14072 40 192
7 23920 3308 177 215
8 21218 4253 142 0
9 23209 2827 54 163
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 142 1 12727
1 324 1 25248
2 285 1 45857
3 309 3 24321
4 141 1 708
5 405 1 7186
6 292 1 22071
7 99 1 8865
8 286 3 73
9 391 1 975
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 690 3 0
1 6519 1062 1 0
2 7370 920 0 0
3 5651 645 3 0
4 708 216 2 0
5 0 9269 0 9
6 1907 3246 0 9
7 699 2865 0 9
8 73 1914 0 9
9 855 2955 0 9
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 31 2 7 10 True
1 18 0 2 2 True
2 18 0 1 10 True
3 50 5 7 13 True
4 51 5 1 20 True
5 9 0 1 5 False
6 36 5 3 15 False
7 26 2 3 10 False
8 13 0 0 9 False
9 56 5 9 20 False ,
assists baronKills bountyLevel champLevel championName \
0 6 0 0 13 Sylas
1 10 0 0 14 Lillia
2 7 0 0 13 Lissandra
3 5 0 0 14 Jinx
4 14 0 0 12 Karma
5 2 0 0 14 Fiora
6 5 0 1 12 Amumu
7 6 0 0 13 Viego
8 4 0 0 12 Jhin
9 5 0 0 11 Lux
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 1127 1442 1127
1 1270 5692 1270
2 2451 2570 2451
3 9210 19863 9210
4 2875 4883 2875
5 3746 8279 3746
6 0 7182 0
7 0 2856 0
8 0 1130 0
9 0 2097 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 6 1 0 False False
1 2 2 0 False False
2 6 3 0 False False
3 4 0 2 False False
4 3 1 0 False False
5 8 0 0 False True
6 4 2 1 True False
7 5 0 0 False False
8 8 0 0 False False
9 8 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 7511 TOP 0
1 False 8729 JUNGLE 1
2 False 7591 MIDDLE 0
3 False 16463 BOTTOM 1
4 False 9174 UTILITY 0
5 False 12750 TOP 0
6 False 6841 JUNGLE 0
7 False 9301 MIDDLE 0
8 False 6466 BOTTOM 0
9 False 5338 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3158 6656 2420 3191 1052 1056 3340
1 0 2055 2031 3157 3020 6653 1028 3340
2 0 6656 2421 2055 1056 3108 3020 3340
3 0 1038 3085 1053 6671 3006 3031 3340
4 0 3853 2065 6616 3011 3020 0 3364
5 2 1055 6630 3111 3508 3074 1031 3340
6 2 2031 3111 2055 3068 3076 1028 3340
7 2 1054 3153 3047 6673 1036 1036 3340
8 2 6671 1055 3009 3035 0 0 3340
9 2 3853 4005 3020 3145 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 3 0 1
1 1 2 2 1
2 0 0 0 0
3 4 23 12 3
4 1 5 5 1
5 3 13 5 2
6 0 2 0 1
7 1 3 2 1
8 0 2 0 1
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 384 54836 10350
1 1275 74396 5617
2 582 69560 8982
3 1107 2250 1510
4 1267 30687 12153
5 362 1448 713
6 841 33507 3629
7 445 3917 1663
8 424 7061 737
9 449 24451 6184
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 2411 0 0 0
1 4304 112 0 0
2 2303 4 0 0
3 4110 28 0 0
4 2338 4 0 0
5 15179 0 1 0
6 4798 64 1 0
7 8374 14 1 0
8 5019 0 1 0
9 6193 0 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 7388
1 0 2 18090
2 0 3 10514
3 0 4 180013
4 0 5 4057
5 0 6 66829
6 0 7 9622
7 0 8 80353
8 0 9 60846
9 0 10 2107
physicalDamageDealtToChampions physicalDamageTaken role \
0 390 15953 SOLO
1 521 18520 NONE
2 1250 10091 SOLO
3 42169 11315 CARRY
4 819 8021 SUPPORT
5 18844 13514 SOLO
6 182 16265 NONE
7 9403 12032 SOLO
8 3899 11812 CARRY
9 382 10437 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 12 4 4 237
1 10 11 2 4 240
2 2 12 3 4 280
3 4 4 2 7 80
4 2 4 4 14 253
5 4 4 5 14 256
6 13 11 3 4 73
7 3 4 4 14 335
8 1 7 2 4 67
9 4 4 2 14 129
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 Rental Cop False 100 TOP 15
1 100mphNoc False 100 JUNGLE 15
2 Zedache False 100 MIDDLE 25
3 Im Potat False 100 BOTTOM 29
4 KittyKatKillz False 100 UTILITY 23
5 SussieAmogus False 200 TOP 13
6 Citabogue False 200 JUNGLE 17
7 Rotome False 200 MIDDLE 12
8 Dublaiar False 200 BOTTOM 17
9 Alece False 200 UTILITY 32
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1539 65003 11135
1 1539 118479 7382
2 1539 80357 10515
3 1539 186553 45926
4 1539 35498 13726
5 1539 78142 26365
6 1539 50421 4433
7 1539 99505 11908
8 1539 67907 4637
9 1539 28132 6830
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 23231 5897 98 226
1 23413 9973 24 358
2 15562 1308 145 174
3 19055 2578 195 216
4 11640 1182 9 156
5 30011 11512 103 111
6 22708 4179 16 102
7 21495 4478 139 39
8 17288 1199 92 124
9 17045 183 18 252
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 134 1 2779
1 82 1 25991
2 175 1 282
3 118 2 4290
4 114 1 754
5 220 12 9864
6 114 3 7290
7 173 1 15234
8 235 2 0
9 187 1 1573
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 394 4867 1 1
1 1243 589 0 1
2 282 3166 1 1
3 2246 3629 5 1
4 754 1280 0 1
5 6807 1316 1 9
6 621 1644 0 9
7 841 1088 0 9
8 0 456 0 9
9 264 414 0 9
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 25 1 1 8 True
1 25 3 0 6 True
2 19 5 3 8 True
3 15 0 1 8 True
4 27 1 0 14 True
5 8 0 0 7 False
6 18 4 2 7 False
7 10 1 1 7 False
8 8 0 0 6 False
9 16 0 1 8 False ,
assists baronKills bountyLevel champLevel championName \
0 1 0 0 14 Quinn
1 1 0 0 11 Zac
2 4 0 0 13 Kassadin
3 3 0 0 12 Jinx
4 4 0 0 11 Thresh
5 12 0 4 15 Renekton
6 5 0 0 14 Nasus
7 4 0 3 15 Viego
8 4 0 8 14 Kaisa
9 13 0 0 12 Bard
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 8318 8444 8318
1 0 5226 0
2 597 746 597
3 2081 2383 2081
4 902 902 902
5 6417 7573 6417
6 3320 34068 3320
7 1557 6350 1557
8 5719 6869 5719
9 1212 1536 1212
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 9 0 0 False False
1 4 2 0 False False
2 8 1 0 False False
3 6 2 0 False False
4 4 1 0 False False
5 3 0 0 True False
6 1 0 3 False True
7 3 2 0 False False
8 4 0 1 False False
9 4 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 8461 TOP 0
1 False 6898 JUNGLE 0
2 False 8315 MIDDLE 0
3 False 9435 BOTTOM 0
4 False 7065 UTILITY 0
5 False 13094 TOP 0
6 False 9381 JUNGLE 0
7 False 10705 MIDDLE 0
8 False 11299 BOTTOM 2
9 False 6579 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 2 6672 2031 3047 1053 1043 1037 3363
1 2 3047 2031 6662 3076 1011 0 3364
2 2 1082 0 3070 3047 6656 3157 3363
3 2 1055 6672 3085 3006 3123 0 3363
4 2 3190 3117 3857 3109 1029 0 3364
5 0 3074 3053 6693 1054 3047 0 3340
6 0 6632 3047 3110 3211 1028 0 3340
7 0 1055 3153 6673 3047 0 0 3340
8 0 1055 6672 3006 6676 3086 1036 3340
9 0 3853 2065 3009 3105 0 1028 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 0 2 0 1
1 0 1 0 1
2 1 4 2 1
3 1 4 3 2
4 1 4 3 1
5 2 11 5 1
6 0 1 0 1
7 2 8 3 2
8 2 10 8 3
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 239 0 0
1 610 71876 6073
2 622 49180 11735
3 814 1109 342
4 731 12065 7251
5 903 6614 1924
6 703 30742 845
7 451 5763 1490
8 631 7735 4331
9 534 14333 5675
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 1236 4 1 0
1 5340 100 1 0
2 3143 0 1 0
3 3135 0 1 0
4 4179 0 1 0
5 7443 8 0 0
6 4906 153 0 0
7 8208 8 0 0
8 3535 5 0 0
9 3347 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 92618
1 0 2 19157
2 0 3 17088
3 0 4 85504
4 0 5 3607
5 0 6 123193
6 0 7 121128
7 0 8 98539
8 0 9 87154
9 0 10 2661
physicalDamageDealtToChampions physicalDamageTaken role \
0 8083 9256 SOLO
1 512 23293 NONE
2 1490 16964 SOLO
3 11251 12555 CARRY
4 1067 7688 SUPPORT
5 18125 18593 SOLO
6 3858 16968 NONE
7 15865 9489 SOLO
8 11032 9718 CARRY
9 1370 5215 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 4 14 172
1 19 11 3 4 250
2 4 14 3 4 415
3 4 7 4 4 354
4 4 3 2 4 363
5 3 12 4 4 253
6 2 4 11 11 365
7 3 4 4 14 334
8 4 4 3 7 352
9 4 7 3 4 196
summonerName teamEarlySurrendered teamId teamPosition \
0 xSOJUx False 100 TOP
1 OhLookItsMeAgain False 100 JUNGLE
2 KidYoungSoldier False 100 MIDDLE
3 No Hope False 100 BOTTOM
4 Weltschmerz False 100 UTILITY
5 Mingi Kang False 200 TOP
6 phyco445 False 200 JUNGLE
7 Rotome False 200 MIDDLE
8 A REGULAR SLATT False 200 BOTTOM
9 gyal False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 14 1542 98527 8966
1 27 1542 99808 7170
2 26 1542 70129 14246
3 14 1542 98132 12628
4 34 1542 21018 8319
5 24 1542 137562 21151
6 9 1542 164682 5221
7 12 1542 110075 18582
8 0 1542 105422 18475
9 29 1542 17085 7136
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 11463 708 164 77
1 31787 26740 17 669
2 20453 1835 132 97
3 16272 4481 170 44
4 13191 188 24 106
5 27223 10809 160 54
6 22410 7013 27 191
7 18847 7151 163 64
8 13831 5075 166 21
9 8599 3562 6 141
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 229 1 5908
1 85 4 8773
2 239 1 3860
3 165 2 11517
4 123 1 5345
5 108 1 7755
6 21 1 12812
7 88 1 5772
8 105 3 10533
9 85 5 91
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 883 970 3 9
1 584 3153 0 9
2 1020 345 0 9
3 1034 582 1 9
4 0 1323 0 9
5 1101 1187 3 4
6 518 536 2 4
7 1227 1149 1 4
8 3111 577 2 4
9 91 36 1 4
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 24 0 2 8 False
1 15 2 0 9 False
2 13 1 0 6 False
3 19 2 2 9 False
4 21 1 1 9 False
5 10 0 0 7 True
6 18 0 2 6 True
7 28 6 3 9 True
8 14 0 4 6 True
9 15 0 1 9 True ,
assists baronKills bountyLevel champLevel championName \
0 3 0 0 15 Tryndamere
1 8 0 0 13 RekSai
2 8 0 0 14 Viktor
3 3 0 4 13 Jhin
4 14 0 1 12 Lulu
5 2 0 0 14 Yorick
6 10 0 0 13 Kayle
7 5 0 0 13 Viego
8 2 0 0 11 Jinx
9 2 0 0 11 Swain
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3860 8408 3860
1 3624 22302 3624
2 3308 3899 3308
3 3289 5471 3289
4 1037 1433 1037
5 3466 5088 3466
6 2180 7971 2180
7 824 1457 824
8 843 2316 843
9 0 2722 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 3 2 0 False False
1 6 1 2 False False
2 5 0 0 False False
3 2 3 0 False True
4 3 1 0 True False
5 5 1 0 False False
6 7 1 1 False False
7 4 1 0 False False
8 9 0 0 False False
9 5 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 11339 TOP 0
1 True 9577 JUNGLE 0
2 True 8506 MIDDLE 0
3 True 12544 BOTTOM 0
4 True 7727 UTILITY 0
5 True 9403 TOP 0
6 True 8375 JUNGLE 0
7 True 8768 MIDDLE 0
8 True 7294 BOTTOM 0
9 True 7781 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1054 6672 6675 3006 3046 0 3340
1 0 6693 2031 3047 3814 3044 0 3340
2 0 1056 6656 1029 3113 3020 1026 3340
3 0 1055 6671 6676 3094 1036 3009 3363
4 0 3853 6617 3504 1052 2055 3158 3364
5 0 2033 6632 3748 3047 1028 1028 3340
6 0 6672 3006 3115 0 0 0 3364
7 0 1054 3153 3047 6673 0 0 3340
8 0 1055 3006 2055 3086 6672 1042 3340
9 0 3047 3157 3802 3853 3108 2055 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 5 3 1
1 2 7 2 1
2 0 0 0 0
3 3 15 6 2
4 1 3 2 1
5 1 5 4 1
6 1 3 2 1
7 1 5 5 1
8 0 1 0 1
9 2 5 3 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 973 0 0
1 381 5632 0
2 394 77074 17796
3 739 10393 3538
4 732 8890 3918
5 556 19213 8696
6 317 48763 5202
7 1024 2562 1106
8 302 945 315
9 375 20794 9683
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 6422 24 0 0
1 5008 93 0 0
2 4021 0 0 0
3 5287 4 0 0
4 4581 0 0 0
5 4834 4 0 0
6 6219 98 0 0
7 7953 3 0 0
8 3196 12 0 0
9 5208 1 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 146022
1 0 2 83624
2 0 3 9630
3 0 4 128407
4 0 5 3395
5 0 6 87270
6 0 7 49201
7 0 8 59696
8 0 9 72291
9 0 10 2499
physicalDamageDealtToChampions physicalDamageTaken role \
0 13291 17838 SOLO
1 13062 16296 NONE
2 539 7884 SOLO
3 21853 8479 CARRY
4 1259 4073 SUPPORT
5 14415 22796 SOLO
6 4470 18611 NONE
7 7964 7970 SOLO
8 4896 12741 CARRY
9 952 8663 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 1 6 3 4 131
1 3 4 7 11 327
2 1 12 3 4 207
3 4 4 4 7 211
4 5 14 3 4 186
5 3 4 2 12 144
6 3 4 13 11 61
7 3 4 4 14 334
8 4 4 5 7 35
9 4 14 4 4 227
summonerName teamEarlySurrendered teamId teamPosition \
0 Emrel False 100 TOP
1 Lordiiee False 100 JUNGLE
2 I Wanna Pet You False 100 MIDDLE
3 Step Brother no False 100 BOTTOM
4 Useless Leona False 100 UTILITY
5 blankiers False 200 TOP
6 Couple False 200 JUNGLE
7 Rotome False 200 MIDDLE
8 Yeddao False 200 BOTTOM
9 Sticky Rick False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 3 1487 156623 14740
1 22 1487 107608 16099
2 26 1487 86704 18335
3 18 1487 139386 25690
4 20 1487 13103 5995
5 14 1487 109867 23543
6 10 1487 111422 10810
7 8 1487 62722 9534
8 9 1487 78065 5497
9 35 1487 26015 11238
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 24890 9160 179 29
1 22197 9313 18 234
2 12628 1051 159 149
3 14286 5294 173 119
4 8811 1510 7 136
5 29949 8646 156 174
6 25164 13110 29 393
7 16965 2486 136 24
8 16841 2965 134 32
9 14878 2981 20 137
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 122 1 10600
1 159 1 18351
2 157 1 0
3 63 3 586
4 85 2 818
5 110 1 3383
6 190 4 13456
7 157 1 463
8 178 3 4828
9 101 1 2722
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1449 628 1 1
1 3037 893 2 1
2 0 722 2 1
3 298 519 1 1
4 818 155 0 1
5 431 2318 1 6
6 1136 333 0 6
7 463 1041 0 6
8 285 903 0 6
9 602 1006 0 6
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 20 2 0 7 True
1 16 1 0 7 True
2 7 0 1 6 True
3 16 3 0 10 True
4 41 2 4 13 True
5 22 1 0 7 False
6 19 1 1 3 False
7 11 6 2 5 False
8 5 1 1 3 False
9 32 3 5 11 False ,
assists baronKills bountyLevel champLevel championName \
0 5 0 5 18 Garen
1 8 0 0 17 Lillia
2 3 0 1 17 Viego
3 3 0 0 15 Samira
4 10 0 0 14 Alistar
5 5 0 0 14 Quinn
6 7 0 0 16 Nocturne
7 7 0 0 15 Xerath
8 5 0 0 16 Ezreal
9 4 0 0 13 Velkoz
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 12371 12371 12371
1 306 13679 306
2 1337 9703 1337
3 1335 16531 1335
4 830 2433 830
5 2681 2681 2681
6 0 14520 0
7 437 2582 437
8 1786 6145 1786
9 1138 2870 1138
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 2 0 0 False False
1 6 5 2 False True
2 6 1 0 True False
3 5 0 0 False False
4 5 5 0 False False
5 10 0 0 False False
6 9 1 2 False False
7 10 0 0 False False
8 5 3 0 False False
9 5 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 16589 TOP 1
1 True 13691 JUNGLE 0
2 True 13316 MIDDLE 0
3 True 13543 BOTTOM 0
4 True 7713 UTILITY 0
5 True 9435 TOP 0
6 True 13416 JUNGLE 0
7 True 9021 MIDDLE 0
8 True 13753 BOTTOM 0
9 True 9999 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 6631 3006 3053 3742 6333 0 3364
1 0 3135 3157 4637 3158 6653 0 3364
2 0 1054 3153 3047 6673 3508 0 3340
3 0 6676 6673 3031 1055 3047 3035 3340
4 0 3190 3860 3117 3050 3801 0 3364
5 1 1055 6672 3006 3153 2015 0 3340
6 1 6631 3053 3158 3123 3071 3133 3364
7 1 1056 6655 3020 4628 0 0 3340
8 1 3133 3508 6691 3158 3074 3035 3340
9 1 6653 4637 3853 3916 3020 1028 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 10 5 2
1 2 9 3 1
2 2 9 4 1
3 3 11 6 3
4 0 0 0 0
5 0 3 0 1
6 1 7 3 1
7 0 3 0 1
8 2 5 2 2
9 1 6 3 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 1242 3470 792
1 530 156597 13908
2 559 5632 2260
3 798 13740 2562
4 649 9083 5210
5 371 93 93
6 464 10379 2073
7 392 91329 16250
8 528 19950 6281
9 501 55341 26728
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 11589 28 0 0
1 12819 200 0 0
2 11250 24 0 0
3 10749 32 0 0
4 10263 0 0 0
5 4816 0 0 0
6 8569 145 0 0
7 4772 2 0 0
8 3318 18 0 0
9 4718 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 177280
1 0 2 25007
2 0 3 135745
3 0 4 110311
4 0 5 6792
5 0 6 94145
6 0 7 168140
7 0 8 7421
8 0 9 185424
9 0 10 2037
physicalDamageDealtToChampions physicalDamageTaken role \
0 18033 18144 SOLO
1 468 27176 NONE
2 17365 16072 SOLO
3 15392 13599 CARRY
4 551 13549 SUPPORT
5 17616 16592 SOLO
6 19350 32314 NONE
7 742 11709 SOLO
8 11913 10083 CARRY
9 996 9624 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 5 14 209
1 6 4 17 11 162
2 5 4 5 14 333
3 3 4 5 7 156
4 1 14 6 4 89
5 5 4 3 14 447
6 3 4 15 11 317
7 3 3 6 4 55
8 6 7 6 4 275
9 7 14 4 4 294
summonerName teamEarlySurrendered teamId teamPosition \
0 Kako False 100 TOP
1 OGBulky False 100 JUNGLE
2 Rotome False 100 MIDDLE
3 PootisApple9000 False 100 BOTTOM
4 DaxTheGreatWolf False 100 UTILITY
5 LadyTimeko False 200 TOP
6 Keodye545 False 200 JUNGLE
7 Eittienne False 200 MIDDLE
8 The Funky Duck False 200 BOTTOM
9 CAGS72 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 29 1996 189928 24410
1 17 1996 225607 17640
2 14 1996 148375 20656
3 3 1996 137161 18103
4 29 1996 21095 5912
5 28 1996 109786 20450
6 213 1996 186050 22710
7 21 1996 98750 16993
8 1 1996 216035 18440
9 28 1996 65218 33895
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 32785 4834 224 201
1 41983 19200 25 451
2 28578 4757 176 64
3 26173 6696 176 12
4 26437 8374 32 56
5 23972 3673 153 77
6 45325 18949 56 744
7 17573 21 124 220
8 14909 4423 242 24
9 14915 957 41 193
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 87 1 9178
1 202 1 44003
2 227 1 6997
3 150 3 13108
4 151 5 5219
5 365 1 15546
6 312 1 7530
7 323 1 0
8 144 3 10661
9 165 1 7838
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 5584 3051 5 2
1 3262 1987 0 2
2 1030 1255 1 2
3 148 1824 0 2
4 150 2624 1 2
5 2740 2563 1 7
6 1286 4441 0 7
7 0 1091 0 7
8 246 1506 1 7
9 6170 572 0 7
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 7 0 1 2 True
1 25 5 2 7 True
2 22 2 1 10 True
3 15 0 0 10 True
4 41 6 5 16 True
5 22 0 1 11 False
6 24 1 4 2 False
7 17 0 2 8 False
8 24 3 3 11 False
9 48 2 1 29 False ,
assists baronKills bountyLevel champLevel championName \
0 0 0 1 12 Mordekaiser
1 2 0 0 10 Olaf
2 0 0 2 11 Viego
3 5 0 0 10 Singed
4 7 0 2 9 Senna
5 1 0 0 11 Ornn
6 0 0 0 9 Nocturne
7 0 0 3 11 Leblanc
8 1 0 0 8 Yorick
9 3 0 0 7 Thresh
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2433 3499 2433
1 484 16707 484
2 999 3067 999
3 1773 1773 1773
4 3188 3974 3188
5 0 0 0
6 0 4777 0
7 2367 2367 2367
8 18 203 18
9 53 1993 53
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 1 1 0 False True
1 1 0 1 False False
2 2 0 1 False False
3 4 2 0 False False
4 0 2 0 False False
5 2 1 0 False False
6 4 0 0 False False
7 1 0 0 False False
8 4 0 0 False False
9 4 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False True False
2 False False False
3 True False False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 7278 TOP 0
1 True 6254 JUNGLE 0
2 True 5699 MIDDLE 0
3 True 6970 BOTTOM 0
4 True 6180 UTILITY 0
5 True 4522 TOP 0
6 True 4813 JUNGLE 0
7 True 6707 MIDDLE 0
8 True 4492 BOTTOM 0
9 True 3992 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1056 4633 1029 0 1001 0 3340
1 0 6630 2031 3111 0 0 0 3340
2 0 1054 1053 3111 2055 1037 1043 3340
3 0 3116 2033 2055 3802 3108 3009 3340
4 0 6672 0 3864 0 1042 2422 3364
5 0 1054 6662 0 3076 0 1001 3340
6 0 3158 2031 6631 0 0 0 3364
7 0 0 1058 2055 0 6655 3020 3364
8 0 1054 3158 3057 3134 3133 0 3340
9 0 3855 3105 0 0 3067 3158 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 3 2 1
1 1 3 3 1
2 1 4 2 1
3 1 3 2 1
4 1 2 2 1
5 0 0 0 0
6 0 1 0 1
7 2 5 3 2
8 0 1 0 1
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 236 71248 8802
1 850 6540 0
2 618 1973 852
3 406 54038 4505
4 0 0 0
5 124 14146 2657
6 459 6787 393
7 730 29397 6175
8 341 4016 1623
9 267 5007 2772
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 2868 4 0 0
1 2356 108 0 0
2 5060 4 0 0
3 4103 4 0 0
4 1110 0 0 0
5 6943 0 0 0
6 2587 88 0 0
7 1135 0 0 0
8 1608 0 0 0
9 2606 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 16489
1 0 2 68028
2 0 3 41183
3 0 4 4741
4 0 5 24195
5 0 6 34375
6 0 7 62006
7 0 8 12097
8 0 9 31634
9 0 10 5893
physicalDamageDealtToChampions physicalDamageTaken role \
0 2196 8114 SUPPORT
1 2761 14381 SUPPORT
2 5938 3964 SUPPORT
3 339 7643 SUPPORT
4 6913 2651 SUPPORT
5 3723 3748 SUPPORT
6 2158 12582 SUPPORT
7 1378 7774 SUPPORT
8 4385 6284 SUPPORT
9 1452 5403 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 4 1 12 218
1 8 11 2 4 212
2 2 4 2 12 333
3 5 6 4 14 204
4 2 4 2 7 101
5 3 12 2 4 122
6 2 4 7 11 102
7 3 14 2 4 293
8 2 4 2 12 307
9 3 4 5 14 194
summonerName teamEarlySurrendered teamId teamPosition \
0 Static Slasher False 100 TOP
1 DarkChiron False 100 JUNGLE
2 Rotome False 100 MIDDLE
3 EatMyGoo False 100 BOTTOM
4 overnightlobster False 100 UTILITY
5 Margai False 200 TOP
6 Flaymeh False 200 JUNGLE
7 Bıjuu False 200 MIDDLE
8 xavorsmurf False 200 BOTTOM
9 BigSausagexD False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 4 978 90286 11249
1 2 978 90140 3653
2 5 978 43181 6790
3 13 978 59043 5108
4 20 978 25161 7276
5 19 978 51016 6380
6 21 978 72555 2827
7 16 978 42397 8025
8 3 978 35691 6009
9 15 978 17668 4680
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 11114 5570 142 61
1 16737 8727 0 412
2 9496 1976 95 19
3 12347 657 120 358
4 3761 5265 14 92
5 10941 342 101 372
6 15710 8235 9 157
7 9019 847 98 29
8 8476 1075 88 56
9 8296 125 32 50
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 12 1 2547
1 30 1 15571
2 60 1 24
3 38 1 262
4 0 4 966
5 18 2 2495
6 87 1 3762
7 30 1 902
8 79 1 40
9 59 2 6768
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 250 132 1 0
1 892 0 1 0
2 0 472 0 0
3 262 600 0 0
4 362 0 1 0
5 0 249 0 3
6 276 539 0 3
7 472 109 0 3
8 0 583 0 3
9 456 286 0 3
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 8 1 1 3 True
1 11 0 0 5 True
2 6 6 1 4 True
3 11 3 0 6 True
4 16 2 3 8 True
5 11 1 1 4 False
6 5 0 1 1 False
7 5 1 0 3 False
8 2 0 0 3 False
9 13 0 2 6 False ,
assists baronKills bountyLevel champLevel championName \
0 3 0 0 15 Yone
1 9 0 0 13 Sejuani
2 6 0 0 14 Viego
3 3 0 0 12 Ezreal
4 9 0 0 12 Karma
5 4 0 0 14 Volibear
6 16 1 1 16 Ekko
7 14 0 3 15 Sylas
8 13 0 3 14 Jhin
9 20 0 0 14 Thresh
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3553 3553 3553
1 0 11593 0
2 0 3628 0
3 414 4090 414
4 0 0 0
5 3762 10145 3762
6 5663 35171 5663
7 3467 6927 3467
8 4114 11415 4114
9 1022 3407 1022
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 6 1 0 False True
1 8 0 1 False False
2 8 0 0 False False
3 5 0 1 False False
4 5 3 0 False False
5 5 5 0 False False
6 4 2 2 False False
7 3 2 0 False False
8 5 0 0 False False
9 5 5 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 True False False
9 False True False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 12036 TOP 0
1 False 9931 JUNGLE 0
2 False 9324 MIDDLE 0
3 False 8053 BOTTOM 0
4 False 8573 UTILITY 0
5 False 9513 TOP 0
6 False 13181 JUNGLE 1
7 False 13325 MIDDLE 1
8 False 11740 BOTTOM 0
9 False 8293 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 2 6672 3031 3006 6609 0 0 3340
1 2 3068 2031 3076 3111 3001 1011 3364
2 2 1055 3153 3006 6673 0 0 3340
3 2 3508 3158 6691 1036 0 1055 3340
4 2 3853 6617 6616 3916 4642 3158 3364
5 0 6664 2033 3157 1054 2055 3047 3340
6 0 4636 2031 3020 3115 3100 1058 3364
7 0 4630 3157 6656 4629 3020 0 3340
8 0 1055 6671 3009 6676 3094 0 3340
9 0 3857 3190 3047 3075 1006 1006 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 9 3 2
1 1 4 3 2
2 1 3 2 1
3 1 3 2 2
4 0 3 0 1
5 1 2 2 2
6 2 9 6 2
7 3 14 5 3
8 2 6 3 1
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 453 18161 3319
1 435 58170 9257
2 367 2533 1383
3 872 9147 4330
4 848 32377 15144
5 532 55989 3525
6 668 153470 16972
7 993 89645 30780
8 560 2611 1110
9 667 12707 5157
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 10242 16 1 0
1 15328 121 1 0
2 16542 16 1 0
3 7589 5 1 1
4 9476 0 1 0
5 4962 11 0 0
6 7417 156 0 0
7 9793 4 0 0
8 5064 4 0 0
9 8943 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 116173
1 1 2 71012
2 0 3 100372
3 0 4 71415
4 0 5 3215
5 0 6 40813
6 0 7 27680
7 0 8 12228
8 0 9 102113
9 0 10 8645
physicalDamageDealtToChampions physicalDamageTaken role \
0 12491 6735 SOLO
1 7358 19232 NONE
2 14958 10233 SOLO
3 6661 6295 CARRY
4 732 5606 SUPPORT
5 3578 15081 SOLO
6 2834 24053 NONE
7 511 16316 SOLO
8 17755 8638 CARRY
9 1010 7834 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 2 12 182
1 3 4 15 11 173
2 5 4 1 12 332
3 3 7 3 4 66
4 8 14 3 4 305
5 2 4 3 12 62
6 5 4 16 11 222
7 4 4 6 14 160
8 4 7 3 4 130
9 5 4 5 14 153
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 ttube False 100 TOP 25
1 Coolgum15 False 100 JUNGLE 30
2 Rotome False 100 MIDDLE 13
3 Dublaiar False 100 BOTTOM 0
4 BreadStick63 False 100 UTILITY 29
5 Greenboy4999 False 200 TOP 13
6 Pteranodon False 200 JUNGLE 17
7 ShortManWarner False 200 MIDDLE 38
8 ham1ck False 200 BOTTOM 16
9 Sbomb100 False 200 UTILITY 29
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1773 140105 17377
1 1773 136560 17235
2 1773 113623 16653
3 1773 83057 10992
4 1773 37217 17441
5 1773 96803 7104
6 1773 194517 20809
7 1773 106050 32754
8 1773 105377 18958
9 1773 27461 7025
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 17608 3983 183 100
1 36254 10329 16 339
2 27490 5396 150 107
3 13934 1501 130 0
4 15411 5202 27 204
5 21388 2694 122 224
6 31754 15934 30 429
7 27411 12153 137 330
8 14122 4011 171 60
9 17490 3087 40 66
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 184 1 5770
1 207 5 7377
2 215 1 10718
3 131 2 2495
4 171 5 1625
5 141 1 0
6 143 1 13366
7 124 1 4176
8 154 5 652
9 136 5 6107
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1566 630 1 8
1 619 1693 0 8
2 312 714 0 8
3 0 50 0 8
4 1565 327 0 8
5 0 1344 2 1
6 1002 282 1 1
7 1462 1302 1 1
8 92 420 2 1
9 858 713 2 1
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 11 1 2 7 False
1 7 0 2 2 False
2 7 0 2 3 False
3 11 0 0 8 False
4 49 3 7 22 False
5 33 6 5 14 True
6 27 2 5 3 True
7 22 2 1 11 True
8 10 0 1 5 True
9 61 6 4 26 True ,
assists baronKills bountyLevel champLevel championName \
0 3 0 6 14 Sett
1 11 0 2 12 Ekko
2 9 0 2 13 Diana
3 12 0 1 11 Morgana
4 5 0 0 12 Lux
5 2 0 0 12 Volibear
6 3 0 0 12 Warwick
7 6 0 0 12 Viego
8 1 0 0 10 MissFortune
9 3 0 0 10 Seraphine
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 7402 20041 7402
1 0 7290 0
2 3466 8533 3466
3 1713 1799 1713
4 924 2641 924
5 456 1217 456
6 0 5165 0
7 2927 2927 2927
8 0 361 0
9 0 121 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 1 0 0 False False
1 4 0 2 False False
2 5 0 0 False False
3 1 1 0 False False
4 1 2 0 False False
5 6 1 0 False False
6 7 1 0 False True
7 5 0 0 True False
8 6 0 1 False False
9 4 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 10346 TOP 0
1 False 8401 JUNGLE 0
2 False 10592 MIDDLE 0
3 False 6811 BOTTOM 1
4 False 7920 BOTTOM 0
5 False 5925 TOP 0
6 False 8879 JUNGLE 0
7 False 7879 MIDDLE 0
8 False 5800 BOTTOM 0
9 False 6046 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1054 6631 3076 3153 3047 1036 3340
1 0 3020 2031 4636 3100 0 0 3364
2 0 3041 3157 4636 3020 3916 0 3364
3 0 3020 3157 3853 3802 1052 0 3364
4 0 6655 3020 2420 1082 1056 3108 3364
5 1 6664 1056 3047 3191 0 0 3340
6 1 6632 3748 3047 0 0 0 3364
7 1 1054 1083 3153 2055 3111 6670 3340
8 1 3004 1036 1036 3006 1036 1036 3340
9 1 6617 3114 3853 3111 1052 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 9 6 3
1 2 5 2 2
2 2 7 2 2
3 0 1 0 1
4 1 6 6 2
5 0 0 0 0
6 1 8 4 1
7 0 1 0 1
8 0 1 0 1
9 0 2 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 493 2959 437
1 482 81443 10347
2 506 100885 18416
3 888 16452 7984
4 1112 52531 10444
5 349 49911 5453
6 484 33696 6408
7 406 3430 978
8 590 1975 594
9 584 11584 3501
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 6035 12 0 0
1 3613 92 0 0
2 3919 12 0 0
3 3350 0 0 0
4 1227 0 0 0
5 6372 8 1 0
6 16828 92 1 0
7 8966 4 1 0
8 8341 4 1 0
9 9019 0 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 87672
1 0 2 20121
2 0 3 18156
3 0 4 5234
4 0 5 9966
5 0 6 23653
6 0 7 51709
7 0 8 64984
8 0 9 48277
9 0 10 2487
physicalDamageDealtToChampions physicalDamageTaken role \
0 13290 9722 SOLO
1 1739 16562 NONE
2 2506 9388 SOLO
3 455 3756 SUPPORT
4 1128 3959 CARRY
5 4999 14077 SOLO
6 5173 11608 NONE
7 5029 5906 SOLO
8 2482 2147 CARRY
9 1106 2536 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 1 12 109
1 3 4 11 11 77
2 5 14 4 4 236
3 3 4 3 7 88
4 4 14 3 4 111
5 2 4 3 12 229
6 2 4 14 11 173
7 3 4 1 12 332
8 3 7 2 4 66
9 3 3 2 4 214
summonerName teamEarlySurrendered teamId teamPosition \
0 ThreatEntity False 100 TOP
1 Cbyrd14 False 100 JUNGLE
2 arcainemage False 100 MIDDLE
3 Unjolly Rancher False 100 BOTTOM
4 Shoebin False 100 UTILITY
5 Psí False 200 TOP
6 Coolgum15 False 200 JUNGLE
7 Rotome False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 K1LL3R2311 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 25 1354 107916 16046
1 10 1354 107856 12718
2 11 1354 130114 21860
3 44 1354 26566 8440
4 34 1354 63856 12420
5 21 1354 82525 10453
6 26 1354 92843 12447
7 4 1354 68415 6007
8 3 1354 50714 3358
9 15 1354 14199 4735
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 15815 2277 130 212
1 21623 10525 22 495
2 14726 1668 165 67
3 7334 2048 35 49
4 5311 50 103 282
5 22776 3389 111 218
6 28982 14254 18 223
7 16023 2660 130 15
8 10668 1507 114 64
9 12089 1298 13 125
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 27 1 17284
1 88 1 6292
2 111 1 11073
3 27 2 4880
4 36 1 1357
5 144 1 8960
6 167 1 7438
7 111 1 0
8 126 3 461
9 101 4 128
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 2318 57 4 1
1 632 1448 0 1
2 938 1418 1 1
3 0 226 2 1
4 847 124 0 1
5 0 2325 0 7
6 866 546 0 7
7 0 1150 1 7
8 281 180 0 7
9 128 533 0 7
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 10 0 1 5 True
1 5 0 1 1 True
2 12 0 3 4 True
3 26 1 2 10 True
4 15 2 1 3 True
5 9 1 0 6 False
6 9 2 0 4 False
7 3 3 0 2 False
8 10 0 1 6 False
9 15 1 1 10 False ,
assists baronKills bountyLevel champLevel championName \
0 2 0 0 18 Yorick
1 4 1 0 14 Volibear
2 4 0 0 15 Akali
3 5 0 0 13 Jhin
4 4 0 0 12 Bard
5 2 0 0 16 Tryndamere
6 11 1 1 15 MasterYi
7 7 0 2 16 Talon
8 11 0 10 16 Aphelios
9 19 0 1 15 Braum
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 4917 15157 4917
1 716 13334 716
2 1566 5820 1566
3 355 5369 355
4 424 1002 424
5 10002 15595 10002
6 146 36115 146
7 1955 8779 1955
8 9111 31320 9111
9 1510 3219 1510
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 2 0 0 False False
1 8 2 1 False False
2 7 1 0 False True
3 7 0 0 False False
4 7 4 0 False False
5 5 0 0 False False
6 4 2 3 False False
7 7 1 0 False False
8 0 1 2 False False
9 0 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False True False
9 True False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 14999 TOP 0
1 False 10991 JUNGLE 0
2 False 10940 MIDDLE 0
3 False 7912 BOTTOM 0
4 False 8617 UTILITY 0
5 False 12938 TOP 0
6 False 11496 JUNGLE 0
7 False 13513 MIDDLE 0
8 False 16708 BOTTOM 1
9 False 9269 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 1053 3143 6333 3047 3742 3078 3340
1 1 2031 6631 3143 3742 3047 0 3340
2 1 3100 3157 4633 0 3047 0 3340
3 1 6671 1055 3009 6676 0 0 3340
4 1 3853 2003 3117 4005 3742 3086 3364
5 0 1055 3006 3153 6672 1038 1018 3340
6 0 6672 3006 2031 3153 3123 3086 3364
7 0 6693 2031 3111 6695 3042 3134 3340
8 0 3031 2420 3006 3085 3072 6673 3363
9 0 3860 3190 3067 3050 3047 3801 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 6 4 2
1 1 4 2 1
2 0 3 0 1
3 0 0 0 0
4 0 3 0 1
5 0 4 0 1
6 1 3 2 1
7 4 13 4 2
8 1 10 10 1
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 1710 35514 7551
1 582 57140 2274
2 331 98896 13506
3 423 8973 757
4 700 24989 10887
5 591 486 250
6 1058 7199 425
7 587 157 157
8 0 3189 2380
9 0 11745 6762
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 1851 40 1 0
1 3980 115 1 0
2 2599 0 1 0
3 1184 8 1 0
4 3541 0 1 0
5 10382 16 0 0
6 5087 169 0 0
7 8370 11 0 0
8 3782 29 0 0
9 9224 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 183113
1 0 2 70747
2 0 3 20964
3 0 4 70839
4 0 5 3995
5 0 6 199515
6 0 7 137953
7 0 8 155957
8 0 9 220163
9 0 10 7961
physicalDamageDealtToChampions physicalDamageTaken role \
0 17912 13972 SOLO
1 8640 25671 NONE
2 1193 21754 SOLO
3 5423 11896 CARRY
4 2019 12039 SUPPORT
5 9725 23267 DUO
6 7011 22943 SOLO
7 26134 15173 DUO
8 18812 6631 CARRY
9 771 7122 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 2 12 385
1 3 4 14 11 332
2 3 14 3 4 350
3 3 7 1 4 66
4 4 4 5 14 206
5 8 14 6 3 46
6 1 4 16 11 70
7 4 4 7 14 141
8 4 7 4 4 143
9 3 4 5 14 244
summonerName teamEarlySurrendered teamId teamPosition \
0 KoboldArtificer False 100 TOP
1 Rotome False 100 JUNGLE
2 Hidden Trap Card False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 ToadRocks False 100 UTILITY
5 Sovereign Troll False 200 TOP
6 Lemonburtio False 200 JUNGLE
7 MightyMoosemaan False 200 MIDDLE
8 Bruhbruh0617 False 200 BOTTOM
9 DJcreamsicle1 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 15 2041 223300 25464
1 22 2041 137919 11323
2 1 2041 127399 15062
3 19 2041 79897 6264
4 34 2041 29896 13820
5 10 2041 220971 13978
6 1 2041 181428 9875
7 5 2041 167632 27130
8 26 2041 234867 22442
9 26 2041 36335 8616
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 22266 5599 240 159
1 30956 10770 37 478
2 25954 8225 183 68
3 13650 1936 106 144
4 15870 2065 22 183
5 33830 13440 206 79
6 28347 14921 13 180
7 24369 8366 151 223
8 10599 6003 249 155
9 16605 3371 28 101
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 115 1 4672
1 233 1 10031
2 181 1 7539
3 217 3 84
4 155 5 912
5 172 1 20969
6 90 1 36274
7 208 1 11517
8 0 2 11514
9 0 5 16628
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 6442 2 9
1 408 1304 1 9
2 362 1600 1 9
3 84 570 0 9
4 912 290 0 9
5 4002 180 4 4
6 2439 316 1 4
7 837 825 0 4
8 1248 185 3 4
9 1082 258 0 4
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 22 0 4 8 False
1 27 2 2 11 False
2 19 2 1 11 False
3 16 0 1 9 False
4 80 4 7 37 False
5 21 0 3 11 True
6 23 2 4 8 True
7 31 1 1 12 True
8 15 1 2 12 True
9 37 1 2 18 True ,
assists baronKills bountyLevel champLevel championName \
0 7 0 13 17 Darius
1 17 0 2 14 Udyr
2 10 0 0 14 Kayle
3 8 0 0 11 Ashe
4 16 0 0 13 Thresh
5 3 0 0 14 Volibear
6 4 0 0 11 Lillia
7 4 0 0 13 Fizz
8 4 0 0 12 Lucian
9 13 0 0 12 Braum
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 10410 19555 10410
1 2095 11178 2095
2 8827 15584 8827
3 4018 9082 4018
4 1920 3654 1920
5 3339 5325 3339
6 268 7113 268
7 768 1491 768
8 2203 2203 2203
9 1880 2690 1880
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 2 1 0 False True
1 5 4 2 False False
2 4 1 1 False False
3 3 0 0 False False
4 7 3 0 False False
5 9 0 0 False False
6 6 0 0 False False
7 8 1 0 False False
8 8 0 0 False False
9 4 4 1 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 15954 TOP 1
1 False 9841 JUNGLE 0
2 False 12328 MIDDLE 2
3 False 8697 BOTTOM 0
4 False 8380 UTILITY 0
5 False 9198 TOP 0
6 False 8205 JUNGLE 0
7 False 9765 MIDDLE 0
8 False 10946 BOTTOM 0
9 False 6862 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1055 3065 3111 3053 3078 3193 3340
1 0 6664 2031 3742 3111 1052 0 3364
2 0 1056 3041 3115 3006 3102 4633 3363
3 0 3006 1055 6672 3153 0 0 3340
4 0 3075 3857 3067 3047 1033 1029 3364
5 3 4633 3115 2420 3047 0 0 3340
6 3 6653 3020 1026 1011 1052 0 3364
7 3 1056 3157 3158 6653 1058 0 3340
8 3 3042 1083 3153 3006 3071 0 3363
9 3 3109 3860 3190 1028 3047 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 15 13 3
1 1 3 2 1
2 2 11 7 2
3 1 3 3 1
4 1 3 2 1
5 0 2 0 1
6 1 4 3 1
7 0 4 0 1
8 2 9 6 3
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 478 0 0
1 458 64552 3696
2 562 80900 17034
3 761 886 686
4 289 19125 5434
5 306 107725 7820
6 491 76280 7804
7 503 53296 10447
8 413 3926 2116
9 1133 6494 2788
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 10513 12 0 0
1 7439 106 0 0
2 4770 8 0 0
3 2569 5 0 0
4 6165 0 0 0
5 4940 18 1 0
6 6048 102 1 0
7 4713 0 1 0
8 6130 8 1 0
9 8569 4 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 160136
1 0 2 36342
2 0 3 28405
3 0 4 55511
4 0 5 10749
5 0 6 31441
6 0 7 13341
7 0 8 20407
8 0 9 100343
9 0 10 7738
physicalDamageDealtToChampions physicalDamageTaken role \
0 24246 14113 SOLO
1 2933 18539 NONE
2 4187 8401 SOLO
3 6399 9273 CARRY
4 1285 8761 SUPPORT
5 6569 16813 SOLO
6 536 16183 NONE
7 2482 9638 SOLO
8 23406 11200 CARRY
9 1336 9299 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 5 4 7 6 256
1 5 6 16 11 315
2 3 4 3 12 332
3 4 7 3 4 66
4 5 14 4 4 189
5 4 4 5 14 282
6 12 11 3 4 241
7 6 14 2 4 260
8 5 7 4 4 282
9 4 4 5 14 315
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 SussieAmogus False 100 TOP 28
1 LordBlackMagic False 100 JUNGLE 26
2 Rotome False 100 MIDDLE 7
3 Dublaiar False 100 BOTTOM 30
4 DEAFORT False 100 UTILITY 36
5 Lörd touch me False 200 TOP 14
6 Exorcit False 200 JUNGLE 13
7 hawtdog97 False 200 MIDDLE 9
8 Hërô False 200 BOTTOM 4
9 JinxyMoo False 200 UTILITY 34
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1627 169612 29857
1 1627 109515 7852
2 1627 109970 21382
3 1627 64848 7510
4 1627 34552 7146
5 1627 143304 15717
6 1627 113216 10688
7 1627 74721 13947
8 1627 118003 25835
9 1627 24258 4755
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 26466 10539 201 299
1 27644 10469 35 264
2 13863 6722 156 199
3 12350 2316 81 461
4 15859 604 48 139
5 23405 3566 151 162
6 23411 7822 23 275
7 16903 568 154 120
8 18793 4604 173 52
9 18886 574 30 140
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 42 1 9475
1 119 1 8620
2 79 5 666
3 86 2 8450
4 127 4 4677
5 240 1 4137
6 153 1 23594
7 239 1 1017
8 202 3 13734
9 146 1 10025
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 5610 1838 5 2
1 1222 1665 0 2
2 160 691 4 2
3 425 507 1 2
4 426 931 1 2
5 1326 1651 0 11
6 2348 1179 0 11
7 1017 2551 1 11
8 312 1463 0 11
9 630 1016 0 11
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 22 1 0 10 True
1 22 4 3 5 True
2 16 2 3 5 True
3 18 0 1 8 True
4 52 3 6 21 True
5 16 0 2 8 False
6 11 0 2 4 False
7 20 1 4 9 False
8 13 0 2 4 False
9 43 4 1 25 False ,
assists baronKills bountyLevel champLevel championName \
0 11 0 0 18 MonkeyKing
1 28 0 0 18 Nunu
2 7 0 0 18 Qiyana
3 20 0 0 18 Varus
4 12 0 0 16 Pyke
5 15 1 1 18 Tryndamere
6 9 1 1 18 Khazix
7 18 0 2 18 Veigar
8 22 0 0 18 Ashe
9 25 0 3 18 Senna
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 6790 24509 6790
1 498 7760 498
2 2174 6792 2174
3 3282 4386 3282
4 679 679 679
5 18005 50389 18005
6 501 28244 501
7 1752 15679 1752
8 7012 12230 7012
9 1921 6917 1921
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 12 3 2 False False
1 12 1 2 True False
2 9 1 0 False False
3 9 0 0 False False
4 15 4 0 False True
5 9 2 1 False False
6 15 0 2 False False
7 4 1 0 False False
8 14 2 0 False False
9 17 4 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 True False False
4 False True False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 18689 TOP 1
1 False 15087 JUNGLE 0
2 False 19343 MIDDLE 0
3 False 25242 BOTTOM 1
4 False 15810 UTILITY 0
5 False 21326 TOP 2
6 False 13836 JUNGLE 0
7 False 22320 MIDDLE 0
8 False 22081 BOTTOM 1
9 False 16413 UTILITY 1
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 4 3053 6630 3047 6333 3074 3026 3340
1 4 3143 3068 3075 3742 3111 3105 3364
2 4 3142 3179 3158 3814 6691 6676 3364
3 4 3042 6691 3142 6676 3158 3814 3340
4 4 3857 6691 3026 3142 3179 3117 3364
5 2 6672 3006 6675 3031 6333 6694 3363
6 2 6691 2031 3047 6676 3814 1038 3340
7 2 4629 6656 3157 3135 3742 3020 3363
8 2 3033 6673 3006 3153 3046 6333 3363
9 2 3864 3033 3742 6672 3124 3158 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 9 5 2
1 0 5 0 1
2 3 18 8 4
3 5 17 5 3
4 2 9 6 2
5 3 9 2 2
6 1 8 2 1
7 4 14 4 2
8 5 16 3 2
9 3 10 3 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 902 28159 3874
1 616 125365 16744
2 1210 20328 2310
3 574 11486 6136
4 649 0 0
5 702 0 0
6 538 6127 756
7 1202 276163 44431
8 398 10018 5783
9 564 504 325
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 12453 12 1 0
1 14584 139 1 0
2 10752 48 1 0
3 5167 55 1 0
4 11399 0 1 0
5 11185 43 0 0
6 6824 108 0 0
7 3979 9 0 0
8 6660 12 0 0
9 3539 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 225895
1 0 2 30492
2 0 3 227764
3 0 4 384076
4 0 5 47054
5 0 6 358758
6 0 7 114949
7 0 8 16712
8 0 9 233616
9 0 10 47268
physicalDamageDealtToChampions physicalDamageTaken role \
0 19439 32929 SOLO
1 2563 46584 NONE
2 33503 25652 SOLO
3 64973 25296 CARRY
4 13620 31086 SUPPORT
5 41081 43197 SOLO
6 14719 37684 NONE
7 1401 21841 SOLO
8 39972 44817 NONE
9 22921 32278 SOLO
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 12 5 4 216
1 3 4 25 11 223
2 5 14 6 4 381
3 8 7 6 4 328
4 6 14 8 4 341
5 9 14 6 4 232
6 23 11 7 4 203
7 5 4 8 12 331
8 10 7 8 4 420
9 10 3 7 4 182
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 ZestyTacosauce False 100 TOP 13
1 SerajDude False 100 JUNGLE 46
2 Arianá Grandé False 100 MIDDLE 36
3 100 Zoe False 100 BOTTOM 59
4 Sona BuveIle False 100 UTILITY 20
5 Rlsky False 200 TOP 21
6 DontAtTheNex False 200 JUNGLE 11
7 Rotome False 200 MIDDLE 69
8 ChaosColors False 200 BOTTOM 77
9 Sour Kayn False 200 UTILITY 54
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 2827 279477 23586
1 2827 217991 22023
2 2827 262880 36759
3 2827 398971 72765
4 2827 56995 16491
5 2827 388060 48440
6 2827 135681 17426
7 2827 293772 46213
8 2827 256985 49741
9 2827 51884 25468
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 54462 15294 295 33
1 66070 26820 62 582
2 37145 3620 231 140
3 31661 5775 318 567
4 44562 9923 69 144
5 57848 27730 275 198
6 46174 12303 28 209
7 26556 2923 289 209
8 53801 7096 214 900
9 37007 20215 37 184
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 506 1 25422
1 458 1 62133
2 430 1 14788
3 331 2 3409
4 628 1 9940
5 353 1 29302
6 492 1 14605
7 190 2 895
8 463 4 13350
9 571 5 4111
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 272 9079 2 11
1 2715 4901 0 11
2 945 740 1 11
3 1655 1197 2 11
4 2871 2076 1 11
5 7358 3466 6 7
6 1950 1665 0 7
7 380 735 2 7
8 3986 2323 2 7
9 2221 1189 0 7
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 28 3 7 12 False
1 34 1 13 2 False
2 41 1 11 13 False
3 15 0 3 7 False
4 121 5 21 56 False
5 42 4 8 16 True
6 19 0 2 10 True
7 23 1 1 10 True
8 36 2 6 20 True
9 62 4 15 33 True ,
assists baronKills bountyLevel champLevel championName \
0 2 0 18 17 Garen
1 6 0 1 14 Morgana
2 10 0 2 16 Veigar
3 6 0 2 16 Sivir
4 22 0 0 14 Nami
5 2 0 0 16 Ornn
6 3 0 0 13 Nidalee
7 1 0 0 15 Ryze
8 3 0 0 13 Kaisa
9 4 0 0 12 Xerath
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 6574 10583 6574
1 839 16282 839
2 4953 10295 4953
3 8159 10543 8159
4 1227 2320 1227
5 2983 4841 2983
6 0 7910 0
7 1212 1212 1212
8 1855 3164 1855
9 401 401 401
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 2 0 0 False False
1 3 3 3 False False
2 1 3 1 False False
3 5 0 0 True False
4 3 4 0 False True
5 7 1 0 False False
6 5 1 1 False False
7 8 2 0 False False
8 9 0 0 False False
9 9 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 15741 TOP 1
1 False 9028 JUNGLE 0
2 False 11609 MIDDLE 0
3 False 13509 BOTTOM 0
4 False 9053 UTILITY 0
5 False 10613 TOP 0
6 False 9035 JUNGLE 0
7 False 11168 MIDDLE 0
8 False 8851 BOTTOM 0
9 False 6637 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 6631 3053 3742 3071 3006 0 3340
1 0 3020 6653 4637 1029 0 0 3364
2 0 4629 6656 4632 2033 3020 4630 3363
3 0 3042 6691 3158 6694 1036 0 3340
4 0 2055 4005 3107 3853 6616 3117 3364
5 1 3047 2033 3075 7005 3193 0 3340
6 1 7010 2421 3100 0 3020 0 3364
7 1 6655 4629 3040 0 0 3111 3363
8 1 7007 1043 1055 6676 0 3006 3340
9 1 6655 3145 3020 3853 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 20 18 4
1 0 2 0 1
2 2 4 2 1
3 2 9 4 1
4 1 3 2 1
5 0 3 0 1
6 0 2 0 1
7 1 4 2 1
8 1 3 2 2
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 187 2005 973
1 596 114785 4532
2 887 115427 11560
3 605 1098 652
4 1004 15125 10640
5 530 80520 9917
6 731 117541 14264
7 797 151633 14136
8 742 7548 3411
9 462 37242 12576
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 14167 12 0 0
1 9503 144 0 0
2 7529 12 0 0
3 13442 20 0 0
4 11011 0 0 0
5 6018 8 1 0
6 8408 160 1 0
7 7733 4 1 0
8 3151 0 1 0
9 7450 0 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 135291
1 0 2 20733
2 0 3 15007
3 0 4 204324
4 0 5 5358
5 0 6 69359
6 0 7 19232
7 0 8 9812
8 0 9 84525
9 0 10 2253
physicalDamageDealtToChampions physicalDamageTaken role \
0 24632 12880 NONE
1 392 18824 NONE
2 679 7537 SOLO
3 26480 10323 CARRY
4 1816 4219 SUPPORT
5 5504 16946 SOLO
6 713 23294 NONE
7 394 13523 SOLO
8 10308 17097 CARRY
9 845 8234 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 6 14 110
1 2 4 7 11 195
2 4 4 3 12 331
3 3 4 4 7 198
4 5 14 3 4 246
5 2 12 2 4 414
6 2 4 16 11 332
7 3 12 4 4 297
8 3 4 4 7 337
9 4 14 4 4 372
summonerName teamEarlySurrendered teamId teamPosition \
0 EightyBard False 100 TOP
1 Kyngs False 100 JUNGLE
2 Rotome False 100 MIDDLE
3 Dark Blaze Cures False 100 BOTTOM
4 Neekø Yazawa False 100 UTILITY
5 Ouate De Phoc False 200 TOP
6 Rapsil False 200 JUNGLE
7 mmmkeeefff False 200 MIDDLE
8 One Stabi Boi False 200 BOTTOM
9 Jader08 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 50 1766 152435 31041
1 9 1766 140683 5322
2 16 1766 132821 12239
3 2 1766 208856 27395
4 25 1766 21246 13219
5 38 1766 158545 15482
6 3 1766 146530 15371
7 15 1766 161446 14531
8 0 1766 96552 14925
9 26 1766 40398 14324
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 27732 6790 170 151
1 28328 17739 28 230
2 15589 5352 209 97
3 24679 7740 226 67
4 15673 13716 11 133
5 25908 3092 202 1432
6 33429 18306 10 103
7 21643 3512 229 67
8 21811 3285 166 0
9 15923 565 27 141
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 26 1 15137
1 71 1 5163
2 35 1 2386
3 155 2 3434
4 74 5 762
5 168 1 8666
6 116 4 9755
7 275 1 0
8 281 2 4477
9 249 1 902
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 5435 684 2 2
1 397 0 0 2
2 0 522 1 2
3 262 914 4 2
4 762 441 0 2
5 60 2943 1 8
6 393 1726 0 8
7 0 386 1 8
8 1206 1562 0 8
9 902 238 0 8
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 15 0 3 8 True
1 29 3 10 4 True
2 33 3 2 12 True
3 10 0 2 4 True
4 59 5 1 27 True
5 13 1 1 8 False
6 24 1 8 2 False
7 20 2 1 11 False
8 13 0 2 8 False
9 48 1 3 25 False ,
assists baronKills bountyLevel champLevel championName \
0 2 0 1 15 Kayle
1 11 0 0 15 Volibear
2 9 0 0 16 Rumble
3 11 0 0 15 Sivir
4 7 0 0 13 Gragas
5 13 1 0 16 Jinx
6 9 0 3 15 LeeSin
7 5 0 0 15 Corki
8 6 0 0 15 MissFortune
9 14 0 0 14 Pyke
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 9018 9018 9018
1 0 9928 0
2 0 3873 0
3 4772 10561 4772
4 0 1198 0
5 10563 20458 10563
6 1140 17749 1140
7 3913 18270 3913
8 4887 9959 4887
9 2804 4375 2804
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 11 0 0 False True
1 5 1 2 False False
2 7 0 0 False False
3 4 0 0 False False
4 6 3 0 False False
5 9 0 0 False False
6 8 0 2 False False
7 6 2 0 False False
8 8 0 0 False False
9 3 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 True False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 11529 MIDDLE 1
1 False 10915 JUNGLE 0
2 False 11142 TOP 0
3 False 12098 BOTTOM 0
4 False 8615 UTILITY 0
5 False 12832 TOP 2
6 False 12480 JUNGLE 0
7 False 11796 MIDDLE 0
8 False 12540 BOTTOM 0
9 False 11867 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 2 3115 4633 6677 3006 1055 0 3340
1 2 3742 6664 2031 3075 0 3158 3364
2 2 3157 4636 1026 3047 3916 1011 3340
3 2 3042 3006 6691 6676 1018 3133 3340
4 2 3860 3158 4005 3165 3191 3108 3364
5 1 1055 6673 3006 3085 3036 1037 3340
6 1 6333 2031 0 6692 3111 3071 3340
7 1 3095 3042 3020 3078 2015 2003 3340
8 1 3042 3006 6692 6676 1036 0 3340
9 1 3857 6693 3142 3117 3814 0 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 0 4 0 1
1 2 6 2 2
2 2 11 4 1
3 1 5 3 2
4 1 7 4 1
5 0 4 0 1
6 2 8 3 1
7 3 8 4 2
8 3 7 2 2
9 2 6 3 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 598 93220 7612
1 759 58353 5055
2 596 80668 25374
3 1254 0 0
4 640 22778 10238
5 319 5553 1043
6 589 34135 1928
7 920 88164 17854
8 627 5810 787
9 871 0 0
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 9404 0 1 0
1 3913 112 1 0
2 3186 0 1 0
3 4542 16 1 0
4 1822 0 1 0
5 22422 24 0 0
6 10036 123 0 0
7 7178 8 0 0
8 7566 19 0 0
9 4379 8 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 44702
1 0 2 46703
2 0 3 12144
3 0 4 141562
4 0 5 5551
5 0 6 157635
6 0 7 103992
7 0 8 17112
8 0 9 109588
9 0 10 35958
physicalDamageDealtToChampions physicalDamageTaken role \
0 3046 12419 SOLO
1 7162 25403 NONE
2 1317 18448 NONE
3 12694 12251 CARRY
4 883 16236 SUPPORT
5 25912 9891 NONE
6 12388 21741 NONE
7 2411 10282 SOLO
8 16183 8709 CARRY
9 10082 6944 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 4 14 269
1 4 4 11 11 331
2 3 4 2 12 259
3 5 7 3 4 257
4 4 4 6 14 161
5 4 4 5 14 545
6 8 11 4 4 415
7 4 4 4 12 274
8 3 4 4 7 66
9 3 4 4 14 337
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 Autolatrist False 100 MIDDLE 8
1 Rotome False 100 JUNGLE 25
2 sneakythatguy False 100 TOP 23
3 CheezeWeeze False 100 BOTTOM 1
4 PEPEGA99 False 100 UTILITY 21
5 Deathgun178 False 200 TOP 24
6 Vegannipple False 200 JUNGLE 17
7 hagopos94 False 200 MIDDLE 4
8 s0methingcoo1 False 200 BOTTOM 5
9 JKŁ False 200 UTILITY 36
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1785 145645 11470
1 1785 111514 12944
2 1785 102028 26691
3 1785 146331 12991
4 1785 34293 12098
5 1785 169358 28716
6 1785 143693 14539
7 1785 115816 20364
8 1785 122508 17110
9 1785 43610 11754
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 22185 3397 203 286
1 30175 9911 24 392
2 23537 1161 127 220
3 17231 5349 186 19
4 18393 4945 40 115
5 32531 5404 168 131
6 32638 9992 30 456
7 18124 1860 155 198
8 17064 3988 181 164
9 11637 2680 43 152
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 386 4 7723
1 144 1 6457
2 190 1 9215
3 173 4 4769
4 132 4 5963
5 332 1 6169
6 228 1 5566
7 203 1 10539
8 253 3 7110
9 102 1 7652
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 811 361 3 10
1 727 858 0 10
2 0 1902 0 10
3 297 438 2 10
4 975 334 0 10
5 1760 218 4 5
6 223 860 0 5
7 98 663 2 5
8 140 788 3 5
9 1671 314 0 5
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 15 0 1 9 False
1 19 1 2 2 False
2 13 0 0 8 False
3 13 0 0 9 False
4 68 4 8 24 False
5 7 0 1 4 True
6 17 0 0 9 True
7 22 2 3 12 True
8 15 0 0 9 True
9 37 2 3 18 True ,
assists baronKills bountyLevel champLevel championName \
0 8 0 0 18 LeeSin
1 21 1 0 18 Hecarim
2 16 1 2 18 Kayle
3 17 0 0 15 Twitch
4 19 0 1 15 Lux
5 2 0 0 17 Camille
6 5 0 0 16 Warwick
7 4 0 0 17 Akali
8 3 0 0 17 Lucian
9 10 0 0 15 Senna
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 6304 11429 6304
1 4766 31144 4766
2 12479 19052 12479
3 912 22629 912
4 3882 9045 3882
5 3061 4239 3061
6 0 25200 0
7 3981 5179 3981
8 4200 8082 4200
9 1695 3101 1695
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 1 1 False False
1 3 0 2 True False
2 2 1 1 False False
3 8 1 0 False True
4 5 0 0 True False
5 7 1 0 False False
6 9 0 2 False False
7 6 2 0 False False
8 10 2 0 False False
9 8 8 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False True False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 19251 TOP 0
1 False 15483 JUNGLE 1
2 False 18007 MIDDLE 2
3 False 12406 BOTTOM 0
4 False 10128 UTILITY 1
5 False 14484 TOP 0
6 False 11898 JUNGLE 0
7 False 12771 MIDDLE 0
8 False 18870 BOTTOM 0
9 False 10977 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3814 6630 3158 3074 3071 3053 3340
1 0 3158 6664 3742 3053 3075 3133 3340
2 0 3006 3157 3041 4633 4629 3115 3340
3 0 3006 3031 3085 6672 1036 1036 3340
4 0 3853 6655 3020 3165 1052 0 3364
5 4 3053 3078 3133 3748 1031 3047 3340
6 4 3111 3077 3068 3065 3075 0 3364
7 4 4636 3100 3157 3916 3020 1026 3364
8 4 6672 3508 3072 3075 6675 3006 3363
9 4 6662 3009 2055 6694 3864 3067 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 3 18 9 2
1 1 8 7 1
2 2 7 5 2
3 1 5 2 1
4 0 2 0 1
5 1 4 2 1
6 0 2 0 1
7 1 3 2 1
8 4 10 3 3
9 1 4 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 930 54495 7161
1 1372 55106 5666
2 1463 185480 15529
3 529 163 102
4 540 52963 11149
5 473 665 665
6 728 79705 6807
7 733 141565 26330
8 397 3920 1336
9 646 5606 1054
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 10458 20 0 0
1 16194 146 0 0
2 7345 63 0 0
3 4795 8 0 0
4 3856 0 0 0
5 10229 38 1 0
6 9495 130 1 0
7 8422 9 1 0
8 6558 17 1 0
9 8188 0 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 163548
1 0 2 138828
2 0 3 50475
3 0 4 99965
4 0 5 3642
5 0 6 151963
6 0 7 74777
7 0 8 32536
8 0 9 269887
9 0 10 35919
physicalDamageDealtToChampions physicalDamageTaken role \
0 34686 34228 SOLO
1 14358 36152 NONE
2 4465 10588 SOLO
3 20246 16441 CARRY
4 1064 6630 SUPPORT
5 15870 23718 SOLO
6 2021 33493 NONE
7 1331 22620 SOLO
8 24862 16664 CARRY
9 20610 15870 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 6 4 8 14 255
1 9 6 24 11 172
2 2 4 3 12 331
3 4 4 5 7 197
4 5 4 4 14 128
5 4 4 2 12 212
6 13 11 0 4 46
7 2 12 3 4 317
8 6 4 7 7 267
9 6 4 7 3 295
summonerName teamEarlySurrendered teamId teamPosition \
0 SussieAmogus False 100 TOP
1 Coolgum15 False 100 JUNGLE
2 Rotome False 100 MIDDLE
3 sąd False 100 BOTTOM
4 Alece False 100 UTILITY
5 neetsk False 200 TOP
6 TheB1g0n3 False 200 JUNGLE
7 CornholeKlunk False 200 MIDDLE
8 DIG Baron False 200 BOTTOM
9 FireKiritoStrike False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 35 2287 220320 43685
1 33 2287 210059 22167
2 6 2287 236230 20172
3 9 2287 119873 25897
4 41 2287 57738 13347
5 19 2287 199148 23680
6 16 2287 165884 9113
7 1 2287 186922 27662
8 1 2287 293168 28670
9 47 2287 41525 21664
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 50287 19096 211 221
1 54774 29454 41 294
2 18985 13016 274 271
3 21892 5659 144 227
4 10652 1637 38 257
5 35713 10774 213 228
6 44781 20064 43 439
7 33433 8117 249 66
8 26025 3220 332 88
9 26146 11009 21 670
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 169 1 2276
1 57 1 16124
2 78 5 273
3 205 4 19743
4 110 1 1132
5 222 1 46519
6 284 1 11400
7 262 1 12820
8 336 2 19360
9 226 5 0
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1838 5600 2 6
1 2142 2427 2 6
2 177 1051 4 6
3 5548 655 1 6
4 1132 165 2 6
5 7144 1764 1 11
6 284 1792 0 11
7 0 2391 2 11
8 2470 2802 3 11
9 0 2087 0 11
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 26 1 4 14 True
1 20 0 0 11 True
2 19 1 3 9 True
3 26 1 3 12 True
4 40 0 6 18 True
5 17 1 1 8 False
6 20 0 1 6 False
7 27 5 2 12 False
8 35 2 4 11 False
9 68 10 9 28 False ,
assists baronKills bountyLevel champLevel championName \
0 7 0 1 12 Bard
1 6 0 0 11 FiddleSticks
2 5 0 1 12 Kayle
3 4 0 7 12 Lucian
4 10 0 0 11 Sett
5 2 0 0 13 Gnar
6 4 0 0 10 Vi
7 2 0 0 11 TwistedFate
8 5 0 0 10 Ashe
9 5 0 0 9 Leona
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 968 2324 968
1 215 7168 215
2 3711 7357 3711
3 5909 10745 5909
4 5315 8958 5315
5 2580 2580 2580
6 0 9016 0
7 310 310 310
8 381 381 381
9 0 0 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 3 0 0 False False
1 2 0 1 False False
2 0 1 0 False False
3 1 3 1 False False
4 3 1 1 False False
5 3 1 0 True False
6 6 2 0 True False
7 5 0 0 True False
8 3 0 0 False True
9 5 1 0 True False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 True False False
2 False False False
3 True False False
4 False True False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 6112 TOP 0
1 True 7267 JUNGLE 0
2 True 7361 MIDDLE 0
3 True 12320 BOTTOM 0
4 True 8362 UTILITY 0
5 True 7526 TOP 0
6 True 6666 JUNGLE 0
7 True 8280 MIDDLE 0
8 True 6499 BOTTOM 0
9 True 4837 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1055 6672 3006 1043 0 0 3340
1 0 3020 3152 2424 1082 3191 3108 3330
2 0 1056 2055 3006 3115 1082 0 3340
3 0 6672 3006 3508 0 1055 1037 3340
4 0 3047 6664 3855 1011 0 0 3364
5 0 1055 1037 6631 3047 3044 1028 3364
6 0 6632 3047 3044 2055 0 0 3364
7 0 3157 2033 6656 3158 2010 3057 3340
8 0 1042 6673 3006 3086 1055 1042 3363
9 0 3860 3190 1029 0 3117 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 2 0 1
1 1 2 2 1
2 0 1 0 1
3 2 13 7 3
4 1 4 4 1
5 1 2 2 1
6 0 2 0 1
7 0 3 0 1
8 0 1 0 1
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 428 16083 4352
1 1133 86664 4282
2 0 45348 2635
3 365 898 351
4 430 8549 620
5 931 3713 763
6 312 7005 93
7 510 74803 7851
8 199 356 356
9 647 1537 1073
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 1528 0 0 0
1 2266 112 0 0
2 1408 8 0 0
3 3520 4 0 0
4 3217 12 0 0
5 2912 0 0 0
6 3727 112 0 0
7 2919 0 0 0
8 2290 0 0 0
9 1357 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 18212
1 0 2 5056
2 0 3 29231
3 0 4 111605
4 0 5 37070
5 0 6 86589
6 0 7 87031
7 0 8 11134
8 0 9 47977
9 0 10 4222
physicalDamageDealtToChampions physicalDamageTaken role \
0 3382 7735 SOLO
1 36 10372 NONE
2 1203 5139 DUO
3 16181 6461 DUO
4 4970 10923 SOLO
5 9740 10237 SOLO
6 5094 14331 NONE
7 928 7609 SOLO
8 6631 2031 CARRY
9 1242 5184 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 4 14 255
1 11 11 3 4 413
2 0 4 2 12 331
3 3 4 3 1 176
4 3 4 4 14 316
5 2 12 2 4 295
6 10 11 3 4 246
7 2 12 3 4 303
8 3 7 2 4 362
9 2 14 3 4 161
summonerName teamEarlySurrendered teamId teamPosition \
0 SussieAmogus False 100 TOP
1 KhackRoach False 100 JUNGLE
2 Rotome False 100 MIDDLE
3 nıx False 100 BOTTOM
4 Your Mustache False 100 UTILITY
5 Specialist Sauce False 200 TOP
6 PlanarFreak False 200 JUNGLE
7 ThirdSky False 200 MIDDLE
8 The Future False 200 BOTTOM
9 Fake Peter False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 20 1278 34827 8266
1 11 1278 96801 4671
2 3 1278 77418 3838
3 0 1278 124823 18358
4 13 1278 61909 9405
5 22 1278 90303 10504
6 15 1278 104606 5719
7 17 1278 86298 8960
8 23 1278 51339 6987
9 18 1278 11885 2458
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 9397 4180 65 148
1 12872 7693 16 638
2 6547 3282 139 180
3 10084 1872 180 37
4 14524 2664 66 104
5 14522 2138 162 309
6 19388 7011 7 289
7 11399 2804 124 150
8 6134 1531 128 375
9 7680 214 30 30
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 54 4 532
1 42 1 5080
2 0 4 2840
3 12 1 12318
4 43 1 16289
5 44 1 0
6 123 1 10570
7 99 1 360
8 34 3 3005
9 68 4 6125
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 532 134 0 1
1 352 234 0 1
2 0 0 2 1
3 1826 102 0 1
4 3814 383 3 1
5 0 1373 0 5
6 532 1329 0 5
7 180 870 0 5
8 0 1812 1 5
9 141 1138 0 5
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 10 0 0 7 True
1 28 0 0 0 True
2 7 2 1 4 True
3 15 3 2 9 True
4 23 1 2 9 True
5 10 1 1 1 False
6 15 4 2 4 False
7 6 0 1 4 False
8 7 0 0 3 False
9 33 1 6 12 False ,
assists baronKills bountyLevel champLevel championName \
0 1 0 0 12 Camille
1 8 0 0 12 Sejuani
2 3 0 0 13 Zed
3 8 0 0 11 Jinx
4 14 0 0 10 Seraphine
5 7 0 7 14 Viego
6 15 1 1 13 Ivern
7 7 0 4 14 Kayle
8 9 0 1 12 Caitlyn
9 14 0 2 12 Yuumi
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3377 5219 3377
1 0 5807 0
2 2680 4029 2680
3 4031 5395 4031
4 1063 1222 1063
5 3543 11867 3543
6 1520 13502 1520
7 4441 14640 4441
8 3852 9471 3852
9 1237 2154 1237
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 6 0 0 False False
1 5 5 0 False False
2 4 2 0 False False
3 3 1 1 False False
4 7 2 0 False False
5 3 1 0 True False
6 3 1 2 False True
7 3 1 0 False False
8 9 2 0 False False
9 6 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 True False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 6658 TOP 0
1 False 11241 JUNGLE 0
2 False 8000 MIDDLE 0
3 False 8771 BOTTOM 0
4 False 7088 UTILITY 0
5 False 13498 TOP 0
6 False 7918 JUNGLE 0
7 False 10965 MIDDLE 1
8 False 7048 BOTTOM 0
9 False 7290 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 1055 3078 1028 3047 3077 0 3340
1 1 3078 3143 3047 3075 1028 0 3364
2 1 6692 3158 6676 0 0 0 3340
3 1 1055 6672 3006 3085 1018 0 3363
4 1 3916 3853 6617 3158 3114 1052 3364
5 0 1055 3153 3111 6672 3044 1037 3340
6 0 3158 6617 3011 2031 3067 0 3364
7 0 1056 3115 3006 4633 1029 1082 3363
8 0 2003 6671 3006 1055 2015 0 3364
9 0 3853 6617 3504 3067 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 0 0 0
1 2 13 8 3
2 1 3 3 1
3 1 6 5 1
4 0 2 0 1
5 2 11 7 3
6 0 2 0 1
7 2 6 4 1
8 0 2 0 1
9 1 3 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 744 369 369
1 543 26430 6298
2 1143 4519 369
3 1110 145 145
4 492 18939 4782
5 898 7185 3015
6 393 13176 4035
7 555 76833 11048
8 362 1670 887
9 262 11086 6161
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 3887 4 1 0
1 11727 102 1 0
2 3094 0 1 0
3 4363 12 1 0
4 3501 0 1 0
5 3309 8 0 0
6 1938 85 0 0
7 2070 9 0 0
8 3577 0 0 0
9 1481 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 52471
1 0 2 90278
2 0 3 73220
3 0 4 72612
4 0 5 3650
5 0 6 117669
6 0 7 5611
7 0 8 31952
8 0 9 68274
9 0 10 1309
physicalDamageDealtToChampions physicalDamageTaken role \
0 5301 10716 SOLO
1 15268 15249 NONE
2 15051 10123 SOLO
3 11186 11106 CARRY
4 1024 9786 SUPPORT
5 22729 20059 NONE
6 1324 9194 NONE
7 2036 11031 SOLO
8 10183 12862 CARRY
9 705 7609 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 4 1 14 330
1 4 4 15 11 48
2 2 4 3 14 266
3 4 7 4 4 292
4 4 4 5 3 278
5 3 4 3 12 167
6 4 4 16 11 265
7 2 4 2 12 331
8 4 4 5 7 129
9 6 3 6 14 124
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 WynnChairman False 100 TOP 10
1 nyleve False 100 JUNGLE 41
2 Almonzo False 100 MIDDLE 6
3 BakedBanjo420 False 100 BOTTOM 6
4 SorcererStoned False 100 UTILITY 22
5 neckbeard False 200 TOP 22
6 Hampants False 200 JUNGLE 31
7 Rotome False 200 MIDDLE 9
8 HAT WOBBLE False 200 BOTTOM 6
9 kittyshank False 200 UTILITY 24
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1474 64976 6389
1 1474 124222 22827
2 1474 78261 15846
3 1474 75601 11966
4 1474 22589 5806
5 1474 137050 27519
6 1474 224706 5559
7 1474 115874 13769
8 1474 69944 11070
9 1474 13355 7826
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 15226 1536 131 69
1 28745 8722 32 449
2 13731 2362 146 92
3 15782 4719 118 29
4 13691 4184 17 153
5 24527 7430 163 128
6 11587 7052 10 161
7 13699 4408 179 340
8 17050 2577 93 17
9 9306 13811 2 49
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 112 1 12135
1 124 5 7514
2 120 1 522
3 107 3 2843
4 150 5 0
5 115 1 12194
6 53 5 205918
7 77 5 7088
8 172 4 0
9 72 5 960
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 717 623 1 7
1 1260 1767 0 7
2 426 513 1 7
3 633 312 1 7
4 0 403 0 7
5 1774 1158 1 3
6 200 454 0 3
7 685 597 3 3
8 0 610 1 3
9 960 216 0 3
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 3 0 0 2 False
1 24 5 2 6 False
2 15 2 0 9 False
3 23 1 1 6 False
4 38 2 2 18 False
5 16 1 2 4 True
6 17 1 5 4 True
7 8 2 0 3 True
8 17 2 3 7 True
9 18 0 1 10 True ,
assists baronKills bountyLevel champLevel championName \
0 5 0 0 18 Teemo
1 4 0 0 16 Khazix
2 18 0 0 17 Seraphine
3 7 0 0 18 Vayne
4 15 0 0 15 Pantheon
5 6 1 3 18 Yorick
6 14 0 0 18 Lux
7 12 0 1 18 Taliyah
8 11 0 4 18 Jhin
9 26 0 0 17 Rell
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 10454 16950 10454
1 1103 24083 1103
2 1852 3117 1852
3 9318 12224 9318
4 3048 5564 3048
5 5850 25354 5850
6 3320 5285 3320
7 1242 11041 1242
8 8965 30019 8965
9 1363 2117 1363
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 6 1 0 False False
1 10 0 4 False False
2 11 2 0 False False
3 13 5 0 False True
4 9 4 0 True False
5 5 3 1 False False
6 7 4 0 False False
7 12 4 0 False False
8 10 1 0 False False
9 7 4 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 True False False
4 False True False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 14242 TOP 1
1 False 14720 JUNGLE 0
2 False 11731 MIDDLE 1
3 False 21380 BOTTOM 0
4 False 10944 UTILITY 0
5 False 16997 TOP 0
6 False 13398 MIDDLE 1
7 False 16254 JUNGLE 0
8 False 20736 BOTTOM 0
9 False 11582 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 1058 1056 3020 3115 4637 6653 3340
1 1 3142 1029 3158 6691 3814 6694 3364
2 1 6617 2420 3158 3191 3011 4629 3340
3 1 3153 3006 6672 3124 3033 3072 3363
4 1 3111 3508 6693 3857 3134 2055 3364
5 2 3074 3078 3111 3742 3065 3082 3364
6 2 2033 6656 4628 3135 3108 3020 3363
7 2 3157 6655 3165 3102 4630 3020 3364
8 2 6671 6676 3009 3031 3094 3095 3363
9 2 3860 3190 3143 3109 3076 3009 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 2 2 1
1 3 12 3 3
2 0 2 0 1
3 5 22 5 3
4 1 3 2 1
5 3 8 3 2
6 0 4 0 1
7 3 15 6 1
8 5 18 4 2
9 2 4 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 920 185007 22497
1 360 7791 1395
2 369 113875 13779
3 319 803 801
4 471 5748 1800
5 1147 36689 8538
6 667 149819 18770
7 723 184252 33394
8 431 10096 4528
9 449 13864 8900
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 10913 21 1 0
1 19031 124 1 1
2 15838 4 1 0
3 20008 24 1 0
4 9141 0 1 0
5 12428 16 0 0
6 7166 4 0 0
7 8121 151 0 0
8 7035 21 0 0
9 7348 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 55497
1 0 2 147106
2 0 3 12217
3 0 4 208635
4 0 5 56082
5 0 6 198751
6 0 7 14932
7 0 8 12962
8 0 9 280914
9 0 10 5669
physicalDamageDealtToChampions physicalDamageTaken role \
0 2641 15190 DUO
1 23597 24800 NONE
2 1533 12690 DUO
3 38776 22494 CARRY
4 14657 21225 SUPPORT
5 15630 21238 SOLO
6 524 14609 SOLO
7 1488 27689 NONE
8 34698 19252 CARRY
9 1767 18891 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 14 5 4 92
1 6 4 23 11 148
2 1 12 6 4 327
3 5 4 8 7 311
4 5 4 9 14 485
5 2 4 2 12 330
6 2 12 6 4 146
7 5 4 19 11 213
8 6 7 5 4 74
9 4 14 5 4 95
summonerName teamEarlySurrendered teamId teamPosition \
0 LightSike False 100 TOP
1 YerrrForceOne False 100 JUNGLE
2 mercy only False 100 MIDDLE
3 Ârbys False 100 BOTTOM
4 ProjectSquilliam False 100 UTILITY
5 Rotome False 200 TOP
6 Eerii False 200 MIDDLE
7 YoungMiclet False 200 JUNGLE
8 Shironyasha False 200 BOTTOM
9 Gedrah False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 41 2259 248983 27170
1 10 2259 170071 26022
2 37 2259 128569 15404
3 21 2259 277797 57550
4 25 2259 68768 18194
5 10 2259 261595 25318
6 46 2259 168259 19839
7 28 2259 204900 36072
8 17 2259 294759 40826
9 44 2259 26023 10973
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 26501 5597 269 905
1 45264 17558 29 278
2 29833 11888 173 293
3 43324 12964 241 57
4 31200 4954 54 32
5 39497 14212 274 157
6 22773 3037 186 454
7 39717 13267 40 688
8 29642 8781 268 115
9 35226 4581 29 68
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 217 1 8478
1 367 1 15172
2 395 5 2476
3 433 4 68358
4 245 1 6937
5 234 1 26154
6 292 1 3507
7 521 1 7686
8 337 2 3749
9 170 4 6489
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 2032 397 5 9
1 1029 1433 2 9
2 91 1304 0 9
3 17973 821 3 9
4 1737 832 1 9
5 1149 5831 5 11
6 544 997 1 11
7 1190 3906 0 11
8 1599 3354 3 11
9 306 8987 0 11
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 44 1 10 12 False
1 23 0 5 5 False
2 23 2 3 11 False
3 57 5 7 15 False
4 40 5 2 14 False
5 14 3 1 5 True
6 15 5 1 11 True
7 31 4 6 10 True
8 11 1 0 7 True
9 61 4 2 37 True ,
assists baronKills bountyLevel champLevel championName \
0 2 0 0 17 Nasus
1 10 1 2 15 Sett
2 4 0 11 16 Kayle
3 14 0 8 16 Senna
4 16 0 0 13 Lux
5 2 0 0 15 Singed
6 4 0 0 15 XinZhao
7 3 0 0 16 Viego
8 2 0 0 14 Caitlyn
9 4 0 0 12 Rakan
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 13354 15385 13354
1 2333 29206 2333
2 2617 21571 2617
3 2589 15437 2589
4 572 4042 572
5 3558 6130 3558
6 5168 12913 5168
7 1852 4564 1852
8 2311 2777 2311
9 660 812 660
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 10 0 0 False False
1 3 1 0 False False
2 1 3 2 False False
3 0 0 1 False False
4 4 5 0 False False
5 5 0 0 False True
6 5 3 0 False False
7 5 2 1 False False
8 7 2 0 False False
9 4 5 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False True False
2 False False False
3 True False False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 12422 TOP 1
1 True 11886 JUNGLE 0
2 True 13952 MIDDLE 0
3 True 14454 BOTTOM 0
4 True 8528 UTILITY 0
5 True 11773 TOP 0
6 True 11682 JUNGLE 0
7 True 11897 MIDDLE 0
8 True 10575 BOTTOM 0
9 True 7295 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1056 6632 3111 3075 3110 3211 3340
1 0 2031 3078 3153 3742 1036 3111 3340
2 0 4629 3041 3006 3115 4633 3916 3340
3 0 3031 6672 3009 3094 3036 1036 3340
4 0 3853 1058 3020 1082 6655 3145 3364
5 1 2033 3116 3020 3075 3742 1052 3340
6 1 3046 3047 6672 3071 0 0 3364
7 1 3053 3047 6672 3153 1036 0 3363
8 1 2031 6672 3006 3095 2015 3086 3363
9 1 3860 2065 3117 3050 0 2055 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 2 0 1
1 1 3 2 1
2 1 12 11 3
3 1 8 8 2
4 0 1 0 1
5 1 6 5 2
6 2 5 3 1
7 1 3 3 1
8 0 2 0 1
9 0 2 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 323 29821 5019
1 615 7269 59
2 241 104772 12850
3 0 3483 1198
4 522 31364 12296
5 604 117119 14963
6 802 24955 1305
7 723 4829 1500
8 545 1839 540
9 1218 12166 3057
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 9803 8 0 0
1 6483 165 0 0
2 2905 36 0 0
3 2856 8 0 0
4 2293 0 0 0
5 7948 4 0 0
6 10801 172 0 0
7 7072 20 0 1
8 5820 4 0 0
9 3086 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 164770
1 0 2 153266
2 0 3 36628
3 0 4 124661
4 0 5 6033
5 0 6 7824
6 0 7 180681
7 0 8 136714
8 0 9 117313
9 0 10 6376
physicalDamageDealtToChampions physicalDamageTaken role summoner1Casts \
0 9637 20007 SOLO 3
1 10812 25699 NONE 16
2 2925 9101 DUO 3
3 27047 7397 DUO 4
4 612 9049 SOLO 6
5 888 20085 DUO 6
6 12426 24984 NONE 13
7 10026 14744 DUO 3
8 10778 13287 NONE 6
9 669 12419 SOLO 5
summoner1Id summoner2Casts summoner2Id summonerLevel summonerName \
0 12 3 4 303 Necrospark10
1 11 3 4 172 Dat Hero Play
2 4 1 14 330 Rotome
3 7 5 4 262 topguy999
4 14 6 4 65 Iwnt1stBlood
5 6 3 12 141 TasteyMan
6 11 5 4 296 DaggerDK
7 14 2 4 278 HipsterNinja
8 7 5 4 296 ThePortuguseGuy
9 14 5 4 401 meowouwu
teamEarlySurrendered teamId teamPosition timeCCingOthers timePlayed \
0 False 100 TOP 7 1846
1 False 100 JUNGLE 19 1846
2 False 100 MIDDLE 6 1846
3 False 100 BOTTOM 46 1846
4 False 100 UTILITY 38 1846
5 False 200 TOP 42 1846
6 False 200 JUNGLE 20 1846
7 False 200 MIDDLE 10 1846
8 False 200 BOTTOM 13 1846
9 False 200 UTILITY 17 1846
totalDamageDealt totalDamageDealtToChampions totalDamageTaken totalHeal \
0 204126 14656 32016 1321
1 176743 12638 32526 12086
2 143600 16857 12495 8480
3 143294 31228 10443 9525
4 37836 13347 11674 1071
5 135152 15852 30020 4542
6 217350 14840 36812 20529
7 160027 12984 22868 3782
8 136944 11760 20630 5920
9 24608 4277 16187 2932
totalMinionsKilled totalTimeCCDealt totalTimeSpentDead totalUnitsHealed \
0 231 716 291 1
1 15 331 64 1
2 187 154 12 5
3 197 170 0 4
4 28 156 100 1
5 197 765 199 1
6 46 656 165 1
7 235 161 208 1
8 209 67 161 4
9 43 57 145 5
trueDamageDealt trueDamageDealtToChampions trueDamageTaken turretKills \
0 9535 0 2204 4
1 16207 1766 343 1
2 2198 1081 487 2
3 15150 2981 190 0
4 438 438 331 0
5 10207 0 1986 2
6 11713 1108 1026 2
7 18483 1458 1051 1
8 17790 442 1522 0
9 6065 550 681 0
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 6 10 0 0
1 6 34 1 5
2 6 29 3 8
3 6 21 0 6
4 6 63 5 9
5 7 17 0 1
6 7 22 4 4
7 7 36 2 2
8 7 19 2 2
9 7 68 6 8
wardsPlaced win
0 7 True
1 10 True
2 10 True
3 9 True
4 26 True
5 10 False
6 5 False
7 12 False
8 13 False
9 36 False ,
assists baronKills bountyLevel champLevel championName \
0 11 0 0 18 Yasuo
1 21 0 0 17 JarvanIV
2 9 0 0 16 Pantheon
3 7 0 0 16 Vayne
4 13 0 0 13 Ahri
5 18 0 0 17 Nautilus
6 15 1 3 17 Volibear
7 9 0 1 17 Katarina
8 12 0 3 18 Jhin
9 13 1 1 15 Sett
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2145 14293 2145
1 2142 15681 2142
2 988 4034 988
3 3624 9787 3624
4 1716 1716 1716
5 1658 4130 1658
6 3979 30430 3979
7 915 4913 915
8 9379 29683 9379
9 5784 13534 5784
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 1 2 False False
1 7 0 0 False False
2 7 0 0 False False
3 10 0 1 False False
4 6 0 0 False False
5 8 1 0 False True
6 5 1 2 False False
7 9 2 1 False False
8 5 0 0 False False
9 8 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False True False
9 True False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 15487 TOP 0
1 False 12836 JUNGLE 1
2 False 13335 MIDDLE 0
3 False 14921 JUNGLE 0
4 False 9019 UTILITY 0
5 False 11511 TOP 0
6 False 16570 JUNGLE 1
7 False 13432 MIDDLE 0
8 False 19178 BOTTOM 0
9 False 11783 UTILITY 1
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 2 1055 6673 3006 3031 3074 3033 3340
1 2 1029 6630 3075 3053 1033 3111 3364
2 2 6692 3053 3111 3071 1031 3133 3340
3 2 6672 3006 3046 3124 3036 1029 3340
4 2 3853 6656 3020 4629 3145 0 3364
5 1 3047 3068 3075 4637 0 0 3340
6 1 3742 3193 6664 3047 3075 3110 3364
7 1 3153 3020 3115 6672 3191 0 3340
8 1 3009 6676 6671 3094 3031 3026 3363
9 1 3857 3047 6664 3075 3083 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 3 10 4 2
1 0 2 0 1
2 2 7 2 1
3 2 12 5 3
4 0 3 0 1
5 1 5 2 1
6 3 10 3 1
7 1 6 2 2
8 3 11 4 2
9 0 5 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 659 15856 2906
1 757 28842 1225
2 701 902 501
3 535 0 0
4 721 23959 10265
5 657 45142 10648
6 1052 112394 9936
7 370 90389 10482
8 1137 10491 4472
9 405 16826 2293
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 9248 44 1 0
1 10969 162 1 0
2 7830 16 1 0
3 5709 16 1 0
4 6179 0 1 0
5 2027 0 0 0
6 4762 151 0 0
7 1620 20 0 0
8 4174 19 0 0
9 5231 8 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 232610
1 0 2 172269
2 0 3 131760
3 0 4 127256
4 0 5 3478
5 0 6 21176
6 0 7 74855
7 0 8 50605
8 0 9 271350
9 0 10 40502
physicalDamageDealtToChampions physicalDamageTaken role \
0 29915 14712 SOLO
1 13937 35093 NONE
2 18810 19849 SOLO
3 16191 16556 CARRY
4 1260 10984 SUPPORT
5 2845 23939 SOLO
6 13286 29458 NONE
7 6204 22341 SOLO
8 28892 19310 CARRY
9 8064 20385 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 6 4 7 14 255
1 4 4 21 11 171
2 6 4 4 14 330
3 6 7 4 4 181
4 4 4 5 14 128
5 3 12 5 4 63
6 23 11 6 4 286
7 3 4 6 14 346
8 5 1 5 4 47
9 6 14 12 4 149
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 SussieAmogus False 100 TOP 45
1 Coolgum15 False 100 JUNGLE 25
2 Rotome False 100 MIDDLE 25
3 supercougar4 False 100 BOTTOM 8
4 Alece False 100 UTILITY 27
5 CDRSnarff False 200 TOP 59
6 Yurmes False 200 JUNGLE 39
7 Ottomans False 200 MIDDLE 2
8 Rage False 200 BOTTOM 24
9 TR4PQU33N False 200 UTILITY 22
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 2311 251545 34993
1 2311 214852 15470
2 2311 133276 19926
3 2311 165452 28984
4 2311 37113 16418
5 2311 66924 14099
6 2311 198377 24696
7 2311 143461 17862
8 2311 298193 34232
9 2311 71547 14481
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 25429 6674 216 196
1 48107 20021 39 563
2 28462 6789 169 38
3 24447 6815 178 18
4 18933 1190 32 76
5 30887 4110 105 372
6 41460 15783 50 840
7 25132 3458 177 13
8 27615 6976 290 144
9 30936 2933 46 122
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 203 1 3078
1 187 1 13741
2 250 1 614
3 299 3 38196
4 183 1 9675
5 277 1 605
6 204 1 11127
7 345 1 2465
8 175 1 16350
9 255 5 14217
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 2172 1468 1 9
1 307 2043 3 9
2 614 782 0 9
3 12793 2181 0 9
4 4892 1769 0 9
5 605 4920 1 4
6 1474 7239 1 4
7 1175 1169 2 4
8 867 4130 2 4
9 4122 5318 1 4
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 28 2 2 14 False
1 15 1 2 7 False
2 21 1 3 8 False
3 12 0 0 8 False
4 41 0 5 21 False
5 21 1 1 12 True
6 25 1 6 3 True
7 32 2 0 12 True
8 17 4 1 10 True
9 71 1 4 31 True ,
assists baronKills bountyLevel champLevel championName \
0 7 0 1 14 Bard
1 4 0 3 12 Hecarim
2 3 0 3 13 Kayle
3 3 0 1 12 Varus
4 5 0 3 10 Lux
5 1 0 0 13 Yasuo
6 1 0 0 12 Evelynn
7 3 0 0 12 Orianna
8 1 0 0 10 Caitlyn
9 2 0 0 10 Senna
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 1183 1491 1183
1 702 17324 702
2 2233 5692 2233
3 1771 1771 1771
4 81 1191 81
5 2849 5036 2849
6 0 5618 0
7 2166 2733 2166
8 1836 2247 1836
9 1072 2080 1072
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 2 0 0 False True
1 1 0 0 False False
2 1 1 0 False False
3 5 0 0 False False
4 1 2 0 False False
5 6 0 0 False False
6 2 1 1 False False
7 2 0 1 False False
8 5 0 0 False False
9 3 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False True False
8 False False False
9 True False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 8683 TOP 0
1 True 8010 JUNGLE 0
2 True 7744 MIDDLE 0
3 True 7636 BOTTOM 0
4 True 6383 UTILITY 0
5 True 7898 TOP 0
6 True 7585 JUNGLE 0
7 True 7400 MIDDLE 0
8 True 6047 BOTTOM 0
9 True 6401 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1055 6672 3006 1043 1026 1052 3340
1 0 2031 6664 3066 3158 1031 1028 3340
2 0 1054 3006 3115 1028 1082 0 3340
3 0 3042 2031 3134 3158 0 3133 3363
4 0 3853 6655 3020 0 0 0 3364
5 0 6673 3006 1038 1037 1018 0 3340
6 0 4636 3020 1082 3057 3113 0 3340
7 0 1056 2421 3020 3108 6655 0 3340
8 0 1055 6671 2015 3006 2003 0 3340
9 0 3864 6677 1018 1042 6672 3009 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 4 2 1
1 1 4 3 1
2 1 3 3 1
3 0 2 0 1
4 2 5 3 1
5 0 3 0 1
6 2 5 3 1
7 0 1 0 1
8 0 0 0 0
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 513 23417 3317
1 759 27068 1084
2 488 42413 2998
3 509 3073 1210
4 1009 17086 8493
5 302 6825 726
6 753 80173 5823
7 1113 55778 11018
8 485 595 595
9 945 0 0
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 4135 4 0 0
1 5868 112 0 0
2 3109 4 0 0
3 4131 0 0 0
4 2327 0 0 0
5 3597 8 0 0
6 4579 113 0 0
7 3241 4 0 1
8 4778 0 0 0
9 2698 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 34906
1 0 2 76852
2 0 3 25842
3 0 4 71138
4 0 5 1662
5 0 6 83658
6 0 7 12940
7 0 8 10933
8 0 9 57282
9 0 10 31957
physicalDamageDealtToChampions physicalDamageTaken role \
0 5531 8092 SOLO
1 5728 17044 NONE
2 1057 3365 SOLO
3 5913 6836 CARRY
4 387 2575 SUPPORT
5 6265 7467 SOLO
6 660 12396 NONE
7 631 4520 SOLO
8 5036 6268 CARRY
9 6788 5298 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 4 4 14 255
1 3 4 14 11 171
2 1 4 2 12 330
3 2 4 2 12 194
4 3 4 2 14 128
5 3 4 2 14 387
6 12 11 3 4 224
7 2 12 2 4 150
8 2 4 4 7 296
9 2 4 1 14 212
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 SussieAmogus False 100 TOP 16
1 Coolgum15 False 100 JUNGLE 10
2 Rotome False 100 MIDDLE 3
3 retired bôt False 100 BOTTOM 18
4 Alece False 100 UTILITY 42
5 Rageclinic False 200 TOP 9
6 Aeönic False 200 JUNGLE 6
7 Jnoose False 200 MIDDLE 18
8 Sago Milktea False 200 BOTTOM 8
9 swag poro False 200 UTILITY 22
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1309 61746 10253
1 1309 115596 7241
2 1309 70751 4055
3 1309 74212 7124
4 1309 19181 9114
5 1309 92463 7276
6 1309 99944 6881
7 1309 69317 11649
8 1309 62362 5631
9 1309 34439 7426
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 12406 6183 127 216
1 23451 12226 4 206
2 6598 2264 158 173
3 11297 1304 156 252
4 5053 527 10 140
5 11726 1537 142 82
6 17734 9024 16 256
7 7884 168 132 242
8 11358 2511 125 24
9 8211 3908 34 72
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 59 3 3422
1 27 1 11675
2 21 3 2495
3 137 1 0
4 27 1 432
5 132 1 1979
6 66 1 6830
7 78 1 2605
8 125 3 4485
9 61 4 2481
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1405 178 1 2
1 429 538 0 2
2 0 123 0 2
3 0 329 1 2
4 234 150 0 2
5 284 661 1 2
6 398 758 0 2
7 0 122 1 2
8 0 311 0 2
9 637 214 0 2
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 7 0 0 5 True
1 11 0 0 6 True
2 7 2 2 4 True
3 6 0 0 5 True
4 22 2 1 12 True
5 8 0 0 6 False
6 13 1 2 5 False
7 8 0 0 4 False
8 8 0 0 5 False
9 27 1 5 6 False ,
assists baronKills bountyLevel champLevel championName \
0 2 0 0 15 Fiora
1 8 0 0 14 Ornn
2 4 0 0 13 Yone
3 7 0 0 13 Pantheon
4 12 0 0 14 Annie
5 3 0 6 17 Tryndamere
6 14 0 0 14 Nunu
7 4 0 2 15 Kayle
8 8 0 0 12 Jhin
9 5 0 0 11 Senna
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 4994 4994 4994
1 335 6246 335
2 1262 6630 1262
3 1184 4034 1184
4 2256 3823 2256
5 8024 19702 8024
6 216 5149 216
7 6956 6956 6956
8 1796 2015 1796
9 1061 1061 1061
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 1 0 False True
1 7 1 2 False False
2 9 0 0 False False
3 4 1 0 False False
4 4 6 0 False False
5 3 0 0 False False
6 6 1 0 False False
7 5 0 0 False False
8 8 2 0 False False
9 7 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 12131 TOP 0
1 True 9581 JUNGLE 0
2 True 7840 MIDDLE 0
3 True 11115 BOTTOM 0
4 True 9919 UTILITY 0
5 True 16214 TOP 2
6 True 9573 JUNGLE 0
7 True 11587 MIDDLE 0
8 True 7988 BOTTOM 0
9 True 6836 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 2 3047 6673 3508 3074 1028 1055 3364
1 2 3158 7003 2031 3075 3067 1011 3364
2 2 1055 3006 2031 6673 1018 1038 3340
3 2 3142 7001 3158 3053 1055 0 3340
4 2 3020 3157 3853 6655 3916 2055 3364
5 0 1055 6672 3031 3006 3508 3035 3340
6 0 3152 2031 3742 3047 3076 0 3364
7 0 1054 3115 1082 3006 4633 3191 3340
8 0 1055 6671 3134 3009 1018 1037 3363
9 0 3864 6672 3009 3086 2015 0 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 3 8 3 2
1 1 3 2 1
2 0 1 0 1
3 3 10 5 1
4 2 7 4 1
5 2 14 8 2
6 0 2 0 1
7 3 10 5 2
8 0 1 0 1
9 1 2 2 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 557 5332 657
1 520 85609 8017
2 707 13584 2043
3 667 3791 474
4 667 54552 20246
5 971 0 0
6 497 55515 9430
7 659 71672 10940
8 569 7451 1867
9 527 99 99
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 3046 8 0 0
1 9841 147 0 0
2 5478 12 0 0
3 2810 0 0 0
4 2997 4 0 0
5 4970 20 0 0
6 11073 112 0 0
7 6448 4 0 0
8 5598 0 0 0
9 6167 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 126613
1 0 2 56820
2 0 3 68054
3 0 4 75063
4 0 5 3161
5 0 6 187538
6 0 7 22674
7 0 8 27572
8 0 9 50957
9 0 10 21245
physicalDamageDealtToChampions physicalDamageTaken role \
0 14537 14973 DUO
1 3947 19683 NONE
2 4852 14910 DUO
3 16490 14702 CARRY
4 692 7756 SUPPORT
5 22894 19118 DUO
6 1272 20190 NONE
7 3284 9749 DUO
8 6943 9536 CARRY
9 5248 3079 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 12 4 4 179
1 8 4 18 11 236
2 3 4 3 14 304
3 5 4 5 7 134
4 6 14 4 4 148
5 5 4 6 14 255
6 3 4 12 11 324
7 4 4 3 12 330
8 4 4 2 11 171
9 4 4 2 14 128
summonerName teamEarlySurrendered teamId teamPosition \
0 tyzen False 100 TOP
1 JayFTW False 100 JUNGLE
2 RUNWITHSCISS0RS False 100 MIDDLE
3 horses dont stop False 100 BOTTOM
4 Normie False 100 UTILITY
5 SussieAmogus False 200 TOP
6 JoNoGoSoHo False 200 JUNGLE
7 Rotome False 200 MIDDLE
8 Coolgum15 False 200 BOTTOM
9 Alece False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 7 1646 135360 18609
1 39 1646 151781 14056
2 13 1646 91410 7827
3 18 1646 96745 16965
4 33 1646 58258 21482
5 8 1646 203643 26609
6 24 1646 123424 11397
7 6 1646 104968 14567
8 11 1646 59228 8810
9 25 1646 22513 5617
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 19851 4505 192 107
1 30392 7782 38 754
2 21563 2244 132 76
3 18437 6314 155 36
4 10975 1999 38 103
5 26489 13025 209 83
6 32479 16281 17 372
7 17999 2838 177 238
8 15900 2435 105 96
9 10045 2735 26 95
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 135 1 3414
1 189 1 9352
2 316 1 9770
3 74 4 17890
4 78 1 544
5 62 1 16105
6 192 5 45234
7 192 4 5723
8 193 1 820
9 150 4 1167
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 3414 1832 1 7
1 2092 868 1 7
2 930 1174 1 7
3 0 924 0 7
4 544 222 1 7
5 3714 2401 4 4
6 694 1214 0 4
7 343 1801 2 4
8 0 765 1 4
9 269 798 0 4
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 18 1 1 8 False
1 20 1 1 3 False
2 16 0 1 9 False
3 14 1 4 5 False
4 62 7 8 23 False
5 15 0 1 9 True
6 14 1 2 3 True
7 8 1 0 5 True
8 23 2 2 10 True
9 30 0 3 19 True ,
assists baronKills bountyLevel champLevel championName \
0 6 0 0 14 Chogath
1 9 0 0 15 Shaco
2 8 0 0 15 Veigar
3 7 1 0 16 Samira
4 18 0 0 14 Rell
5 9 0 12 18 Darius
6 8 0 0 14 Evelynn
7 12 0 0 15 Katarina
8 8 0 3 15 Caitlyn
9 19 0 0 13 Senna
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 85 1435 85
1 0 18128 0
2 1622 5171 1622
3 6368 16835 6368
4 606 3498 606
5 12220 19656 12220
6 461 25509 461
7 4326 7236 4326
8 3733 18326 3733
9 515 3585 515
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 14 0 0 False False
1 6 2 2 False False
2 9 5 0 False False
3 6 0 0 False False
4 8 3 0 False False
5 3 1 0 False True
6 6 0 1 False False
7 5 0 1 False False
8 6 0 1 False False
9 10 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 7647 TOP 0
1 False 11304 JUNGLE 0
2 False 10142 MIDDLE 0
3 False 18191 BOTTOM 0
4 False 9711 UTILITY 0
5 False 21524 TOP 2
6 False 10753 JUNGLE 0
7 False 11259 MIDDLE 0
8 False 12325 BOTTOM 0
9 False 8361 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 2 1054 6656 3047 3105 3076 0 3340
1 2 3006 3508 6676 0 0 6671 3364
2 2 6656 4630 3157 1056 1052 3020 3364
3 2 3036 6673 3033 3006 6676 3072 3363
4 2 3860 3190 2055 3109 3075 3047 3364
5 0 3075 6631 3193 3111 3053 3742 3340
6 0 4636 2031 3020 3041 3100 0 3364
7 0 3157 0 3115 1082 4633 3020 3363
8 0 1055 6671 3006 3036 1038 1018 3340
9 0 3864 6672 3006 6676 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 0 0 0
1 2 9 4 2
2 1 3 2 1
3 4 15 7 2
4 1 3 2 1
5 4 28 12 4
6 1 4 2 1
7 1 3 2 1
8 3 8 3 3
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 281 30399 6824
1 613 32283 7254
2 365 98767 17520
3 595 11612 4191
4 600 17083 9439
5 1022 6570 1298
6 1037 107758 14088
7 1056 108929 15806
8 849 1818 1318
9 493 0 0
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 5010 0 1 0
1 8308 99 1 0
2 7488 9 1 0
3 9131 27 1 0
4 5533 0 1 0
5 15552 48 0 0
6 7100 120 0 0
7 8072 4 0 0
8 8735 31 0 0
9 8040 1 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 15908
1 0 2 74554
2 0 3 11134
3 0 4 183437
4 0 5 4509
5 0 6 224204
6 0 7 13043
7 0 8 7587
8 0 9 133941
9 0 10 21583
physicalDamageDealtToChampions physicalDamageTaken role \
0 1512 24357 SOLO
1 8452 18856 NONE
2 1698 14318 SOLO
3 39427 16643 CARRY
4 1152 17251 SUPPORT
5 45100 30427 NONE
6 544 19355 NONE
7 595 16346 SOLO
8 13155 9988 CARRY
9 8580 9236 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 12 3 4 63
1 4 14 18 11 168
2 4 12 5 4 205
3 4 7 4 4 315
4 5 3 4 4 261
5 6 4 7 6 254
6 4 4 16 11 169
7 5 4 5 14 170
8 3 4 4 7 329
9 5 4 2 14 128
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 Chorus Minimus False 100 TOP 51
1 l Charizard l False 100 JUNGLE 14
2 toóN False 100 MIDDLE 38
3 CoverYourButts False 100 BOTTOM 13
4 B00tySalads False 100 UTILITY 41
5 SussieAmogus False 200 TOP 55
6 Cheeky Lotus False 200 JUNGLE 12
7 Coolgum15 False 200 MIDDLE 0
8 Rotome False 200 BOTTOM 16
9 Alece False 200 UTILITY 23
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 2041 71968 8336
1 2041 115451 16731
2 2041 110187 19219
3 2041 203422 45341
4 2041 29547 10591
5 2041 246025 60222
6 2041 135576 15296
7 2041 117378 17246
8 2041 135760 14474
9 2041 22905 9531
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 34839 2832 98 351
1 27631 11186 20 511
2 25569 2562 150 132
3 28159 7388 230 109
4 26982 1966 40 72
5 46825 24296 200 485
6 26886 9528 30 238
7 25332 5154 143 0
8 18908 6826 157 69
9 17649 5692 11 98
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 433 3 25660
1 169 1 8614
2 326 1 286
3 242 4 8371
4 250 4 7954
5 135 1 15250
6 234 1 14774
7 221 1 861
8 156 3 0
9 306 5 1321
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 5471 0 10
1 1024 467 0 10
2 0 3762 0 10
3 1722 2385 3 10
4 0 4197 0 10
5 13824 845 6 3
6 664 431 0 3
7 844 914 4 3
8 0 184 0 3
9 951 372 0 3
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 2 0 0 2 False
1 19 2 2 3 False
2 27 5 1 9 False
3 20 0 1 7 False
4 78 4 7 31 False
5 26 1 1 12 True
6 15 0 3 1 True
7 19 1 2 9 True
8 16 0 2 8 True
9 57 0 3 31 True ,
assists baronKills bountyLevel champLevel championName \
0 2 0 7 18 Viego
1 8 1 0 14 Zac
2 1 0 1 16 Katarina
3 6 0 1 17 Ezreal
4 6 0 0 13 Seraphine
5 5 0 0 15 Garen
6 5 0 0 14 FiddleSticks
7 6 0 0 17 Yone
8 7 0 0 15 MissFortune
9 9 0 0 14 Bard
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 13827 36797 13827
1 0 8500 0
2 882 4335 882
3 2633 18157 2633
4 657 2207 657
5 998 9705 998
6 483 20864 483
7 3526 11801 3526
8 5336 17354 5336
9 1350 4390 1350
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 6 1 0 False True
1 6 2 1 False False
2 5 0 0 False False
3 2 0 0 False False
4 8 0 0 False False
5 7 0 0 False False
6 8 8 4 False False
7 5 0 0 False False
8 5 0 0 False False
9 2 4 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 21702 TOP 0
1 False 9632 JUNGLE 0
2 False 11375 MIDDLE 0
3 False 12379 BOTTOM 1
4 False 7789 UTILITY 0
5 False 9076 TOP 0
6 False 11092 JUNGLE 0
7 False 14544 MIDDLE 0
8 False 12307 BOTTOM 0
9 False 9426 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3044 6672 3006 3091 3153 3748 3340
1 0 3068 2031 3075 3067 1028 3047 3364
2 0 1082 3157 4633 3115 0 3020 3340
3 0 1055 6691 3035 3158 3508 3123 3340
4 0 3853 4005 3158 3011 1011 1052 3364
5 1 1054 6631 3047 3742 1011 0 3340
6 1 3152 3165 1052 1028 3020 3157 3330
7 1 1055 6333 3006 6673 3033 3031 3340
8 1 3031 1055 6672 3006 6676 3123 3340
9 1 3864 6672 3094 6677 3009 2055 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 5 21 7 2
1 0 0 0 0
2 1 4 2 1
3 0 1 0 1
4 0 1 0 1
5 1 2 2 1
6 2 5 2 1
7 2 9 5 2
8 2 6 3 1
9 2 5 3 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 695 18700 5916
1 933 103434 7086
2 739 100716 11665
3 626 17143 5747
4 548 22863 7021
5 1003 708 347
6 523 112099 13140
7 719 23399 4155
8 834 3551 486
9 1174 25236 5789
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 8675 21 0 0
1 3446 135 0 0
2 4904 0 0 0
3 4355 20 0 0
4 3694 0 0 0
5 5982 3 1 0
6 8113 140 1 0
7 9070 25 1 0
8 10881 20 1 0
9 6382 0 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 230042
1 0 2 20128
2 0 3 12062
3 0 4 155322
4 0 5 2098
5 0 6 92883
6 0 7 6956
7 0 8 159438
8 0 9 145028
9 0 10 24342
physicalDamageDealtToChampions physicalDamageTaken role \
0 31200 27321 NONE
1 340 25548 NONE
2 462 14914 SOLO
3 11511 7740 CARRY
4 539 9554 SUPPORT
5 10189 14947 SOLO
6 163 26540 NONE
7 15805 9434 SOLO
8 14675 9391 CARRY
9 6324 9103 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 5 4 8 14 254
1 3 4 18 11 169
2 2 4 2 14 170
3 3 4 4 7 329
4 4 4 2 14 128
5 5 4 5 12 123
6 16 11 3 4 225
7 4 14 2 4 259
8 2 4 6 7 211
9 3 4 4 14 165
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 SussieAmogus False 100 TOP 26
1 Cheeky Lotus False 100 JUNGLE 24
2 Coolgum15 False 100 MIDDLE 0
3 Rotome False 100 BOTTOM 0
4 Alece False 100 UTILITY 15
5 Goshdarnit False 200 TOP 31
6 Mannina False 200 JUNGLE 31
7 EnderMp4 False 200 MIDDLE 21
8 Noodull False 200 BOTTOM 4
9 Kaptain Cactus False 200 UTILITY 20
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 2077 279843 46794
1 2077 130576 9118
2 2077 118250 12366
3 2077 189707 19002
4 2077 25361 7960
5 2077 100975 12832
6 2077 133782 14232
7 2077 192443 24026
8 2077 166533 17268
9 2077 53283 14199
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 38650 16772 245 185
1 34338 31820 17 504
2 21754 3084 177 9
3 12881 2777 236 3
4 14236 2036 19 84
5 25862 1357 135 135
6 38019 17814 16 535
7 22798 6022 211 132
8 20812 7354 195 168
9 16114 5543 34 234
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 265 1 31100
1 210 3 7013
2 192 1 5471
3 52 1 17240
4 216 5 400
5 176 1 7383
6 238 1 14726
7 191 1 9605
8 220 2 17953
9 80 5 3704
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 9677 2653 6 4
1 1691 5343 0 4
2 238 1935 0 4
3 1742 785 1 4
4 400 987 0 4
5 2295 4932 0 7
6 928 3364 1 7
7 4065 4293 1 7
8 2106 539 2 7
9 2085 628 0 7
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 25 4 2 13 True
1 19 2 4 3 True
2 17 0 1 10 True
3 10 2 2 4 True
4 54 0 1 30 True
5 18 0 0 11 False
6 67 8 5 8 False
7 13 0 1 7 False
8 14 0 0 7 False
9 65 6 3 29 False ,
assists baronKills bountyLevel champLevel championName \
0 0 0 0 17 Trundle
1 5 0 0 16 Hecarim
2 6 0 0 15 Annie
3 4 0 0 17 Veigar
4 6 0 0 14 Lux
5 8 0 3 18 MonkeyKing
6 11 2 7 18 XinZhao
7 8 0 2 18 Ahri
8 7 0 3 18 Sivir
9 14 0 1 15 Rell
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 6684 21967 6684
1 0 19186 0
2 303 1661 303
3 2270 9767 2270
4 925 1638 925
5 4874 13558 4874
6 2748 38300 2748
7 5773 19972 5773
8 5068 18469 5068
9 1027 2027 1027
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 8 2 1 False False
1 5 7 1 False False
2 10 3 0 False False
3 4 2 0 False False
4 4 3 0 False False
5 4 1 0 False False
6 3 5 3 True False
7 2 2 0 False True
8 4 3 1 False False
9 3 7 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 15961 TOP 1
1 False 11382 JUNGLE 0
2 False 10388 MIDDLE 0
3 False 14100 BOTTOM 0
4 False 9979 UTILITY 0
5 False 13500 TOP 1
6 False 16321 JUNGLE 0
7 False 18490 MIDDLE 0
8 False 14645 BOTTOM 0
9 False 9714 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 3077 3053 3075 3042 3078 3047 3340
1 1 3075 6664 2055 3047 3742 0 3364
2 1 3157 1026 3020 1056 3916 6655 3340
3 1 3020 6656 3157 4629 3135 0 3363
4 1 3853 6655 3020 3165 1058 0 3364
5 1 1055 6632 3047 3074 3053 3123 3340
6 1 6692 3026 3111 3153 3053 3123 3364
7 1 4629 6656 3089 3041 4628 3158 3364
8 1 6694 2031 6691 3134 3042 3158 3363
9 1 2055 3860 3190 3158 3065 3801 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 6 4 1
1 0 1 0 1
2 0 2 0 1
3 1 4 3 1
4 1 3 2 1
5 1 4 3 1
6 2 10 7 2
7 3 11 7 1
8 2 5 3 1
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 911 4062 3592
1 923 59607 2712
2 300 93467 12949
3 886 217321 15271
4 946 36516 9924
5 886 17755 1989
6 595 23811 2148
7 1286 155341 19429
8 593 0 0
9 436 10629 5402
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 6326 39 1 0
1 11233 175 1 1
2 4779 0 1 0
3 6913 4 1 0
4 3401 0 1 0
5 10671 0 0 0
6 8916 153 0 0
7 13205 40 0 0
8 7043 25 0 1
9 7331 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 218967
1 0 2 145549
2 1 3 10827
3 0 4 16296
4 0 5 2902
5 0 6 128497
6 0 7 202281
7 1 8 21682
8 0 9 225052
9 1 10 5054
physicalDamageDealtToChampions physicalDamageTaken role \
0 15189 29276 SOLO
1 6608 24077 NONE
2 665 11424 SOLO
3 567 11877 CARRY
4 936 5947 SUPPORT
5 10723 16460 SOLO
6 20015 23727 NONE
7 1144 8342 SOLO
8 11332 4646 CARRY
9 786 6599 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 8 14 254
1 5 6 18 11 170
2 4 4 4 14 169
3 3 4 4 7 329
4 2 4 2 14 127
5 6 4 1 12 161
6 15 11 5 4 107
7 7 14 5 4 88
8 2 4 5 7 209
9 5 14 4 4 179
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 SussieAmogus False 100 TOP 23
1 Coolgum15 False 100 JUNGLE 20
2 Cheeky Lotus False 100 MIDDLE 21
3 Rotome False 100 BOTTOM 57
4 Alece False 100 UTILITY 35
5 QQzi False 200 TOP 11
6 CeeLi False 200 JUNGLE 18
7 midigi2 False 200 MIDDLE 33
8 Yuldasha False 200 BOTTOM 3
9 Garlic Fingers False 200 UTILITY 21
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 2277 247210 20836
1 2277 222884 9967
2 2277 108328 14515
3 2277 235297 15838
4 2277 40083 11526
5 2277 167012 12713
6 2277 238181 22801
7 2277 249748 25040
8 2277 226946 11818
9 2277 21121 6741
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 37902 13885 244 361
1 37385 14363 58 302
2 17669 216 184 204
3 19005 4873 289 153
4 9438 102 37 213
5 28753 7599 216 36
6 33482 22602 78 509
7 22595 9599 247 161
8 11887 3536 246 81
9 14490 4708 39 37
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 299 1 24181
1 149 1 17728
2 304 1 4033
3 131 2 1680
4 108 1 664
5 174 1 20760
6 76 1 12088
7 90 1 72724
8 100 3 1894
9 49 5 5437
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 2054 2298 3 9
1 646 2075 0 9
2 900 1465 0 9
3 0 214 1 9
4 664 89 0 9
5 0 1621 2 5
6 638 838 3 5
7 4467 1048 2 5
8 486 197 2 5
9 552 559 0 5
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 36 2 0 14 False
1 26 8 5 10 False
2 26 4 4 14 False
3 21 3 2 11 False
4 80 3 9 37 False
5 29 1 2 11 True
6 41 6 9 8 True
7 33 3 6 8 True
8 31 3 0 10 True
9 89 9 14 35 True ,
assists baronKills bountyLevel champLevel championName \
0 1 0 1 10 Fiora
1 3 0 0 9 XinZhao
2 1 0 0 11 Lucian
3 1 0 0 8 Xayah
4 2 0 0 7 Leona
5 0 0 0 12 Trundle
6 7 0 1 10 Hecarim
7 1 0 1 11 Yone
8 5 0 7 10 Veigar
9 7 0 4 8 Ahri
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 308 308 308
1 0 2001 0
2 0 0 0
3 0 0 0
4 0 0 0
5 8860 19602 8860
6 0 11023 0
7 1110 1110 1110
8 0 2124 0
9 0 963 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 6 2 0 False False
1 4 1 0 False True
2 2 3 0 False False
3 5 3 0 False False
4 6 0 0 False False
5 3 0 0 False False
6 0 2 2 False False
7 1 0 0 False False
8 2 0 0 False False
9 1 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 4786 TOP 0
1 True 5187 JUNGLE 0
2 True 5343 MIDDLE 0
3 True 4981 BOTTOM 0
4 True 3624 UTILITY 0
5 True 8360 TOP 1
6 True 6106 JUNGLE 0
7 True 4888 MIDDLE 0
8 True 7116 BOTTOM 0
9 True 5355 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 1055 3057 3123 1018 0 3133 3340
1 1 3115 2031 3047 1052 0 0 3364
2 1 1055 1037 3111 6670 2055 1083 3340
3 1 1055 3006 0 0 0 6671 3340
4 1 2003 1001 1029 3190 3855 0 3340
5 0 1055 3004 3078 1083 3047 0 3340
6 0 3047 6664 2031 3066 0 0 3340
7 0 1055 6670 3006 1053 0 0 3340
8 0 1056 6656 2055 3020 0 0 3340
9 0 3851 6656 2422 0 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 1 0 1
1 0 2 0 1
2 0 1 0 1
3 1 2 2 1
4 0 1 0 1
5 2 7 4 1
6 0 1 0 1
7 0 2 0 1
8 1 8 7 2
9 1 5 4 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 279 287 177
1 435 9431 593
2 664 1398 498
3 463 426 426
4 242 3804 1799
5 495 516 516
6 0 19971 780
7 814 5267 841
8 251 37577 7381
9 413 5876 2995
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 387 0 0 0
1 3458 68 0 0
2 737 0 0 0
3 4900 0 0 0
4 4722 0 0 0
5 554 8 0 0
6 2922 120 0 0
7 583 0 0 0
8 892 0 0 0
9 781 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 34805
1 0 2 37322
2 0 3 41970
3 0 4 31279
4 0 5 4362
5 0 6 69358
6 0 7 71985
7 0 8 33915
8 0 9 8090
9 0 10 1399
physicalDamageDealtToChampions physicalDamageTaken role \
0 3949 8319 SUPPORT
1 3261 9714 SUPPORT
2 5139 3083 DUO
3 4687 2238 SUPPORT
4 1405 2641 SUPPORT
5 7464 9034 DUO
6 2422 11520 SUPPORT
7 3168 6984 SUPPORT
8 879 3924 SUPPORT
9 801 3263 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 1 12 257
1 3 4 8 11 196
2 1 4 1 12 382
3 2 4 2 7 116
4 3 14 2 4 245
5 2 4 4 14 254
6 2 6 10 11 170
7 2 4 2 14 169
8 2 4 3 7 329
9 3 4 2 14 127
summonerName teamEarlySurrendered teamId teamPosition \
0 ladies dm me plz False 100 TOP
1 Snowflakes75 False 100 JUNGLE
2 sanity57 False 100 MIDDLE
3 yovoy6602 False 100 BOTTOM
4 Akame ga Pills False 100 UTILITY
5 SussieAmogus False 200 TOP
6 Coolgum15 False 200 JUNGLE
7 Cheeky Lotus False 200 MIDDLE
8 Rotome False 200 BOTTOM
9 Alece False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 2 937 37350 4784
1 5 937 51412 3936
2 0 937 43368 5638
3 8 937 33306 5114
4 27 937 11946 3523
5 7 937 75720 8438
6 7 937 97551 3487
7 0 937 40348 5174
8 20 937 45667 8261
9 18 937 10831 5559
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 9164 1416 88 42
1 13514 7364 6 256
2 4874 499 139 4
3 7504 643 97 8
4 8816 153 20 40
5 10303 4177 113 133
6 14443 10124 3 139
7 7592 2263 83 43
8 5064 1523 98 28
9 4115 212 5 40
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 122 2 2257
1 81 1 4658
2 62 1 0
3 72 2 1600
4 103 2 3778
5 42 1 5845
6 0 1 5594
7 32 1 1165
8 24 2 0
9 12 1 3555
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 657 457 0 3
1 82 341 0 3
2 0 1053 0 3
3 0 365 0 3
4 318 1452 0 3
5 457 714 3 0
6 284 0 0 0
7 1165 25 0 0
8 0 248 0 0
9 1762 70 0 0
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 4 2 1 3 False
1 6 1 1 1 False
2 13 4 2 8 False
3 12 3 2 7 False
4 15 0 3 6 False
5 9 0 1 5 True
6 11 2 1 5 True
7 11 0 4 5 True
8 5 2 0 4 True
9 14 0 2 9 True ,
assists baronKills bountyLevel champLevel championName \
0 3 0 0 16 Veigar
1 5 0 1 15 Lillia
2 2 0 3 17 Kayle
3 12 0 0 15 Senna
4 13 0 0 14 Nautilus
5 4 0 0 17 Jax
6 12 2 1 16 Nocturne
7 8 0 0 18 Viktor
8 4 0 4 16 Ezreal
9 14 0 0 15 Alistar
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 1988 4840 1988
1 209 13103 209
2 769 2522 769
3 1733 1733 1733
4 435 435 435
5 8728 26257 8728
6 797 33467 797
7 8939 11590 8939
8 6523 18012 6523
9 1829 2670 1829
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 6 0 0 False False
1 7 2 0 False False
2 3 0 0 False False
3 5 1 0 False False
4 5 1 0 False False
5 6 0 0 False False
6 5 3 4 True False
7 3 0 0 False True
8 2 0 0 False False
9 6 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False True False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 11512 TOP 0
1 False 11575 JUNGLE 0
2 False 13530 MIDDLE 0
3 False 12212 BOTTOM 0
4 False 8004 UTILITY 0
5 False 12744 TOP 1
6 False 11491 JUNGLE 1
7 False 16284 MIDDLE 1
8 False 12257 BOTTOM 1
9 False 8624 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 4 3042 3006 6672 6676 1018 1036 3340
1 4 4629 2421 0 3158 6653 4637 3364
2 4 4629 3115 3041 3006 4633 3191 3363
3 4 3009 6672 3124 1037 3094 3134 3363
4 4 3860 3047 3068 3075 2055 0 3364
5 0 1054 3078 3111 3153 3074 1033 3340
6 0 3181 2031 3814 6691 1036 3158 3364
7 0 3158 3157 3135 6655 3100 3041 3363
8 0 3042 3508 3158 6691 3077 1036 3340
9 0 3860 3190 3050 2055 3801 3117 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 4 2 1
1 2 6 2 1
2 2 6 3 2
3 1 4 3 1
4 0 2 0 1
5 1 6 3 2
6 0 2 0 1
7 2 13 6 3
8 1 4 4 1
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 708 64160 8096
1 586 127987 14882
2 845 134225 11604
3 1163 3223 597
4 1168 11024 5608
5 529 27765 2398
6 842 8365 730
7 720 201253 36480
8 509 9328 4719
9 594 15344 6663
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 8220 10 1 0
1 15431 143 1 0
2 12842 20 1 0
3 5993 9 1 0
4 11881 0 1 0
5 9163 4 0 0
6 9245 178 0 0
7 10363 18 0 0
8 4256 22 0 0
9 10968 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 66321
1 0 2 24006
2 0 3 46160
3 0 4 117954
4 0 5 6604
5 0 6 118337
6 0 7 165299
7 0 8 13045
8 0 9 165722
9 0 10 8699
physicalDamageDealtToChampions physicalDamageTaken role \
0 4986 10094 SOLO
1 851 24310 NONE
2 2605 7715 SOLO
3 16687 11582 CARRY
4 1485 8836 SUPPORT
5 8936 12917 SOLO
6 11720 23738 NONE
7 801 7939 SOLO
8 10212 8151 CARRY
9 1471 12308 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 5 14 254
1 17 11 5 4 252
2 3 4 1 12 329
3 5 7 5 4 162
4 7 14 2 4 159
5 5 4 4 12 86
6 18 11 2 4 164
7 5 12 3 4 223
8 4 4 4 7 56
9 6 3 7 4 32
summonerName teamEarlySurrendered teamId teamPosition \
0 SussieAmogus False 100 TOP
1 Carrot Payment False 100 JUNGLE
2 Rotome False 100 MIDDLE
3 History is Love False 100 BOTTOM
4 Thick2BThighs False 100 UTILITY
5 BigChillenOrca False 200 TOP
6 SamDota False 200 JUNGLE
7 skullcrampjr False 200 MIDDLE
8 Benderisalright False 200 BOTTOM
9 engAgent False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 22 1961 141542 14207
1 28 1961 198569 20776
2 9 1961 188048 15067
3 47 1961 129311 18590
4 44 1961 23966 7941
5 9 1961 153348 11334
6 133 1961 184135 13079
7 24 1961 216768 37481
8 0 1961 184618 15010
9 45 1961 28219 8134
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 18635 3549 178 146
1 40060 12466 67 552
2 20649 5178 243 327
3 17726 10885 213 179
4 20743 0 26 169
5 23981 2595 187 57
6 34594 16458 16 382
7 19977 4576 228 318
8 12914 1210 203 29
9 26761 9630 36 100
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 197 1 11060
1 249 1 46576
2 118 4 7663
3 164 4 8134
4 146 0 6337
5 165 1 7245
6 185 1 10470
7 134 1 2469
8 46 2 9567
9 130 5 4175
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1123 320 1 11
1 5041 318 0 11
2 857 92 0 11
3 1305 150 1 11
4 848 25 0 11
5 0 1900 3 2
6 628 1610 1 2
7 199 1673 1 2
8 78 507 2 2
9 0 3484 2 2
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 17 0 1 11 False
1 18 2 4 3 False
2 13 1 1 4 False
3 19 1 1 12 False
4 23 2 1 14 False
5 12 0 0 7 True
6 32 3 6 3 True
7 17 0 1 10 True
8 11 0 2 5 True
9 61 4 6 22 True ,
assists baronKills bountyLevel champLevel championName \
0 0 0 2 12 Chogath
1 6 0 4 10 Hecarim
2 3 0 0 11 Katarina
3 8 0 0 11 Samira
4 15 0 0 10 Leona
5 3 0 0 11 Nasus
6 4 0 2 9 Shaco
7 3 0 2 11 Pantheon
8 0 0 0 7 MissFortune
9 3 0 0 7 Janna
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2130 4708 2130
1 648 19199 648
2 2527 2527 2527
3 8131 11109 8131
4 2426 3170 2426
5 0 0 0
6 0 946 0
7 0 596 0
8 664 664 664
9 89 89 89
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 0 1 0 False False
1 1 1 1 False False
2 3 0 0 False False
3 5 0 0 False False
4 2 2 0 False False
5 3 0 0 False False
6 6 0 1 False False
7 3 1 0 False True
8 13 1 0 False False
9 7 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 6409 TOP 0
1 False 6664 JUNGLE 0
2 False 8124 MIDDLE 0
3 False 11028 BOTTOM 0
4 False 6901 UTILITY 1
5 False 5932 TOP 0
6 False 5905 JUNGLE 0
7 False 6927 MIDDLE 0
8 False 5257 BOTTOM 0
9 False 3842 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1056 2422 1029 6656 0 0 3340
1 0 6632 2031 3047 2055 3076 1036 3364
2 0 1055 3153 3020 4633 0 0 3340
3 0 6676 6673 1038 3006 1053 0 3340
4 0 3190 3855 3117 3024 3067 0 3364
5 1 1055 3508 3133 0 0 0 3340
6 1 3006 2031 3134 1037 1018 0 3340
7 1 2033 3111 6692 3133 1036 0 3340
8 1 3006 6670 2031 1083 1055 1037 3340
9 1 3851 2055 4642 3067 1001 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 2 2 1
1 1 4 4 1
2 1 7 7 2
3 2 16 10 2
4 1 3 3 1
5 0 1 0 1
6 1 3 2 2
7 2 4 2 1
8 1 3 2 1
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 0 48997 3984
1 398 6701 251
2 717 36883 6090
3 483 12400 3986
4 944 4871 2179
5 624 4853 943
6 297 19465 2253
7 407 756 565
8 159 2976 538
9 394 4751 1711
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 740 8 0 0
1 1973 77 0 0
2 1020 4 0 0
3 2163 4 0 0
4 914 0 0 0
5 5787 0 1 0
6 2331 46 1 0
7 2992 0 1 0
8 3678 0 1 0
9 2084 0 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 14215
1 0 2 49353
2 0 3 19301
3 0 4 81154
4 0 5 8535
5 0 6 49022
6 0 7 18310
7 0 8 48876
8 0 9 23173
9 0 10 1069
physicalDamageDealtToChampions physicalDamageTaken role \
0 1196 6689 SUPPORT
1 2819 11779 SUPPORT
2 4110 8008 SUPPORT
3 18554 12049 SUPPORT
4 2686 5697 SUPPORT
5 4227 5071 DUO
6 1673 10869 SUPPORT
7 9472 5233 DUO
8 6422 10758 SUPPORT
9 396 7591 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 1 4 1 12 374
1 8 11 3 6 85
2 2 12 3 14 446
3 3 4 4 7 32
4 4 14 1 4 251
5 2 4 2 12 254
6 3 14 10 11 178
7 2 4 2 12 329
8 3 4 3 7 29
9 2 14 2 4 30
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 Lovecd False 100 TOP 37
1 Praise Him False 100 JUNGLE 7
2 Mèrçy False 100 MIDDLE 0
3 Day Of Rope False 100 BOTTOM 3
4 starcake False 100 UTILITY 31
5 SussieAmogus False 200 TOP 6
6 DarkZexi False 200 JUNGLE 10
7 Rotome False 200 MIDDLE 16
8 Kids Dad False 200 BOTTOM 4
9 Dads Kid False 200 UTILITY 14
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1092 79263 6709
1 1092 68076 3227
2 1092 56726 10553
3 1092 94594 22971
4 1092 19360 5202
5 1092 56260 5171
6 1092 41853 4278
7 1092 49633 10037
8 1092 26150 6961
9 1092 6081 2367
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 7429 3700 123 469
1 13798 7859 7 142
2 9029 1295 97 34
3 14778 3545 129 44
4 8612 349 24 59
5 12205 1359 120 49
6 13764 4090 8 292
7 8378 1762 98 30
8 15042 1365 52 97
9 9811 1547 3 67
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 0 1 16050
1 14 1 12020
2 76 1 542
3 78 2 1040
4 30 2 5954
5 92 1 2385
6 91 1 4077
7 64 1 0
8 177 2 0
9 125 4 260
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1528 0 1 0
1 156 46 1 0
2 352 0 1 0
3 430 565 5 0
4 336 2000 0 0
5 0 1345 0 8
6 351 563 0 8
7 0 152 0 8
8 0 606 0 8
9 260 136 0 8
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 10 1 0 5 True
1 10 3 3 2 True
2 10 1 2 4 True
3 8 0 0 5 True
4 10 2 0 6 True
5 8 0 0 6 False
6 11 0 2 5 False
7 10 1 0 4 False
8 6 1 1 4 False
9 8 2 1 5 False ,
assists baronKills bountyLevel champLevel championName \
0 12 0 4 18 Kayle
1 19 1 3 18 FiddleSticks
2 10 0 3 18 Veigar
3 10 0 4 18 Jhin
4 27 0 0 17 Bard
5 5 0 0 17 Renekton
6 5 0 0 15 Khazix
7 4 0 0 17 Azir
8 5 0 0 16 Samira
9 13 0 0 15 Alistar
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 13582 28189 13582
1 835 11720 835
2 2010 10009 2010
3 3289 16599 3289
4 656 3934 656
5 5831 21089 5831
6 0 23448 0
7 6132 9381 6132
8 7931 19317 7931
9 944 1832 944
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 2 0 0 False False
1 7 0 0 False False
2 2 2 0 False False
3 8 1 0 True False
4 9 12 1 False True
5 7 1 0 False False
6 10 2 3 False False
7 8 6 0 False False
8 9 2 1 False False
9 10 8 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False True False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 17293 TOP 1
1 False 14503 JUNGLE 0
2 False 16724 MIDDLE 0
3 False 16541 BOTTOM 0
4 False 11340 UTILITY 0
5 False 12795 TOP 0
6 False 12295 JUNGLE 1
7 False 13453 MIDDLE 0
8 False 19379 BOTTOM 1
9 False 9404 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 2 3040 3089 3006 3115 4633 0 3340
1 2 6653 4637 3020 3157 3108 3067 3330
2 2 3135 6656 3157 4629 3020 1031 3363
3 2 3031 6671 6676 3033 1036 3009 3340
4 2 0 3190 3853 3158 3110 3102 3364
5 1 6631 3026 3111 3053 3211 1036 3340
6 1 3142 6676 3158 6691 3134 0 3364
7 1 3006 3115 6653 4637 3916 0 3363
8 1 3139 6673 3006 3072 3036 6676 3363
9 1 3860 2065 3117 3050 3067 3801 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 8 4 2
1 3 10 3 2
2 3 11 6 3
3 3 12 4 2
4 0 3 0 1
5 0 1 0 1
6 1 6 2 1
7 0 3 0 1
8 4 17 6 2
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 1039 199786 20987
1 482 135040 23186
2 1444 205975 28294
3 388 11428 4520
4 375 34779 20095
5 716 5899 1192
6 961 10304 1498
7 773 188476 22543
8 445 19375 5455
9 422 12878 4651
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 6238 23 0 0
1 10591 118 0 0
2 6846 26 0 0
3 7500 8 0 0
4 7574 4 0 0
5 24303 28 1 0
6 22460 161 1 0
7 13925 24 1 0
8 18599 15 1 0
9 21015 0 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 55373
1 0 2 8020
2 0 3 15722
3 0 4 191899
4 0 5 7832
5 0 6 181767
6 0 7 156126
7 0 8 13514
8 0 9 205709
9 0 10 5793
physicalDamageDealtToChampions physicalDamageTaken role \
0 4861 20467 SOLO
1 830 23672 NONE
2 786 14694 SOLO
3 25089 17851 CARRY
4 5056 22898 SUPPORT
5 14202 18110 SOLO
6 15211 22791 NONE
7 709 10911 SOLO
8 38846 17453 NONE
9 691 14886 SOLO
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 5 4 5 12 254
1 6 4 24 11 178
2 3 4 3 12 328
3 6 7 6 4 237
4 9 14 6 4 341
5 2 12 3 4 302
6 18 11 6 4 316
7 4 4 2 12 135
8 6 7 6 4 335
9 4 14 7 4 393
summonerName teamEarlySurrendered teamId teamPosition \
0 SussieAmogus False 100 TOP
1 DarkZexi False 100 JUNGLE
2 Rotome False 100 MIDDLE
3 NoxaVortem False 100 BOTTOM
4 Natsuki Naoko False 100 UTILITY
5 Altazi False 200 TOP
6 aºk False 200 JUNGLE
7 Last 420 Breath False 200 MIDDLE
8 crying ur pants False 200 BOTTOM
9 aurska False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 9 2309 281503 27551
1 66 2309 158073 25964
2 46 2309 223733 29315
3 41 2309 206015 29743
4 80 2309 44809 27168
5 27 2309 205826 15394
6 8 2309 175674 17778
7 15 2309 205886 23252
8 5 2309 226567 45274
9 27 2309 26175 6223
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 26909 21721 262 313
1 34657 13170 32 805
2 22436 5892 247 182
3 25654 9303 205 156
4 31601 10977 19 613
5 43008 15403 237 164
6 46253 22941 13 166
7 25718 5966 266 163
8 37761 11329 253 32
9 37749 15289 43 56
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 70 5 26343
1 239 1 15013
2 107 1 2035
3 244 3 2687
4 301 5 2197
5 271 1 18160
6 365 1 9243
7 302 1 3895
8 292 2 1482
9 271 5 7502
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1702 204 4 8
1 1947 393 0 8
2 233 895 1 8
3 132 302 1 8
4 2017 1127 0 8
5 0 594 4 6
6 1069 1001 0 6
7 0 881 2 6
8 972 1708 2 6
9 880 1847 0 6
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 24 0 5 13 True
1 60 0 4 0 True
2 39 2 2 10 True
3 25 2 5 12 True
4 108 12 12 45 True
5 40 2 3 13 False
6 34 3 7 8 False
7 60 6 6 19 False
8 42 2 4 14 False
9 66 8 6 30 False ,
assists baronKills bountyLevel champLevel championName \
0 3 0 0 15 Sett
1 10 0 0 11 Shaco
2 8 0 1 14 Veigar
3 8 0 1 13 Ashe
4 8 0 1 11 Thresh
5 7 0 0 15 Darius
6 15 1 0 15 Amumu
7 10 0 0 14 Azir
8 7 0 0 15 Caitlyn
9 21 0 3 13 Nami
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 11466 22257 11466
1 39 1597 39
2 4316 4316 4316
3 1354 7824 1354
4 1201 1252 1201
5 817 3764 817
6 348 18977 348
7 6353 7502 6353
8 11866 28533 11866
9 1000 2146 1000
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 6 0 0 False False
1 10 0 1 False False
2 6 0 0 False False
3 6 3 1 False False
4 8 8 0 False False
5 10 2 0 True False
6 6 0 1 False True
7 7 3 0 False False
8 4 3 1 False False
9 4 3 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 12983 TOP 1
1 False 7832 JUNGLE 0
2 False 13424 MIDDLE 0
3 False 9051 BOTTOM 0
4 False 6671 UTILITY 0
5 False 10957 TOP 0
6 False 10169 JUNGLE 0
7 False 10372 MIDDLE 1
8 False 17648 BOTTOM 0
9 False 8879 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 1055 6693 3153 3006 6676 1038 3364
1 1 3134 3057 3006 6656 1018 0 3340
2 1 3020 6656 3157 1056 4629 4630 3340
3 1 1055 6672 3006 3085 1053 0 3340
4 1 3857 3190 2055 3111 3024 0 3364
5 1 6631 1055 3047 3053 3076 0 3340
6 1 3068 3047 3076 4637 1028 0 3340
7 1 3020 3191 6653 1056 1056 3115 3340
8 1 3031 6672 3006 3094 3036 1018 3363
9 1 3853 6616 1004 4005 3158 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 11 10 2
1 0 4 0 1
2 2 10 3 1
3 1 5 2 1
4 0 1 0 1
5 1 5 2 2
6 1 4 3 2
7 1 5 2 1
8 2 19 14 2
9 1 3 3 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 1002 315 315
1 495 35631 11393
2 507 108917 26302
3 570 1833 1633
4 575 8686 5245
5 286 1706 458
6 477 95062 11569
7 576 81266 13982
8 910 5892 3022
9 931 12446 8555
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 5893 24 1 0
1 12225 64 1 1
2 8908 4 1 0
3 6048 17 1 0
4 6615 0 1 0
5 9044 4 0 0
6 12225 100 0 0
7 10014 4 0 0
8 7747 24 0 0
9 7822 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 111594
1 0 2 18723
2 0 3 10433
3 0 4 64412
4 0 5 5203
5 0 6 100459
6 0 7 17665
7 0 8 14890
8 0 9 198955
9 0 10 3025
physicalDamageDealtToChampions physicalDamageTaken role \
0 16137 18000 SOLO
1 2310 13931 NONE
2 907 11431 SOLO
3 11649 9503 CARRY
4 558 13506 SUPPORT
5 10765 18017 SOLO
6 1808 19028 NONE
7 1887 9072 SOLO
8 35629 9864 CARRY
9 460 3942 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 4 14 254
1 4 4 17 11 178
2 5 4 3 12 328
3 5 7 3 4 181
4 4 4 5 14 420
5 6 6 3 4 264
6 5 4 16 11 101
7 3 4 5 21 312
8 4 4 4 1 273
9 1 14 3 4 190
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 SussieAmogus False 100 TOP 22
1 DarkZexi False 100 JUNGLE 43
2 Rotome False 100 MIDDLE 55
3 CurryRiceBowl False 100 BOTTOM 48
4 Ag4029 False 100 UTILITY 34
5 splitsacks False 200 TOP 20
6 Sebpoku False 200 JUNGLE 52
7 Mericai False 200 MIDDLE 10
8 Clever Tomatoe False 200 BOTTOM 23
9 Tiny Cena False 200 UTILITY 28
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1697 123071 19252
1 1697 60630 14327
2 1697 125855 27209
3 1697 69775 14334
4 1697 18566 6625
5 1697 103511 12569
6 1697 129847 15806
7 1697 106168 16066
8 1697 220930 41952
9 1697 16002 9333
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 26115 4865 127 129
1 27426 4982 13 519
2 22530 4108 169 151
3 16324 2419 100 564
4 21257 302 31 81
5 30442 5489 146 120
6 33004 11182 34 192
7 19641 2208 140 115
8 18201 2574 212 100
9 11790 12075 7 141
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 229 1 11161
1 264 1 6276
2 221 1 6505
3 190 4 3529
4 218 1 4676
5 258 1 1345
6 120 5 17120
7 241 1 10010
8 93 1 16081
9 117 5 530
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 2800 2221 5 8
1 624 1269 0 8
2 0 2190 2 8
3 1052 772 0 8
4 822 1134 0 8
5 1345 3380 0 6
6 2428 1749 0 6
7 196 553 1 6
8 3300 589 6 6
9 317 26 0 6
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 15 0 1 8 False
1 23 0 6 9 False
2 14 1 2 7 False
3 27 3 2 9 False
4 46 9 7 19 False
5 18 2 2 11 True
6 14 0 1 7 True
7 21 4 2 12 True
8 25 3 2 11 True
9 55 3 6 22 True ,
assists baronKills bountyLevel champLevel championName \
0 9 0 2 17 Kayle
1 14 1 1 15 Rammus
2 6 0 0 18 Talon
3 13 0 2 16 Twitch
4 19 0 1 14 Thresh
5 5 0 0 16 Chogath
6 6 0 0 16 XinZhao
7 5 0 0 17 Cassiopeia
8 6 0 0 14 Sivir
9 8 0 0 13 Janna
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 5609 9193 5609
1 307 11389 307
2 2352 4094 2352
3 9521 24560 9521
4 1677 5293 1677
5 4317 5505 4317
6 0 8987 0
7 0 10250 0
8 1011 4357 1011
9 85 2264 85
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 3 4 0 False False
1 3 2 3 False False
2 8 3 0 False False
3 4 0 0 False True
4 5 5 0 True False
5 6 1 0 False False
6 10 1 0 False False
7 7 3 1 False False
8 10 2 1 False False
9 13 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 13121 TOP 0
1 False 10915 JUNGLE 0
2 False 14901 MIDDLE 0
3 False 15907 BOTTOM 1
4 False 9368 UTILITY 0
5 False 13048 TOP 0
6 False 11214 JUNGLE 0
7 False 14692 MIDDLE 0
8 False 11414 BOTTOM 0
9 False 6720 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1056 3067 4633 3006 3115 3108 3363
1 0 2031 6664 3075 1011 1057 3047 3364
2 0 3158 3142 3042 6693 6695 3035 3364
3 0 3031 6672 3006 3085 3072 0 3340
4 0 3857 2065 3158 2055 3050 3801 3364
5 1 3068 3742 3111 3110 3076 1056 3340
6 1 6692 3053 3115 0 3047 0 3364
7 1 6653 3157 3040 3116 3916 3108 3363
8 1 3006 6671 2055 3031 0 3046 3363
9 1 6617 3158 3853 6616 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 6 3 1
1 1 4 3 1
2 3 14 4 2
3 3 19 14 2
4 0 3 0 1
5 2 7 2 1
6 0 4 0 1
7 3 11 6 1
8 0 1 0 1
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 835 121751 15269
1 705 96764 10295
2 564 53 53
3 1353 43 43
4 1146 18523 7092
5 645 100352 18236
6 661 24773 2313
7 562 108989 24175
8 591 369 369
9 422 13662 3210
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 8472 20 0 0
1 10962 135 0 0
2 13471 24 0 0
3 8649 12 0 0
4 8460 0 0 0
5 16931 5 1 0
6 9362 135 1 0
7 647 12 1 0
8 4004 26 1 0
9 4540 0 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 38285
1 0 2 27663
2 0 3 186574
3 0 4 155024
4 0 5 7096
5 0 6 30374
6 0 7 141255
7 0 8 12295
8 0 9 176541
9 0 10 2331
physicalDamageDealtToChampions physicalDamageTaken role \
0 3707 5139 DUO
1 2827 14894 NONE
2 34116 15300 DUO
3 38364 11520 CARRY
4 865 9353 SUPPORT
5 3054 20771 SOLO
6 15956 28556 NONE
7 572 25539 SOLO
8 11717 20608 CARRY
9 474 17295 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 3 12 327
1 7 6 21 11 253
2 5 14 5 4 341
3 4 7 5 4 336
4 9 14 5 4 324
5 4 4 3 12 411
6 14 11 5 4 308
7 5 21 4 4 331
8 6 7 3 4 471
9 1 14 5 4 168
summonerName teamEarlySurrendered teamId teamPosition \
0 Rotome False 100 TOP
1 SussieAmogus False 100 JUNGLE
2 Sunset Flow False 100 MIDDLE
3 TheDarkLibrarian False 100 BOTTOM
4 Rakan Oppa False 100 UTILITY
5 i will crush you False 200 TOP
6 Nayoon False 200 JUNGLE
7 JordanMV False 200 MIDDLE
8 Posiedon520904 False 200 BOTTOM
9 Lost Hero False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 8 2074 163214 19061
1 61 2074 134460 14286
2 6 2074 188719 35113
3 7 2074 173381 45564
4 37 2074 31679 9350
5 108 2074 161000 25835
6 25 2074 175959 19591
7 31 2074 121585 24838
8 0 2074 176910 12086
9 25 2074 16223 3914
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 15187 6589 205 247
1 26299 9809 23 775
2 29559 3866 189 213
3 21302 4800 169 86
4 20061 2155 33 112
5 40636 8461 204 856
6 39983 16757 67 655
7 28489 7234 178 276
8 26878 6288 222 1
9 23013 4667 10 118
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 101 5 3177
1 91 5 10032
2 364 1 2091
3 182 3 18314
4 183 5 6060
5 253 1 30273
6 341 1 9931
7 271 1 300
8 284 3 0
9 288 5 230
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 84 1575 2 2
1 1164 442 0 2
2 943 787 1 2
3 7156 1133 2 2
4 1392 2247 2 2
5 4544 2933 2 8
6 1321 2063 0 8
7 90 2302 0 8
8 0 2264 0 8
9 230 1177 0 8
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 38 5 4 11 True
1 29 2 3 3 True
2 26 3 2 9 True
3 23 0 2 9 True
4 66 7 3 28 True
5 25 1 3 12 False
6 25 1 4 2 False
7 17 4 1 7 False
8 22 3 2 11 False
9 47 2 4 27 False ,
assists baronKills bountyLevel champLevel championName \
0 15 0 0 16 Sejuani
1 13 1 3 15 Amumu
2 12 0 5 16 Sylas
3 13 0 0 15 KogMaw
4 27 0 6 15 Swain
5 8 0 0 15 Chogath
6 5 0 0 13 XinZhao
7 3 0 0 14 Pantheon
8 4 0 1 13 Neeko
9 10 0 0 12 Morgana
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 8379 9380 8379
1 1426 26889 1426
2 4484 6281 4484
3 3876 13695 3876
4 4731 5090 4731
5 2209 3389 2209
6 0 11907 0
7 0 7546 0
8 1207 1207 1207
9 385 589 385
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 1 0 False False
1 2 0 3 True False
2 4 1 0 True False
3 9 0 0 False True
4 2 3 0 True False
5 7 0 0 False False
6 10 0 1 False False
7 7 1 0 False False
8 12 2 0 False False
9 12 5 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 True False False
6 False True False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 13333 TOP 0
1 False 11096 JUNGLE 1
2 False 11883 MIDDLE 0
3 False 15588 BOTTOM 0
4 False 13453 UTILITY 0
5 False 10520 TOP 0
6 False 8791 JUNGLE 0
7 False 9477 MIDDLE 0
8 False 11377 BOTTOM 0
9 False 7620 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1054 3211 3083 3075 3111 3068 3363
1 0 3068 3001 3047 1031 3066 1028 3340
2 0 4629 6656 3065 2033 3158 0 3340
3 0 3124 3006 3153 6672 1057 3051 3340
4 0 3853 6653 3102 3050 2055 3020 3364
5 1 4401 6662 3047 3075 0 0 3340
6 1 3078 3153 3111 1028 0 0 3340
7 1 6692 2033 3111 3071 1033 1028 3340
8 1 1056 3157 3152 3020 4628 0 3340
9 1 6653 3853 3191 2424 3117 3108 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 3 9 5 2
1 2 6 3 1
2 1 7 5 1
3 5 16 5 2
4 2 10 6 2
5 1 5 3 1
6 1 4 2 2
7 2 5 2 1
8 2 8 3 2
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 401 36896 9328
1 1000 103694 8501
2 336 83138 18457
3 433 27803 9722
4 711 82476 27930
5 609 78004 11745
6 485 9555 429
7 636 5345 1086
8 299 80767 22790
9 290 23787 13602
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 11211 7 0 0
1 7062 122 0 0
2 9785 20 0 0
3 14445 38 0 0
4 9319 0 0 0
5 28084 4 1 0
6 15249 112 1 0
7 11732 16 1 0
8 11380 0 1 0
9 10563 4 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 100101
1 0 2 24388
2 0 3 15086
3 0 4 111013
4 0 5 5926
5 0 6 23110
6 0 7 96303
7 0 8 108509
8 0 9 8273
9 0 10 1660
physicalDamageDealtToChampions physicalDamageTaken role \
0 12744 19599 SOLO
1 1369 19187 NONE
2 1177 19243 SOLO
3 16202 8382 CARRY
4 1589 9625 SUPPORT
5 3419 12264 SOLO
6 15020 15013 NONE
7 19560 9837 SOLO
8 1267 11264 CARRY
9 451 6768 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 12 6 14 185
1 1 4 16 11 34
2 3 4 4 14 286
3 5 4 6 21 305
4 3 4 3 14 348
5 4 4 2 12 193
6 3 4 14 11 253
7 3 4 3 14 327
8 5 7 4 4 270
9 4 14 4 4 258
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 Henry Huynh NA False 100 TOP 40
1 Chipey12 False 100 JUNGLE 23
2 Pootin Nanny False 100 MIDDLE 35
3 axe QAQ False 100 BOTTOM 11
4 ArcforgeWolves False 100 UTILITY 50
5 p pengu False 200 TOP 80
6 SussieAmogus False 200 JUNGLE 22
7 Rotome False 200 MIDDLE 16
8 KeepTheDream False 200 BOTTOM 45
9 Brinkwire False 200 UTILITY 52
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1776 144235 23891
1 1776 142548 11117
2 1776 120238 21793
3 1776 159954 31091
4 1776 101089 31988
5 1776 115583 16874
6 1776 114328 16582
7 1776 115157 20808
8 1776 89536 24461
9 1776 26107 14713
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 31759 3593 148 237
1 26850 14474 26 147
2 30625 12697 154 347
3 25305 6419 156 231
4 20386 11427 65 247
5 44323 9789 149 1115
6 32050 11838 23 442
7 24263 3991 148 35
8 24942 1040 152 126
9 19437 1010 16 62
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 187 1 7238
1 44 5 14464
2 96 1 22013
3 262 1 21137
4 42 1 12686
5 255 1 14468
6 292 1 8470
7 255 1 1302
8 289 2 494
9 283 1 659
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1818 948 3 1
1 1246 600 1 1
2 2158 1596 2 1
3 5166 2477 2 1
4 2468 1441 1 1
5 1708 3974 0 10
6 1132 1788 1 10
7 162 2693 0 10
8 402 2298 0 10
9 659 2104 0 10
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 26 1 0 11 True
1 14 0 1 8 True
2 24 1 3 8 True
3 21 0 4 8 True
4 59 5 2 28 True
5 8 0 0 6 False
6 20 0 2 9 False
7 18 2 0 8 False
8 19 3 2 7 False
9 57 5 8 28 False ,
assists baronKills bountyLevel champLevel championName \
0 10 0 0 15 Lux
1 2 0 3 18 Fiora
2 8 1 0 18 Udyr
3 16 0 0 15 Nautilus
4 6 0 5 18 MissFortune
5 4 0 0 17 Vladimir
6 7 0 0 15 Taliyah
7 9 0 0 18 Kayle
8 10 0 0 15 Jhin
9 10 0 0 14 Shaco
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 4135 5136 4135
1 10125 13617 10125
2 4290 34310 4290
3 1263 2790 1263
4 7508 19526 7508
5 5009 5009 5009
6 1945 10702 1945
7 3462 14096 3462
8 2013 7483 2013
9 0 156 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 8 0 0 True False
1 11 0 0 True False
2 3 3 3 True False
3 8 2 0 True False
4 6 2 0 False True
5 7 2 0 False False
6 12 0 0 False False
7 3 2 0 False False
8 8 0 1 False False
9 11 2 1 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 9148 MIDDLE 0
1 False 15761 TOP 1
2 False 14760 JUNGLE 0
3 False 10436 UTILITY 0
4 False 21687 BOTTOM 1
5 False 16047 TOP 0
6 False 9455 JUNGLE 0
7 False 16542 MIDDLE 0
8 False 10058 BOTTOM 0
9 False 11205 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3020 6655 3157 3916 0 0 3340
1 0 6630 3111 3074 3508 3053 0 3340
2 0 6664 3091 3111 6609 4401 1033 3364
3 0 3068 3047 3860 3001 1011 3076 3364
4 0 3031 6676 6671 3006 3508 3156 3363
5 2 4629 4636 3158 3102 3135 1058 3340
6 2 2031 6655 3157 3020 4630 0 3340
7 2 3916 3157 4633 3006 3115 3089 3363
8 2 6671 6676 3009 3086 1055 2015 3340
9 2 3853 3157 0 6653 3020 4637 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 1 0 1
1 1 7 3 1
2 1 5 3 1
3 0 3 0 1
4 3 24 13 3
5 3 13 6 2
6 0 2 0 1
7 1 11 10 2
8 1 3 3 1
9 2 7 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 755 62150 6341
1 406 1964 1203
2 908 143629 6273
3 726 26368 9735
4 1213 7560 3130
5 612 169888 33939
6 434 119252 4835
7 1285 180949 28502
8 514 8272 964
9 669 43015 22844
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 14494 0 0 0
1 25058 36 0 0
2 17977 180 0 1
3 18340 0 0 0
4 18201 28 0 0
5 5971 0 1 0
6 5298 123 1 0
7 5209 24 1 0
8 5402 4 1 0
9 6580 4 1 1
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 22298
1 0 2 200752
2 0 3 92343
3 1 4 14378
4 0 5 244398
5 0 6 14822
6 0 7 11770
7 0 8 54853
8 0 9 98425
9 0 10 2752
physicalDamageDealtToChampions physicalDamageTaken role \
0 464 3303 DUO
1 17058 13718 SOLO
2 6860 20156 NONE
3 4131 10926 SOLO
4 41998 9720 DUO
5 2171 29821 SOLO
6 121 26749 NONE
7 6626 14383 SOLO
8 8832 14710 CARRY
9 2512 16158 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 1 14 3 4 83
1 4 4 1 14 160
2 5 4 19 11 148
3 9 14 7 4 220
4 8 7 5 4 188
5 6 4 5 12 253
6 14 11 5 4 135
7 4 4 5 12 327
8 4 7 4 4 64
9 7 14 7 3 191
summonerName teamEarlySurrendered teamId teamPosition \
0 Br0ness False 100 MIDDLE
1 Waylanders False 100 TOP
2 Tsukadakack False 100 JUNGLE
3 Baramin False 100 UTILITY
4 Tordek False 100 BOTTOM
5 SussieAmogus False 200 TOP
6 SlothoftheAbyss False 200 JUNGLE
7 Rotome False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 MoistureCreature False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 23 2136 88384 6995
1 7 2136 215912 24111
2 28 2136 264034 14264
3 87 2136 48613 15434
4 14 2136 256105 46046
5 6 2136 191488 36213
6 1 2136 144428 5119
7 13 2136 240320 37948
8 25 2136 118209 9853
9 61 2136 47376 26964
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 18487 995 124 488
1 39616 13045 218 175
2 38826 19591 88 255
3 30326 3590 40 334
4 29386 14598 247 208
5 40696 34515 226 164
6 32690 11809 7 433
7 21646 10939 290 424
8 20759 4466 134 129
9 24147 1707 19 308
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 330 1 3935
1 376 2 13195
2 107 1 28061
3 307 1 7866
4 267 3 4147
5 243 1 6777
6 338 1 13406
7 90 5 4517
8 253 3 11511
9 296 1 1608
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 190 689 1 4
1 5849 840 4 4
2 1130 692 3 4
3 1567 1060 0 4
4 916 1464 2 4
5 102 4902 2 11
6 162 641 0 11
7 2818 2053 2 11
8 56 647 0 11
9 1608 1408 0 11
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 11 0 0 7 True
1 16 0 2 8 True
2 47 3 7 5 True
3 62 2 7 23 True
4 30 2 1 13 True
5 35 2 1 14 False
6 17 0 3 8 False
7 30 2 2 8 False
8 10 0 0 7 False
9 42 2 5 21 False ,
assists baronKills bountyLevel champLevel championName \
0 2 0 0 13 Urgot
1 9 0 0 11 Nunu
2 1 0 0 13 Fizz
3 3 0 0 12 Tristana
4 13 0 0 12 Pyke
5 6 0 0 15 Mordekaiser
6 6 0 0 12 Singed
7 5 0 2 14 Pantheon
8 4 0 4 12 Jhin
9 13 0 0 12 Thresh
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3069 13081 3069
1 0 4483 0
2 739 1958 739
3 3828 4173 3828
4 800 800 800
5 3739 7102 3739
6 829 5380 829
7 500 3266 500
8 1983 11381 1983
9 767 3065 767
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 8 1 0 False False
1 7 0 1 False False
2 2 2 0 False False
3 4 3 0 False False
4 5 1 0 False False
5 3 1 1 False False
6 6 0 2 False False
7 2 1 0 False True
8 6 0 0 False False
9 3 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 True False False
3 False False False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 8601 TOP 0
1 True 7285 JUNGLE 0
2 True 6746 MIDDLE 0
3 True 12895 BOTTOM 0
4 True 10375 UTILITY 0
5 True 11061 TOP 0
6 True 8238 JUNGLE 0
7 True 10475 MIDDLE 0
8 True 9754 BOTTOM 0
9 True 6185 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 6631 3111 3071 1055 1036 0 3340
1 0 3111 2031 3068 3076 1011 0 3340
2 0 1056 4636 3158 3113 2055 1026 3340
3 0 6672 3046 2055 3031 3006 1053 3363
4 0 3857 3142 3117 6691 3134 1036 3340
5 0 1056 4633 3020 3116 1052 1026 3340
6 0 6664 2033 3009 1082 3742 0 3340
7 0 6692 2033 3071 3111 3044 1028 3340
8 0 6671 6676 3009 3086 0 1055 3363
9 0 3857 3190 3117 3024 1028 0 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 0 1 0 1
1 0 2 0 1
2 0 0 0 0
3 2 11 6 2
4 2 6 3 1
5 1 5 3 1
6 1 4 2 2
7 3 9 4 2
8 2 8 4 3
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 262 0 0
1 348 38381 7357
2 373 24463 1852
3 687 20323 1989
4 636 0 0
5 1076 106493 11016
6 412 80928 6709
7 789 2387 764
8 587 2107 0
9 414 8170 4400
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 7483 32 0 0
1 5491 64 0 0
2 608 0 0 0
3 3410 16 0 0
4 6960 0 0 0
5 2166 12 0 0
6 4066 104 0 0
7 2402 4 0 0
8 2408 0 0 0
9 2212 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 104142
1 0 2 11350
2 0 3 17630
3 0 4 79867
4 0 5 20661
5 0 6 18291
6 0 7 13214
7 0 8 77616
8 0 9 67932
9 0 10 4919
physicalDamageDealtToChampions physicalDamageTaken role \
0 10103 11174 SOLO
1 876 19366 NONE
2 483 6677 SUPPORT
3 16491 9431 CARRY
4 12580 6678 SUPPORT
5 1933 16420 SOLO
6 159 20076 NONE
7 18280 12187 SOLO
8 10698 8287 CARRY
9 508 7895 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 2 12 241
1 6 6 16 11 34
2 4 14 2 4 194
3 3 7 2 4 350
4 6 14 3 4 64
5 3 4 6 14 66
6 15 11 4 6 190
7 4 4 6 14 327
8 3 7 3 4 64
9 2 3 3 4 135
summonerName teamEarlySurrendered teamId teamPosition \
0 hivver False 100 TOP
1 Rooooooooooot False 100 JUNGLE
2 HalDizzle False 100 MIDDLE
3 speeecy False 100 BOTTOM
4 Vanish667 False 100 UTILITY
5 SWATMARE False 200 TOP
6 MoistureCreature False 200 JUNGLE
7 Rotome False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 SlothoftheAbyss False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 18 1601 108893 10294
1 41 1601 79436 9184
2 7 1601 54115 2722
3 9 1601 113245 20665
4 39 1601 28382 15159
5 7 1601 126235 14265
6 17 1601 100947 7220
7 21 1601 81002 20042
8 16 1601 72456 10701
9 28 1601 17826 4909
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 19058 1371 140 147
1 25922 11332 36 320
2 7588 530 107 39
3 13618 1489 144 75
4 13764 2840 23 131
5 19347 6699 188 109
6 26453 8121 33 141
7 16128 4216 130 32
8 11484 2151 111 80
9 11003 2030 34 57
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 252 1 4750
1 186 1 29705
2 24 1 12021
3 125 2 13054
4 166 1 7721
5 126 1 1450
6 161 1 6804
7 72 1 998
8 100 3 2416
9 44 5 4736
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 190 400 2 3
1 951 1063 0 3
2 386 302 0 3
3 2184 776 1 3
4 2579 124 0 3
5 1315 761 1 3
6 352 2310 1 3
7 998 1538 0 3
8 2 787 1 3
9 0 895 0 3
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 8 1 0 5 False
1 18 0 3 8 False
2 15 3 0 9 False
3 11 5 1 10 False
4 35 1 0 16 False
5 28 1 3 12 True
6 18 0 2 8 True
7 10 1 0 6 True
8 9 0 1 5 True
9 29 2 5 14 True ,
assists baronKills bountyLevel champLevel championName \
0 3 0 0 14 Pantheon
1 2 0 0 12 LeeSin
2 2 0 0 15 TwistedFate
3 1 0 0 14 Jhin
4 4 0 0 11 Nami
5 5 0 2 16 Teemo
6 8 0 3 16 Shyvana
7 7 1 3 15 Graves
8 7 0 3 16 Jinx
9 12 0 1 12 Rell
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 0 160 0
1 0 1348 0
2 3763 3763 3763
3 2301 3080 2301
4 1174 1347 1174
5 6009 27802 6009
6 2700 32899 2700
7 4741 9262 4741
8 4498 8210 4498
9 670 1466 670
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 2 0 False False
1 12 0 0 False False
2 5 1 0 False False
3 2 0 0 False False
4 5 1 0 False False
5 1 0 1 False True
6 1 0 3 True False
7 1 1 0 False False
8 2 5 0 False False
9 2 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 8907 TOP 0
1 False 6774 JUNGLE 0
2 False 9535 MIDDLE 0
3 False 12477 BOTTOM 0
4 False 6022 UTILITY 0
5 False 14154 TOP 1
6 False 12536 JUNGLE 1
7 False 11132 MIDDLE 0
8 False 12548 BOTTOM 0
9 False 7500 UTILITY 1
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 3 6692 2033 2055 3071 1028 3111 3364
1 3 6692 3111 3134 1028 1036 0 3340
2 3 3100 6656 2015 1042 3047 0 3340
3 3 6671 3086 3009 6676 3094 3123 3363
4 3 3853 2003 2010 4005 3158 3114 3364
5 0 3157 3020 2033 4637 6655 1058 3340
6 0 6662 3047 2031 3748 3083 0 3340
7 0 6676 6692 3006 3134 1037 0 3340
8 0 3085 3031 3094 3006 0 0 3363
9 0 3860 3190 3047 3109 3076 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 1 0 1
1 0 1 0 1
2 0 0 0 0
3 2 5 3 2
4 0 0 0 0
5 2 11 9 3
6 2 7 4 1
7 2 5 3 1
8 2 5 3 2
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 617 7850 477
1 469 20469 1094
2 596 122081 9140
3 1195 15513 1401
4 975 7096 3457
5 1293 114294 20820
6 1282 126058 11499
7 1305 1009 949
8 641 1186 355
9 922 10365 5174
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 10239 12 1 0
1 10595 76 1 0
2 6991 0 1 0
3 3684 0 1 0
4 8238 0 1 0
5 2126 50 0 0
6 5456 141 0 0
7 5661 12 0 0
8 3830 26 0 0
9 1470 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 103175
1 0 2 54360
2 0 3 29499
3 0 4 147213
4 0 5 959
5 0 6 34480
6 0 7 64729
7 0 8 122941
8 0 9 162277
9 0 10 5741
physicalDamageDealtToChampions physicalDamageTaken role \
0 10015 11500 NONE
1 5302 17605 NONE
2 1025 11012 SOLO
3 8549 8266 CARRY
4 41 6489 SUPPORT
5 1852 8469 NONE
6 4124 23706 NONE
7 13107 5925 SOLO
8 10435 9040 CARRY
9 694 7338 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 2 12 326
1 9 11 3 4 190
2 2 12 5 4 326
3 3 7 4 4 64
4 1 3 1 4 135
5 6 14 3 4 211
6 17 11 4 4 229
7 3 14 2 4 123
8 3 4 4 7 158
9 6 3 10 4 197
summonerName teamEarlySurrendered teamId teamPosition \
0 Rotome False 100 TOP
1 MoistureCreature False 100 JUNGLE
2 Frelikz False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 SlothoftheAbyss False 100 UTILITY
5 JumbleMuffler False 200 TOP
6 Hollow243 False 200 JUNGLE
7 WaffleCakeLord False 200 MIDDLE
8 Sunny Dªys False 200 BOTTOM
9 ThréshLight False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 17 1842 117035 10492
1 12 1842 80088 6444
2 16 1842 155101 10165
3 28 1842 171137 9950
4 19 1842 8055 3499
5 43 1842 173052 24125
6 5 1842 203503 16608
7 18 1842 129009 14533
8 5 1842 177523 10791
9 29 1842 21793 5869
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 22278 5337 168 42
1 28852 6200 15 233
2 18731 2607 199 36
3 12328 3779 228 175
4 15347 7405 3 126
5 10595 600 165 390
6 29210 12665 76 868
7 11586 5391 175 183
8 12870 4007 220 87
9 8809 1227 25 67
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 104 1 6010
1 338 1 5258
2 126 1 3520
3 31 2 8410
4 169 5 0
5 42 1 24277
6 39 1 12714
7 39 1 5058
8 51 3 14060
9 52 4 5687
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 537 0 10
1 48 650 0 10
2 0 727 1 10
3 0 378 0 10
4 0 619 1 10
5 1452 0 3 2
6 985 48 1 2
7 476 0 4 2
8 0 0 2 2
9 0 0 0 2
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 18 3 4 6 False
1 10 0 0 8 False
2 14 1 1 9 False
3 8 0 1 4 False
4 18 1 3 7 False
5 15 0 2 9 True
6 24 0 1 10 True
7 19 1 3 9 True
8 35 5 4 15 True
9 31 0 2 13 True ,
assists baronKills bountyLevel champLevel championName \
0 10 0 2 15 Darius
1 12 0 3 16 XinZhao
2 5 0 0 14 Neeko
3 11 0 0 13 Samira
4 20 0 2 13 Rell
5 3 0 0 15 Viego
6 4 0 0 11 Kindred
7 3 0 0 14 Kayle
8 2 0 0 12 Jhin
9 6 0 0 11 Leona
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2571 4011 2571
1 0 21362 0
2 7310 13986 7310
3 5084 5925 5084
4 1034 4879 1034
5 0 2309 0
6 0 1381 0
7 0 0 0
8 0 0 0
9 0 0 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 4 0 0 False True
1 3 0 1 True False
2 2 0 0 False False
3 4 0 1 False False
4 1 1 0 False False
5 8 0 0 False False
6 9 0 0 False False
7 7 1 0 False False
8 7 0 0 False False
9 10 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False True False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 11242 TOP 0
1 True 13664 JUNGLE 0
2 True 8798 MIDDLE 0
3 True 11211 BOTTOM 0
4 True 8337 UTILITY 0
5 True 11358 TOP 0
6 True 7779 JUNGLE 0
7 True 9730 MIDDLE 0
8 True 6575 BOTTOM 0
9 True 5501 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3047 6631 3053 3075 1033 0 3340
1 0 3115 2031 3006 3100 4629 3145 3340
2 0 1056 3157 3152 3916 0 3020 3340
3 0 1037 6673 3006 6676 1038 1018 3340
4 0 3047 6664 3860 3075 1011 0 3364
5 0 1055 6672 3006 3153 3051 1042 3340
6 0 6671 2031 3006 1038 2015 0 3340
7 0 1054 3115 3006 1082 4633 3191 3363
8 0 6671 1055 3009 3134 0 0 3340
9 0 3860 3190 3801 3047 0 0 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 2 7 2 1
1 4 17 6 3
2 1 2 2 1
3 2 10 6 2
4 2 5 3 1
5 2 7 3 2
6 0 2 0 1
7 1 4 2 1
8 0 1 0 1
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 376 973 29
1 700 54073 9579
2 1217 90118 5752
3 932 5422 1853
4 1203 22117 8123
5 345 5602 2117
6 474 19163 862
7 508 63009 10208
8 412 3572 1094
9 306 9338 2880
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 4444 16 0 0
1 5119 141 0 0
2 3757 4 0 0
3 3594 20 0 0
4 1743 0 0 0
5 4617 8 0 0
6 5931 115 0 0
7 5959 4 0 0
8 5720 0 0 0
9 5513 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 103648
1 0 2 106026
2 0 3 15352
3 0 4 64473
4 0 5 4985
5 0 6 96312
6 0 7 71911
7 0 8 31255
8 0 9 54119
9 0 10 8323
physicalDamageDealtToChampions physicalDamageTaken role \
0 12709 8817 SOLO
1 16145 29268 NONE
2 390 4963 SOLO
3 13631 9278 CARRY
4 1256 6152 SUPPORT
5 15926 17667 DUO
6 3223 19685 NONE
7 1778 7787 DUO
8 5538 6671 CARRY
9 2167 11204 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 3 6 126
1 4 4 17 11 40
2 4 12 2 4 164
3 3 4 4 7 140
4 5 14 3 4 224
5 3 4 5 14 253
6 9 11 3 4 135
7 3 4 1 12 326
8 4 7 4 4 64
9 4 4 3 14 260
summonerName teamEarlySurrendered teamId teamPosition \
0 CRH Squiddy False 100 TOP
1 Zaninator False 100 JUNGLE
2 Zyngruff False 100 MIDDLE
3 The Tobinator False 100 BOTTOM
4 Supreme Succubus False 100 UTILITY
5 SussieAmogus False 200 TOP
6 SlothoftheAbyss False 200 JUNGLE
7 Rotome False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 S1ONTIST False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 21 1583 117736 15433
1 30 1583 173770 26486
2 21 1583 111423 6143
3 5 1583 78648 15801
4 44 1583 33452 10093
5 11 1583 110968 20844
6 3 1583 96850 4328
7 4 1583 94264 11986
8 14 1583 57691 6632
9 49 1583 25413 5446
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 14382 3134 162 208
1 35486 23565 30 692
2 8721 1811 172 239
3 13772 2577 130 15
4 8217 2218 34 101
5 23732 7704 160 46
6 26012 11185 11 138
7 14894 1133 187 188
8 12717 1348 117 77
9 17887 207 43 79
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 124 1 13113
1 112 1 13671
2 82 1 5952
3 127 3 8752
4 33 5 6349
5 280 1 9053
6 215 4 5774
7 247 3 0
8 180 2 0
9 247 4 7751
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 2693 1120 2 0
1 761 1098 0 0
2 0 0 3 0
3 316 899 2 0
4 714 321 0 0
5 2800 1447 0 7
6 242 394 0 7
7 0 1147 0 7
8 0 326 0 7
9 398 1169 0 7
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 15 0 1 9 True
1 16 0 0 8 True
2 18 0 2 9 True
3 10 0 0 5 True
4 42 1 4 17 True
5 11 0 0 8 False
6 9 0 0 5 False
7 8 2 1 4 False
8 10 0 0 7 False
9 41 1 1 24 False ,
assists baronKills bountyLevel champLevel championName \
0 5 0 6 17 Bard
1 5 0 0 14 Graves
2 6 0 6 18 Kayle
3 10 0 1 14 Jhin
4 11 0 0 15 Shaco
5 2 0 0 15 MonkeyKing
6 8 0 0 15 Lillia
7 5 0 0 15 Nocturne
8 9 0 0 14 Kaisa
9 14 0 0 14 Morgana
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2740 7705 2740
1 3782 18302 3782
2 3033 16542 3033
3 680 3027 680
4 778 1330 778
5 5620 6789 5620
6 1577 13331 1577
7 898 9941 898
8 5366 10988 5366
9 1386 3704 1386
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 1 0 0 True False
1 11 0 1 False True
2 2 0 1 False False
3 6 0 1 False False
4 12 0 0 False False
5 8 2 0 False False
6 6 0 2 False False
7 10 2 0 False False
8 5 6 0 False False
9 5 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 True False False
2 False True False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 12204 TOP 0
1 True 10738 JUNGLE 0
2 True 17300 MIDDLE 1
3 True 8008 BOTTOM 0
4 True 12277 UTILITY 0
5 True 11379 TOP 0
6 True 11556 JUNGLE 0
7 True 10910 MIDDLE 0
8 True 13844 BOTTOM 0
9 True 9676 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 4636 2033 3100 3006 3115 1036 3340
1 0 6676 1053 3006 6671 1018 0 3340
2 0 1054 3157 3115 3006 4633 3041 3363
3 0 6671 1055 3009 6676 0 0 3340
4 0 3158 3853 3157 6656 4629 4630 3364
5 1 3074 3078 3047 3156 1055 0 3364
6 1 6655 4637 2420 3020 3916 3191 3364
7 1 6691 3006 6676 3179 0 0 3340
8 1 3006 6676 6671 1038 3085 1037 3364
9 1 4005 3853 3157 3158 4637 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 7 6 2
1 0 4 0 1
2 2 14 7 1
3 0 1 0 1
4 3 8 3 1
5 0 2 0 1
6 2 6 2 1
7 1 5 2 1
8 2 13 10 3
9 1 6 5 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 1431 100186 16673
1 378 10262 1742
2 952 174981 21472
3 543 6945 750
4 327 52958 21052
5 836 21414 1789
6 488 138601 15409
7 767 1963 963
8 1457 12428 5795
9 984 40166 18531
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 4638 17 0 0
1 8113 104 0 0
2 7843 72 0 0
3 6441 10 0 0
4 16315 0 0 0
5 14593 0 0 0
6 14699 133 0 0
7 14472 12 0 0
8 8942 9 0 0
9 12057 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 27437
1 0 2 126054
2 0 3 48678
3 0 4 62174
4 0 5 6982
5 0 6 117346
6 0 7 15734
7 0 8 124302
8 0 9 125761
9 0 10 4981
physicalDamageDealtToChampions physicalDamageTaken role \
0 3321 10237 SOLO
1 11095 19961 NONE
2 5277 10682 SOLO
3 10282 5356 CARRY
4 831 11743 SUPPORT
5 10232 10248 SOLO
6 484 19992 NONE
7 10819 12993 SOLO
8 14362 13223 CARRY
9 1065 10325 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 4 12 253
1 5 4 20 11 177
2 3 4 2 12 326
3 4 7 3 4 64
4 2 4 4 14 185
5 5 14 4 4 292
6 4 4 16 11 227
7 5 14 3 4 254
8 5 7 3 4 262
9 6 4 3 14 153
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 SussieAmogus False 100 TOP 35
1 DarkZexi False 100 JUNGLE 15
2 Rotome False 100 MIDDLE 8
3 Dublaiar False 100 BOTTOM 24
4 mK Reptileeee False 100 UTILITY 56
5 Bearacudda98 False 200 TOP 13
6 TheMarshall1 False 200 JUNGLE 37
7 Reaper27 GG False 200 MIDDLE 182
8 Skyfiree False 200 BOTTOM 1
9 Hairybob45 False 200 UTILITY 96
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 2073 131062 20025
1 2073 149302 13273
2 2073 232562 27306
3 2073 69401 11200
4 2073 60707 22553
5 2073 141639 13015
6 2073 194589 19202
7 2073 130414 12785
8 2073 140665 20487
9 2073 45634 20083
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 15652 7534 170 556
1 29072 6771 47 600
2 20671 11041 226 310
3 12419 1768 80 124
4 29638 1038 57 470
5 25156 4032 193 43
6 35021 13982 55 482
7 28039 5102 155 403
8 22558 7769 177 7
9 22634 5212 21 131
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 45 5 3438
1 342 1 12984
2 69 5 8904
3 138 2 282
4 310 1 766
5 325 1 2878
6 223 1 40253
7 396 1 4149
8 220 2 2474
9 204 1 486
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 30 776 1 4
1 435 997 2 4
2 556 2145 1 4
3 168 621 0 4
4 670 1579 0 4
5 994 314 2 5
6 3308 329 0 5
7 1002 574 1 5
8 330 391 1 5
9 486 251 0 5
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 25 0 4 11 True
1 18 0 1 11 True
2 12 1 1 6 True
3 17 0 1 10 True
4 47 0 3 21 True
5 21 2 3 8 False
6 12 0 5 0 False
7 31 2 3 11 False
8 24 6 2 10 False
9 35 0 2 13 False ,
assists baronKills bountyLevel champLevel championName \
0 2 0 1 13 Jayce
1 4 0 1 11 Sejuani
2 0 0 0 11 TwistedFate
3 5 0 0 10 Caitlyn
4 7 0 0 10 Leona
5 2 0 2 13 Darius
6 9 0 1 11 Shaco
7 3 0 0 13 Veigar
8 3 0 2 10 Jhin
9 6 0 0 10 Pyke
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3119 3119 3119
1 123 8353 123
2 271 271 271
3 2584 7799 2584
4 696 2181 696
5 2978 4467 2978
6 97 5673 97
7 3669 4676 3669
8 1226 3512 1226
9 0 7864 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 4 1 0 False False
1 2 4 1 False False
2 5 0 0 False False
3 4 2 0 True False
4 2 2 1 False True
5 2 1 0 False False
6 2 0 1 False False
7 1 1 0 False False
8 0 0 0 False False
9 6 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 8269 TOP 0
1 True 7725 JUNGLE 0
2 True 6761 MIDDLE 0
3 True 8412 BOTTOM 0
4 True 5803 UTILITY 0
5 True 7647 TOP 0
6 True 6770 JUNGLE 0
7 True 10922 MIDDLE 0
8 True 6474 BOTTOM 0
9 True 5529 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 6692 1055 3042 3158 1036 0 3340
1 0 3068 2031 3158 0 0 2055 3364
2 0 2033 6656 3158 3113 3057 0 3363
3 0 1055 3094 3006 2055 6671 1042 3364
4 0 3860 3190 3117 1057 1028 0 3364
5 0 1055 2031 3044 3047 3078 1037 3340
6 0 2031 6631 3006 0 0 0 3340
7 0 2033 6656 2055 4629 3020 3191 3363
8 0 6671 1055 3009 1036 1018 0 3340
9 0 3857 6693 1036 3117 1036 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 4 2 1
1 0 2 0 1
2 0 2 0 1
3 1 2 2 1
4 0 1 0 1
5 1 2 2 1
6 0 1 0 1
7 1 10 10 2
8 1 2 2 1
9 1 2 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 828 13982 3932
1 834 34820 1799
2 301 60826 5732
3 812 1872 1147
4 844 3140 1404
5 392 0 0
6 407 30924 3532
7 1346 78091 14931
8 0 2112 0
9 429 0 0
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 4849 5 0 0
1 4277 106 0 0
2 3546 0 0 0
3 5493 4 0 0
4 1781 4 0 0
5 3799 12 0 0
6 3477 81 0 0
7 3302 4 0 0
8 723 0 0 0
9 3168 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 65233
1 0 2 58276
2 0 3 11239
3 0 4 82695
4 0 5 6360
5 0 6 90257
6 0 7 32322
7 0 8 10555
8 0 9 46285
9 0 10 11847
physicalDamageDealtToChampions physicalDamageTaken role \
0 11129 8195 SOLO
1 2872 13833 NONE
2 1120 6405 SOLO
3 8089 4911 CARRY
4 1059 6389 SUPPORT
5 6510 9746 SOLO
6 3542 10029 NONE
7 1006 5905 SOLO
8 4071 3871 CARRY
9 4546 8732 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 2 12 38
1 2 4 11 11 63
2 5 12 5 4 208
3 2 4 4 7 229
4 3 14 3 4 94
5 4 4 4 6 253
6 2 14 12 11 186
7 3 4 1 12 326
8 1 7 1 4 64
9 3 4 3 3 176
summonerName teamEarlySurrendered teamId teamPosition \
0 HenchRedBuff False 100 TOP
1 DZP Black Knight False 100 JUNGLE
2 Wraìth False 100 MIDDLE
3 Mipha False 100 BOTTOM
4 Lunar Rush False 100 UTILITY
5 StalwartHide False 200 TOP
6 GG Drago False 200 JUNGLE
7 Rotome False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 Davii False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 8 1367 80725 15061
1 18 1367 103401 5030
2 20 1367 84403 6955
3 13 1367 98142 9445
4 21 1367 15539 2784
5 16 1367 91249 7502
6 23 1367 69214 7848
7 37 1367 90635 15937
8 7 1367 51237 4071
9 19 1367 25516 4759
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 13722 2369 137 88
1 18272 9014 20 355
2 10534 1551 116 147
3 10759 3717 161 95
4 8371 998 27 40
5 13546 2656 143 79
6 13822 4683 14 529
7 9252 1924 146 82
8 4595 836 97 58
9 12528 1696 30 62
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 146 1 1510
1 51 4 10305
2 135 2 12337
3 77 2 13574
4 43 4 6038
5 35 1 992
6 28 1 5967
7 0 1 1989
8 0 2 2840
9 94 1 13668
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 678 1 3
1 358 161 0 3
2 102 582 0 3
3 208 354 1 3
4 320 200 0 3
5 992 0 1 2
6 773 316 1 2
7 0 44 0 2
8 0 0 1 2
9 213 628 0 2
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 20 1 1 8 False
1 13 5 1 5 False
2 9 0 0 7 False
3 16 3 5 6 False
4 45 2 5 18 False
5 14 1 0 8 True
6 20 0 4 7 True
7 4 3 0 2 True
8 9 0 0 7 True
9 52 1 6 25 True ,
assists baronKills bountyLevel champLevel championName \
0 11 0 6 18 Darius
1 21 1 0 18 FiddleSticks
2 26 0 6 18 Kayle
3 14 1 0 18 Jhin
4 31 0 0 18 Thresh
5 7 0 0 18 Riven
6 10 1 0 18 Rengar
7 9 0 0 18 Neeko
8 13 0 0 17 Vayne
9 23 0 0 18 Zyra
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 1275 10271 1275
1 1930 28771 1930
2 11037 44885 11037
3 1371 14538 1371
4 2312 6693 2312
5 3427 14692 3427
6 0 37826 0
7 4773 12952 4773
8 2482 10039 2482
9 4148 18594 4148
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 0 0 False False
1 12 0 2 False False
2 4 2 1 False False
3 8 0 2 False False
4 12 0 0 False False
5 8 0 0 True False
6 11 7 2 False True
7 9 0 0 False False
8 11 0 1 False False
9 9 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 20342 TOP 0
1 False 15616 JUNGLE 0
2 False 22779 MIDDLE 1
3 False 16159 BOTTOM 0
4 False 13116 UTILITY 0
5 False 17401 TOP 0
6 False 17242 JUNGLE 0
7 False 14151 MIDDLE 1
8 False 16911 BOTTOM 0
9 False 16792 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 3065 3193 3078 3047 3053 3075 3363
1 1 6653 3157 3020 2031 3135 3165 3330
2 1 3165 3157 4633 3006 3115 3041 3363
3 1 6671 3033 3009 6676 3094 3026 3340
4 1 3075 3158 3001 6656 3853 3044 3364
5 1 3158 6630 3071 6333 3156 3035 3340
6 1 1033 6630 3111 3508 6609 3156 3364
7 1 3157 3152 3165 1058 3020 4628 3363
8 1 6672 3153 3006 3046 3124 3123 3340
9 1 3853 3157 3135 3020 6653 3089 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 3 16 6 2
1 1 6 3 1
2 3 14 6 2
3 3 9 3 1
4 0 3 0 1
5 1 7 5 1
6 3 11 2 2
7 1 3 2 2
8 4 12 3 2
9 2 10 5 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 862 2766 405
1 362 185613 23264
2 997 292618 32172
3 658 9208 2251
4 446 38493 17586
5 1384 0 0
6 784 60854 1853
7 661 173012 16896
8 494 202 202
9 823 143363 54364
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 15194 16 0 0
1 20207 175 0 0
2 12054 32 0 0
3 9025 12 0 0
4 22086 0 0 0
5 19969 53 1 0
6 15422 219 1 0
7 16162 0 1 0
8 14922 4 1 0
9 13412 8 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 172843
1 0 2 8870
2 0 3 66542
3 0 4 179991
4 0 5 10584
5 0 6 206489
6 0 7 196688
7 0 8 19405
8 0 9 114588
9 0 10 9012
physicalDamageDealtToChampions physicalDamageTaken role \
0 20567 30145 SOLO
1 101 25713 NONE
2 7193 15657 SOLO
3 15828 10358 CARRY
4 1439 16213 SUPPORT
5 24382 18664 NONE
6 19876 39835 NONE
7 834 10626 SOLO
8 16831 9955 CARRY
9 1762 7043 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 7 4 11 6 252
1 16 11 6 4 135
2 4 4 2 12 326
3 3 7 4 4 64
4 7 4 10 14 177
5 8 14 6 4 283
6 14 11 5 4 264
7 4 4 5 14 165
8 9 7 5 4 334
9 6 14 5 4 211
summonerName teamEarlySurrendered teamId teamPosition \
0 StalwartHide False 100 TOP
1 SlothoftheAbyss False 100 JUNGLE
2 Rotome False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 DarkZexi False 100 UTILITY
5 aaronclaron False 200 TOP
6 ChingChongMando False 200 JUNGLE
7 Fatalpixel23 False 200 MIDDLE
8 Wryzen False 200 BOTTOM
9 umami False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 29 2849 190282 30877
1 30 2849 206899 23516
2 15 2849 414522 42718
3 26 2849 189256 18136
4 67 2849 54614 21186
5 30 2849 208981 26154
6 14 2849 272107 22715
7 38 2849 198673 19371
8 6 2849 143934 26392
9 97 2849 156012 56912
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 51473 20655 211 188
1 47161 21832 26 714
2 29996 22028 357 524
3 20244 4119 198 172
4 42323 7421 33 220
5 46342 10574 210 168
6 57056 25625 29 403
7 27597 4313 252 306
8 28413 7966 160 14
9 22598 5325 88 282
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 272 1 14672
1 444 1 12414
2 192 5 55359
3 231 3 56
4 406 1 5536
5 387 1 2492
6 483 1 14565
7 326 1 6255
8 406 4 29143
9 284 1 3636
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 9904 6133 1 7
1 150 1240 1 7
2 3352 2284 3 7
3 56 860 0 7
4 2161 4023 1 7
5 1772 7708 3 6
6 985 1799 0 6
7 1640 809 2 6
8 9358 3535 0 6
9 786 2141 2 6
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 39 0 4 18 True
1 55 0 2 3 True
2 39 2 6 11 True
3 22 0 2 13 True
4 108 0 9 62 True
5 27 0 1 14 False
6 42 7 8 9 False
7 25 0 1 17 False
8 25 0 2 14 False
9 105 2 11 37 False ,
assists baronKills bountyLevel champLevel championName \
0 8 0 7 17 Malphite
1 15 1 0 15 FiddleSticks
2 5 0 3 17 Kayle
3 8 0 1 14 Kaisa
4 22 0 1 14 Rell
5 4 0 0 15 Riven
6 5 0 0 17 Udyr
7 0 0 1 14 Lux
8 8 0 0 14 Xayah
9 6 0 0 12 Leona
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2859 7609 2859
1 0 10692 0
2 6974 13214 6974
3 148 10436 148
4 0 2552 0
5 0 1121 0
6 1317 27475 1317
7 2126 3261 2126
8 1883 4013 1883
9 68 125 68
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 2 0 0 False False
1 4 0 2 False False
2 4 1 0 False False
3 9 0 0 False False
4 7 1 0 False False
5 7 1 0 False False
6 4 0 2 False False
7 8 0 0 False False
8 10 0 0 False True
9 11 0 0 True False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False True False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 12319 TOP 0
1 True 10625 JUNGLE 0
2 True 14184 MIDDLE 0
3 True 10392 BOTTOM 0
4 True 8866 UTILITY 0
5 True 8879 TOP 0
6 True 13797 JUNGLE 0
7 True 8316 MIDDLE 0
8 True 13700 BOTTOM 0
9 True 7170 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3075 2033 3748 3068 3047 1033 3340
1 0 6653 3020 3157 2031 3135 0 3330
2 0 1054 6673 3006 3508 3031 3086 3340
3 0 6676 3086 1042 3006 6672 1055 3340
4 0 3742 3117 3076 6664 3860 0 3364
5 0 6630 3111 3071 1054 0 0 3340
6 0 6664 3742 3100 3111 4401 1052 3364
7 0 1056 6655 3020 3145 1058 0 3340
8 0 3508 6675 6671 1018 1038 3006 3363
9 0 3860 3190 3117 3050 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 10 7 2
1 1 6 4 1
2 2 12 9 2
3 1 8 3 2
4 1 4 2 2
5 0 1 0 1
6 3 9 4 3
7 0 3 0 1
8 2 10 5 3
9 1 3 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 935 68833 15787
1 620 123086 16648
2 682 71263 9323
3 456 8452 5045
4 409 26641 13869
5 728 0 0
6 642 130154 7993
7 575 74569 7619
8 276 1767 1767
9 427 3855 2918
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 4383 4 0 0
1 8044 126 0 0
2 3797 16 0 0
3 3031 0 0 0
4 3781 0 0 0
5 10757 16 0 0
6 14462 201 0 0
7 9457 0 0 0
8 14547 9 0 0
9 13344 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 58058
1 0 2 6364
2 0 3 104382
3 0 4 60749
4 0 5 6174
5 0 6 110239
6 0 7 73288
7 0 8 14393
8 0 9 149090
9 0 10 5634
physicalDamageDealtToChampions physicalDamageTaken role \
0 10095 15492 SOLO
1 138 21128 NONE
2 10548 7783 SOLO
3 10717 13292 CARRY
4 2193 18188 SUPPORT
5 7794 12985 SOLO
6 6890 22225 NONE
7 911 5409 SOLO
8 33255 10108 CARRY
9 2039 9236 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 4 12 252
1 16 11 4 4 135
2 3 4 4 12 326
3 3 7 2 4 64
4 5 4 5 3 177
5 2 4 2 12 81
6 17 11 4 4 378
7 3 4 3 14 104
8 3 4 5 7 395
9 4 14 2 4 62
summonerName teamEarlySurrendered teamId teamPosition \
0 StalwartHide False 100 TOP
1 SlothoftheAbyss False 100 JUNGLE
2 Rotome False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 DarkZexi False 100 UTILITY
5 d4rks4suk3 False 200 TOP
6 Volfstone False 200 JUNGLE
7 Little Anthonio False 200 MIDDLE
8 Hey Im Adams False 200 BOTTOM
9 Loli Main False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 30 1744 136147 25882
1 49 1744 136673 17367
2 7 1744 175647 19872
3 0 1744 73639 17258
4 53 1744 36442 16062
5 24 1744 112734 7794
6 50 1744 224245 16439
7 43 1744 101630 9304
8 36 1744 155542 35023
9 43 1744 15392 6088
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 21063 5795 179 519
1 29886 16227 24 753
2 12079 3317 196 273
3 16677 2771 104 0
4 22674 4913 43 108
5 24220 2502 174 117
6 37497 17356 35 445
7 14966 442 136 505
8 24758 6204 182 40
9 23167 1044 31 57
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 81 1 9255
1 84 1 7222
2 100 4 0
3 255 2 4437
4 179 5 3626
5 226 1 2495
6 165 1 20803
7 280 1 12668
8 288 3 4685
9 283 4 5902
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 1187 1 4
1 580 713 0 4
2 0 498 2 4
3 1495 353 0 4
4 0 705 0 4
5 0 477 0 4
6 1555 809 1 4
7 773 100 1 4
8 0 103 1 4
9 1129 586 0 4
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 17 0 2 9 True
1 27 0 0 1 True
2 21 1 2 9 True
3 11 0 0 8 True
4 48 1 3 30 True
5 27 1 2 9 False
6 19 0 2 3 False
7 14 0 1 9 False
8 17 0 0 9 False
9 29 0 3 11 False ,
assists baronKills bountyLevel champLevel championName \
0 14 1 0 18 Kayle
1 13 0 0 17 Ekko
2 5 0 6 18 Veigar
3 6 0 0 18 Samira
4 10 0 1 15 Velkoz
5 5 0 1 17 Garen
6 9 0 0 16 Shaco
7 12 0 0 18 Seraphine
8 15 0 1 16 Ezreal
9 7 0 0 15 Pantheon
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 5720 15937 5720
1 3658 29956 3658
2 3544 7068 3544
3 4036 26759 4036
4 0 755 0
5 1102 1102 1102
6 1789 24649 1789
7 2311 2311 2311
8 3370 6440 3370
9 825 825 825
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 4 0 0 False False
1 9 8 4 False False
2 3 1 0 False False
3 9 1 1 False False
4 12 1 0 False False
5 3 1 0 False False
6 11 0 0 False True
7 7 0 0 False False
8 5 2 0 True False
9 13 3 0 True False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 True False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 16838 TOP 0
1 False 13088 JUNGLE 0
2 False 14628 MIDDLE 1
3 False 19860 BOTTOM 0
4 False 10457 UTILITY 0
5 False 12299 TOP 0
6 False 16125 JUNGLE 0
7 False 14685 MIDDLE 0
8 False 14227 BOTTOM 0
9 False 12363 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 6673 3074 3085 3153 3006 1038 3340
1 0 3020 3157 3152 1058 3100 0 3364
2 0 1058 6656 3157 3020 4629 1058 3363
3 0 3508 6673 3006 3072 6676 3031 3340
4 0 6655 3020 3853 3089 4630 0 3364
5 1 3047 6631 1054 3742 4401 0 3340
6 1 6691 3142 3117 6676 3074 3057 3364
7 1 3040 6653 3158 4629 3011 1028 3340
8 1 3074 3508 3042 6691 3158 0 3363
9 1 3857 6693 3142 3047 3508 1053 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 3 3 1
1 1 5 2 1
2 1 7 6 1
3 3 19 9 4
4 1 5 2 1
5 1 5 2 1
6 3 12 4 2
7 2 5 2 1
8 1 5 2 2
9 2 10 5 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 1318 84266 10850
1 491 122642 11641
2 1013 177707 18512
3 702 14060 3331
4 338 40645 16568
5 914 1487 300
6 437 36680 7137
7 1215 193441 23744
8 939 19796 8905
9 760 139 139
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 7972 30 0 0
1 12505 139 0 0
2 7515 16 0 0
3 8420 36 0 0
4 5146 0 0 0
5 10948 4 1 0
6 12260 148 1 0
7 12193 4 1 0
8 8065 12 1 0
9 19210 13 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 153804
1 0 2 32872
2 0 3 18177
3 0 4 201674
4 0 5 2289
5 0 6 108286
6 0 7 170447
7 0 8 14171
8 0 9 161897
9 0 10 83988
physicalDamageDealtToChampions physicalDamageTaken role \
0 12120 21227 SOLO
1 2136 32002 NONE
2 622 10072 SOLO
3 28491 26333 CARRY
4 260 13624 SUPPORT
5 9335 13285 SOLO
6 9407 25862 NONE
7 1278 10946 SOLO
8 29592 14667 CARRY
9 23835 13442 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 12 5 4 342
1 5 4 25 11 190
2 3 4 3 12 325
3 7 4 6 7 165
4 5 4 5 14 420
5 6 14 3 4 169
6 5 14 20 11 42
7 4 4 4 12 213
8 3 4 4 7 283
9 6 4 7 14 235
summonerName teamEarlySurrendered teamId teamPosition \
0 Variable XD False 100 TOP
1 Phorist False 100 JUNGLE
2 Rotome False 100 MIDDLE
3 Diddlematimbers False 100 BOTTOM
4 DAREtoStayHigh False 100 UTILITY
5 Ragingbull50 False 200 TOP
6 ITB Struggle Bug False 200 JUNGLE
7 s v d g v n g False 200 MIDDLE
8 YungDippa False 200 BOTTOM
9 Cya in Lumby False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 6 2330 253258 22970
1 14 2330 174913 15492
2 36 2330 198479 19480
3 4 2330 240029 32908
4 21 2330 49184 21446
5 39 2330 113589 12487
6 28 2330 223920 17653
7 22 2330 210515 25023
8 1 2330 182039 38731
9 26 2330 96496 24748
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 30419 12708 282 219
1 45116 20102 37 464
2 18697 4243 233 118
3 35960 8267 215 66
4 19595 1322 31 132
5 26766 1980 165 229
6 40396 16496 72 831
7 23667 4091 269 325
8 23672 4575 197 12
9 34144 2600 61 41
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 200 5 15189
1 241 1 19398
2 112 1 2595
3 199 3 24294
4 339 1 6249
5 137 1 3815
6 337 1 16792
7 303 5 2903
8 198 3 346
9 443 1 12368
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 1219 1 4
1 1714 608 2 4
2 344 1109 2 4
3 1086 1206 3 4
4 4617 824 0 4
5 2851 2532 1 8
6 1108 2273 1 8
7 0 526 0 8
8 234 939 2 8
9 774 1490 0 8
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 15 0 0 9 True
1 32 9 2 8 True
2 11 1 1 8 True
3 43 1 6 14 True
4 73 1 6 28 True
5 32 1 3 13 False
6 21 0 4 7 False
7 26 0 1 15 False
8 15 3 2 9 False
9 64 3 5 28 False ,
assists baronKills bountyLevel champLevel championName \
0 1 0 0 9 Irelia
1 3 0 0 8 Sejuani
2 1 0 0 7 Braum
3 0 0 0 8 Jinx
4 0 0 1 10 Zyra
5 2 0 0 9 Taliyah
6 0 0 5 12 Teemo
7 4 0 0 10 Pantheon
8 3 0 3 9 Sivir
9 6 0 1 8 Senna
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 497 2558 497
1 0 4094 0
2 0 574 0
3 0 2100 0
4 728 838 728
5 538 5776 538
6 3334 3334 3334
7 529 1928 529
8 2029 2029 2029
9 950 950 950
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 1 0 False False
1 2 2 1 False False
2 3 2 0 False False
3 4 1 0 False False
4 3 3 0 False False
5 1 1 1 False False
6 3 0 0 False True
7 1 2 0 False False
8 0 2 0 False False
9 1 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 5297 TOP 0
1 True 4436 JUNGLE 0
2 True 2911 UTILITY 0
3 True 4822 BOTTOM 0
4 True 4731 MIDDLE 0
5 True 5834 JUNGLE 0
6 True 8186 TOP 0
7 True 4973 MIDDLE 0
8 True 5987 BOTTOM 0
9 True 4804 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 2033 1033 3153 1001 0 0 3340
1 0 3105 2031 6660 1001 0 0 3340
2 0 3859 1042 3047 0 0 0 3340
3 0 1055 6670 3006 1037 1018 0 3340
4 0 1056 1001 3802 3108 0 2055 3340
5 0 6656 2031 0 1052 3020 0 3340
6 0 6653 3115 0 3006 0 0 3340
7 0 3134 2033 2055 3111 1053 0 3340
8 0 0 3004 3158 1036 0 0 3340
9 0 3864 6692 2422 0 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 2 0 1
1 0 1 0 1
2 0 0 0 0
3 0 2 0 1
4 0 1 0 1
5 1 5 5 1
6 1 8 5 1
7 1 2 2 1
8 1 3 3 1
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 177 3206 995
1 508 14087 1130
2 465 2692 1618
3 278 692 201
4 277 29826 3860
5 842 50897 4339
6 207 41056 6521
7 632 677 57
8 0 0 0
9 447 0 0
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 6106 0 0 0
1 3971 60 0 0
2 897 0 0 0
3 100 0 0 0
4 1040 0 0 0
5 2424 68 0 0
6 1330 12 0 0
7 1945 0 0 0
8 641 0 0 0
9 2005 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 40448
1 0 2 20514
2 0 3 3163
3 0 4 36725
4 0 5 6379
5 0 6 8082
6 0 7 20897
7 0 8 31684
8 0 9 55213
9 0 10 10183
physicalDamageDealtToChampions physicalDamageTaken role \
0 2655 3891 SUPPORT
1 1599 5861 SUPPORT
2 398 5251 SUPPORT
3 4720 6990 SUPPORT
4 391 2449 SUPPORT
5 354 7160 SUPPORT
6 2857 4801 SUPPORT
7 3173 3464 SUPPORT
8 6805 3169 DUO
9 3652 2711 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 12 2 4 267
1 5 11 1 4 73
2 1 14 1 4 355
3 2 14 2 4 231
4 3 14 2 4 356
5 6 11 2 4 156
6 2 4 3 14 252
7 2 4 2 14 325
8 1 4 2 7 168
9 2 4 1 14 127
summonerName teamEarlySurrendered teamId teamPosition \
0 BorisBetrayedMe False 100 TOP
1 FleurDeMur False 100 JUNGLE
2 GrabErByTheSushi False 100 UTILITY
3 xSniffie False 100 BOTTOM
4 PlantsAreFriends False 100 MIDDLE
5 Kûsh False 200 JUNGLE
6 StalwartHide False 200 TOP
7 Rotome False 200 MIDDLE
8 Coolgum15 False 200 BOTTOM
9 Alece False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 5 916 46416 3650
1 9 916 37800 2909
2 9 916 9563 2042
3 10 916 44657 5171
4 10 916 36673 4719
5 5 916 62291 4897
6 13 916 62282 9707
7 8 916 32526 3395
8 0 916 55213 6805
9 21 916 10271 3740
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 10402 715 103 22
1 10036 4029 5 167
2 6149 399 17 43
3 7178 1147 97 42
4 3577 120 80 130
5 9954 5166 13 307
6 6202 230 106 165
7 5783 679 69 18
8 3811 1155 108 0
9 4827 2480 8 73
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 136 1 2762
1 37 2 3198
2 46 1 3707
3 72 1 7240
4 43 1 467
5 30 1 3312
6 41 1 328
7 27 1 164
8 0 2 0
9 14 2 88
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 404 0 2
1 180 204 0 2
2 26 0 0 2
3 250 88 0 2
4 467 88 0 2
5 204 369 0 0
6 328 70 1 0
7 164 374 0 0
8 0 0 0 0
9 88 110 1 0
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 9 2 1 5 False
1 15 2 2 7 False
2 13 2 1 8 False
3 10 1 1 5 False
4 15 4 2 7 False
5 11 1 3 6 True
6 7 0 0 4 True
7 12 3 2 4 True
8 10 2 0 5 True
9 13 0 3 7 True ,
assists baronKills bountyLevel champLevel championName \
0 7 0 6 18 Fiora
1 14 0 0 16 Vi
2 8 0 8 17 Ahri
3 11 0 0 15 Lucian
4 12 1 2 16 Leona
5 7 0 0 16 Ryze
6 7 0 0 15 MasterYi
7 11 0 0 15 Pantheon
8 7 0 0 15 Jinx
9 12 0 0 13 Lux
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 10058 15079 10058
1 733 19135 733
2 3947 11124 3947
3 4976 8313 4976
4 3428 11809 3428
5 1357 7745 1357
6 0 27874 0
7 784 5594 784
8 2713 9169 2713
9 316 2559 316
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 4 1 1 False False
1 8 1 2 False False
2 4 2 0 False True
3 7 0 0 False False
4 3 2 0 False False
5 7 7 0 False False
6 11 3 1 False False
7 9 2 0 False False
8 7 0 1 False False
9 4 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 True False False
3 False True False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 16522 TOP 1
1 False 11534 JUNGLE 0
2 False 15470 MIDDLE 0
3 False 12572 BOTTOM 1
4 False 11633 UTILITY 0
5 False 12272 TOP 0
6 False 14676 JUNGLE 0
7 False 11402 MIDDLE 0
8 False 12999 BOTTOM 0
9 False 8158 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 6631 3042 3047 6609 3748 3044 3340
1 0 6632 2031 3047 6333 3067 3133 3340
2 0 3020 6656 3157 4629 4630 1058 3340
3 0 1055 3508 6673 3006 3094 3086 3340
4 0 3857 3068 3050 3075 3047 0 3364
5 2 3040 3110 3047 6655 1011 1052 3364
6 2 6691 6675 3006 6676 1018 1038 3364
7 2 6692 3053 0 3111 3071 0 3363
8 2 1055 6672 3006 3085 3031 1038 3340
9 2 3853 6655 3020 3165 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 3 12 6 2
1 0 2 0 1
2 3 13 8 2
3 1 5 2 1
4 3 6 2 1
5 1 2 2 2
6 2 11 5 2
7 1 5 2 1
8 2 6 2 1
9 0 2 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 1088 3705 1664
1 571 9138 509
2 764 95788 17227
3 724 7544 2315
4 546 41737 6142
5 510 189925 15343
6 550 5235 0
7 420 2181 1417
8 696 517 307
9 753 37781 14100
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 8123 24 0 1
1 7385 158 0 1
2 4331 16 0 0
3 6462 4 0 0
4 7381 4 0 0
5 4530 28 1 0
6 9389 150 1 0
7 6458 8 1 0
8 7061 36 1 0
9 3054 3 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 182161
1 1 2 142367
2 0 3 21203
3 0 4 96924
4 1 5 15593
5 0 6 10757
6 0 7 179062
7 0 8 110204
8 0 9 188149
9 0 10 2674
physicalDamageDealtToChampions physicalDamageTaken role \
0 15656 15833 NONE
1 12156 19039 NONE
2 1286 13686 SOLO
3 10976 12865 CARRY
4 2464 12599 SUPPORT
5 451 12934 SOLO
6 14895 20639 NONE
7 16161 16908 SOLO
8 16365 9841 CARRY
9 753 5909 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 5 4 5 14 297
1 17 11 5 4 220
2 3 4 7 14 495
3 5 4 6 7 198
4 4 4 5 14 262
5 1 12 5 4 199
6 4 4 11 11 252
7 6 4 3 14 325
8 6 4 5 7 168
9 6 4 6 3 127
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 Derben False 100 TOP 9
1 NaughtButSocks False 100 JUNGLE 27
2 Ila False 100 MIDDLE 26
3 Pòppy False 100 BOTTOM 0
4 Mommy Leona False 100 UTILITY 45
5 BF109G False 200 TOP 18
6 StalwartHide False 200 JUNGLE 7
7 Rotome False 200 MIDDLE 21
8 Coolgum15 False 200 BOTTOM 12
9 Alece False 200 UTILITY 58
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 2127 206784 27143
1 2127 165898 13394
2 2127 168201 23934
3 2127 104469 13291
4 2127 65751 9812
5 2127 200690 15802
6 2127 202675 19126
7 2127 114232 18427
8 2127 204969 19253
9 2127 40455 14854
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 25564 12185 239 289
1 29136 9265 16 234
2 18974 4765 195 104
3 21022 5840 147 0
4 21045 3008 65 96
5 22557 3578 214 606
6 33857 11147 54 124
7 28400 5212 155 35
8 18757 2982 223 31
9 10331 411 15 251
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 174 6 20916
1 224 1 14393
2 113 1 51210
3 199 3 0
4 68 1 8420
5 223 1 7
6 380 1 18376
7 277 1 1846
8 167 3 16303
9 91 1 0
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 9822 1607 3 3
1 728 2711 1 3
2 5421 957 0 3
3 0 1694 3 3
4 1205 1064 3 3
5 7 5092 2 10
6 4230 3828 0 10
7 848 5033 0 10
8 2580 1855 1 10
9 0 1367 0 10
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 19 1 2 12 True
1 26 1 3 10 True
2 32 2 5 14 True
3 10 0 2 5 True
4 71 2 7 26 True
5 29 7 5 11 False
6 27 3 6 4 False
7 39 2 2 10 False
8 19 0 3 12 False
9 52 0 5 27 False ,
assists baronKills bountyLevel champLevel championName \
0 3 0 0 13 Gnar
1 8 0 1 13 Taliyah
2 6 0 0 12 Vayne
3 4 0 8 13 KogMaw
4 19 0 1 12 Rakan
5 1 0 0 13 Kayle
6 5 0 0 10 XinZhao
7 1 0 0 13 Diana
8 7 0 0 10 Kalista
9 3 0 2 11 Volibear
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 507 13907 507
1 305 3867 305
2 1219 2794 1219
3 5869 7898 5869
4 1391 1664 1391
5 1535 1535 1535
6 0 4404 0
7 0 420 0
8 1064 1064 1064
9 0 1921 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 1 1 0 False False
1 4 3 1 False True
2 7 3 0 False False
3 3 0 0 False False
4 3 2 0 False False
5 2 1 0 False False
6 10 0 1 False False
7 5 2 0 False False
8 12 2 0 False False
9 5 3 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 True False False
2 True False False
3 True False False
4 False True False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 6787 TOP 0
1 True 10310 JUNGLE 0
2 True 7280 MIDDLE 0
3 True 11839 BOTTOM 0
4 True 7186 UTILITY 0
5 True 6799 TOP 0
6 True 6931 JUNGLE 0
7 True 6977 MIDDLE 0
8 True 6710 BOTTOM 0
9 True 7930 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 6631 1055 0 1001 0 1033 3340
1 0 6653 2031 3020 4629 1026 0 3364
2 0 1055 6673 1043 3006 1037 0 3340
3 0 6672 1055 3006 3124 3085 0 3340
4 0 3853 2065 0 3158 0 3050 3364
5 0 1054 3006 1082 3115 4635 0 3363
6 0 3006 2031 3115 1026 4635 0 3340
7 0 1056 3057 3152 3020 1026 0 3340
8 0 1055 6673 3006 3086 1042 0 3340
9 0 3855 6664 3075 0 3111 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 1 0 1
1 3 11 4 2
2 1 3 2 1
3 3 17 8 3
4 0 2 0 1
5 0 0 0 0
6 1 5 2 1
7 1 4 2 1
8 0 3 0 1
9 1 6 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 937 4650 327
1 447 89262 14120
2 449 0 0
3 372 17532 9381
4 394 7628 4164
5 931 43331 2592
6 240 18405 2323
7 641 52781 10313
8 380 876 876
9 700 9341 3645
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 3765 8 0 0
1 5240 105 0 0
2 5914 8 0 0
3 3570 0 0 0
4 3207 0 0 0
5 2420 0 0 0
6 8521 77 0 0
7 4663 0 0 0
8 6106 0 0 0
9 6827 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 74310
1 0 2 7549
2 0 3 42086
3 0 4 64880
4 0 5 3442
5 0 6 22418
6 0 7 50697
7 0 8 9019
8 0 9 36298
9 0 10 9691
physicalDamageDealtToChampions physicalDamageTaken role \
0 4888 4456 SOLO
1 585 9505 NONE
2 9416 9300 SOLO
3 9125 5363 CARRY
4 1641 7021 SUPPORT
5 657 5505 SOLO
6 7950 13925 NONE
7 1788 7261 SOLO
8 6295 10459 CARRY
9 3085 6006 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 0 12 2 4 31
1 11 11 3 4 420
2 3 4 3 12 35
3 3 7 2 4 325
4 4 14 2 4 302
5 1 4 2 12 325
6 8 11 3 4 318
7 2 4 4 14 248
8 3 4 4 7 194
9 5 14 3 4 301
summonerName teamEarlySurrendered teamId teamPosition \
0 xDEVILCRIx False 100 TOP
1 CdogZelda False 100 JUNGLE
2 ham lovers False 100 MIDDLE
3 nsonkyle5 False 100 BOTTOM
4 WhatAreYouBlind False 100 UTILITY
5 Rotome False 200 TOP
6 Foo Dogs False 200 JUNGLE
7 Ana WaffleCakes False 200 MIDDLE
8 Foo Sharks False 200 BOTTOM
9 MinsterOfJesus False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 16 1291 87837 5216
1 17 1291 102541 15776
2 7 1291 54400 11826
3 9 1291 96012 20489
4 24 1291 11487 6221
5 5 1291 65750 3249
6 19 1291 72640 10921
7 6 1291 64650 12455
8 5 1291 37174 7171
9 19 1291 24683 7324
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 8561 1811 138 245
1 14969 5421 26 362
2 15741 2294 105 25
3 9221 3592 149 112
4 10446 3611 2 48
5 8065 1016 167 216
6 23420 10016 8 308
7 13366 596 124 44
8 18191 2628 90 24
9 14533 1339 41 94
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 35 1 8876
1 99 1 5729
2 202 1 12314
3 63 3 13598
4 65 5 416
5 35 2 0
6 228 1 3538
7 166 1 2849
8 253 2 0
9 137 1 5649
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 340 0 1
1 1069 224 0 1
2 2410 526 0 1
3 1982 288 2 1
4 416 218 1 1
5 0 138 0 3
6 648 973 0 3
7 354 1441 0 3
8 0 1625 0 3
9 594 1699 0 3
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 18 1 3 6 True
1 28 3 3 6 True
2 16 3 0 9 True
3 13 2 5 5 True
4 26 2 2 10 True
5 7 1 1 6 False
6 6 0 0 3 False
7 12 2 2 8 False
8 12 2 1 7 False
9 19 5 3 13 False ,
assists baronKills bountyLevel champLevel championName \
0 2 1 4 17 Jax
1 8 0 0 14 Shyvana
2 23 0 0 17 Lux
3 19 0 5 17 MissFortune
4 33 0 0 15 Seraphine
5 4 0 0 17 Vladimir
6 7 1 0 15 DrMundo
7 8 0 0 16 Annie
8 3 0 0 14 Draven
9 14 0 0 14 Rell
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 10214 16828 10214
1 1929 24864 1929
2 2593 8588 2593
3 6893 13439 6893
4 878 4285 878
5 4418 11661 4418
6 828 28102 828
7 430 5934 430
8 714 7079 714
9 313 367 313
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 1 0 False False
1 7 2 0 False False
2 3 3 1 False False
3 5 2 1 False True
4 4 1 1 True False
5 5 1 0 False False
6 10 3 2 False False
7 7 0 0 False False
8 12 1 0 False False
9 13 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 15919 TOP 1
1 False 10758 JUNGLE 0
2 False 12430 MIDDLE 0
3 False 18864 BOTTOM 1
4 False 10996 UTILITY 1
5 False 17885 TOP 0
6 False 11873 JUNGLE 0
7 False 10167 MIDDLE 0
8 False 10875 BOTTOM 0
9 False 8003 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 2033 3153 3078 3091 3111 3044 3340
1 0 3115 2031 4636 3020 3067 3108 3364
2 0 1056 4629 1082 3020 3165 6655 3363
3 0 3071 6692 3033 6676 6694 3158 3340
4 0 6617 3853 3158 6616 3011 3067 3364
5 3 3135 3157 3158 4629 4636 3089 3340
6 3 3111 6664 3742 3065 3082 1029 3364
7 3 3157 6655 3020 3165 0 0 3340
8 3 6692 2031 6676 3111 6695 0 3340
9 3 3857 3190 3050 3111 3801 1006 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 12 7 2
1 1 5 2 1
2 1 5 4 1
3 4 21 9 3
4 1 3 3 1
5 3 15 6 2
6 2 5 2 1
7 0 3 0 1
8 0 3 0 1
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 499 41027 6526
1 949 122596 14575
2 949 104807 18747
3 657 7172 1245
4 1403 42077 10004
5 1173 197564 38513
6 347 106424 12884
7 680 79754 22702
8 270 198 198
9 301 15089 6424
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 19255 46 0 0
1 16142 137 0 0
2 10601 8 0 0
3 24114 24 0 0
4 14033 8 0 1
5 10143 7 1 0
6 11566 141 1 0
7 12286 0 1 0
8 8739 8 1 0
9 10684 0 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 138151
1 0 2 40255
2 0 3 14845
3 1 4 161777
4 0 5 5110
5 0 6 16513
6 0 7 47502
7 0 8 11093
8 0 9 115340
9 0 10 8584
physicalDamageDealtToChampions physicalDamageTaken role \
0 17242 15909 DUO
1 2589 21598 NONE
2 1031 3222 DUO
3 38432 14076 CARRY
4 2014 6194 SUPPORT
5 1902 23982 CARRY
6 4606 31914 SUPPORT
7 565 8600 SOLO
8 14106 17921 CARRY
9 2828 17068 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 7 14 3 4 164
1 19 11 5 4 168
2 4 4 4 21 200
3 7 4 6 7 181
4 5 4 5 14 128
5 4 4 6 12 252
6 4 4 18 11 325
7 6 4 5 14 127
8 7 7 4 4 121
9 13 4 7 3 47
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 DabberDanMan False 100 TOP 14
1 GetStuffed False 100 JUNGLE 3
2 Oreo Swagwagon False 100 MIDDLE 45
3 PaulTheWall False 100 BOTTOM 18
4 ºTalon False 100 UTILITY 31
5 StalwartHide False 200 TOP 4
6 Rotome False 200 JUNGLE 20
7 Alece False 200 MIDDLE 32
8 G0T AXES False 200 BOTTOM 8
9 Tooníe False 200 UTILITY 39
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 2120 187215 25820
1 2120 175904 18263
2 2120 125660 20605
3 2120 176713 40242
4 2120 47836 12667
5 2120 216872 40491
6 2120 170266 18804
7 2120 95470 24231
8 2120 116009 14686
9 2120 30638 9252
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 35765 8630 173 175
1 38521 13842 18 143
2 14189 2081 143 476
3 38898 16102 191 399
4 20504 13935 36 207
5 35488 36510 224 124
6 45205 23423 29 392
7 21424 2587 139 170
8 27133 7057 175 77
9 28847 2678 38 92
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 210 1 8036
1 262 1 13052
2 113 1 6007
3 181 4 7764
4 177 5 648
5 238 1 2795
6 307 1 16340
7 241 1 4624
8 299 3 470
9 340 5 6964
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 2051 601 7 2
1 1098 780 0 2
2 827 365 1 2
3 565 707 2 2
4 648 277 0 2
5 75 1362 2 11
6 1312 1724 0 11
7 964 538 0 11
8 380 471 0 11
9 0 1093 0 11
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 29 1 0 11 True
1 35 2 3 7 True
2 37 3 4 13 True
3 22 2 1 14 True
4 47 1 3 23 True
5 23 1 2 12 False
6 33 3 7 4 False
7 17 0 1 10 False
8 14 1 3 3 False
9 68 2 9 23 False ,
assists baronKills bountyLevel champLevel championName \
0 9 0 0 18 Gangplank
1 9 1 0 18 Garen
2 7 0 0 18 Ezreal
3 14 0 0 18 Zyra
4 23 0 0 17 Ivern
5 10 0 1 18 Urgot
6 29 1 0 18 Rammus
7 19 0 0 18 Kayle
8 13 1 0 18 Jhin
9 27 0 0 18 Senna
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 9049 11518 9049
1 2409 24104 2409
2 2464 4940 2464
3 5786 29943 5786
4 3629 12843 3629
5 1449 18607 1449
6 1594 12174 1594
7 1448 20655 1448
8 2045 11761 2045
9 6193 15365 6193
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 14 3 0 False False
1 8 1 3 False False
2 11 0 0 False False
3 8 5 0 False False
4 7 13 0 False False
5 12 2 0 False False
6 3 0 3 False False
7 6 2 1 False False
8 11 1 0 True False
9 9 2 0 False True
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 23135 TOP 3
1 False 18772 JUNGLE 2
2 False 13687 MIDDLE 2
3 False 20421 BOTTOM 1
4 False 13641 UTILITY 0
5 False 18321 TOP 0
6 False 16108 JUNGLE 0
7 False 25325 MIDDLE 0
8 False 20214 BOTTOM 0
9 False 16989 UTILITY 1
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 3031 3078 3036 3074 6676 3047 3340
1 1 3071 6631 3047 3053 3742 3082 3340
2 1 3165 3020 4636 3135 4628 1052 3340
3 1 3089 4637 3135 1082 6653 3020 3363
4 1 3853 3222 4643 6617 6616 3158 3364
5 8 3047 6630 3075 4401 3053 3109 3364
6 8 3742 6664 3075 3047 3001 1057 3364
7 8 3041 3006 3115 4633 3102 3089 3363
8 8 3031 3094 6671 3009 6676 3036 3340
9 8 6672 3864 3124 3006 3094 3072 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 9 0 1
1 4 10 2 2
2 2 8 4 1
3 3 11 6 2
4 0 2 0 1
5 2 9 3 2
6 1 6 5 1
7 2 14 10 2
8 3 13 4 3
9 2 6 2 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 402 35746 13417
1 774 27091 1461
2 534 52145 38542
3 1130 296751 74463
4 1350 45145 7778
5 479 6861 713
6 1696 151737 28423
7 1317 373220 38309
8 633 24916 5976
9 604 5864 1007
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 18043 49 1 0
1 21250 212 1 0
2 18810 0 1 0
3 15861 76 1 0
4 6555 4 1 0
5 37678 20 0 0
6 27090 116 0 0
7 24137 12 0 0
8 31526 32 0 1
9 18080 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 371513
1 0 2 266473
2 0 3 61344
3 0 4 22507
4 0 5 14429
5 0 6 255730
6 0 7 33709
7 0 8 70528
8 0 9 308532
9 0 10 155155
physicalDamageDealtToChampions physicalDamageTaken role \
0 29163 41411 SOLO
1 18365 54633 NONE
2 4729 17209 SOLO
3 1877 18156 CARRY
4 3902 19443 SUPPORT
5 23666 29225 SOLO
6 4421 23874 NONE
7 5971 10185 SOLO
8 40663 14848 CARRY
9 30965 14348 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 8 12 8 4 105
1 30 11 10 6 405
2 10 14 7 4 269
3 7 4 9 14 115
4 5 3 8 4 348
5 8 4 4 12 181
6 9 6 31 11 252
7 4 4 3 12 325
8 8 4 8 7 405
9 8 3 6 4 539
summonerName teamEarlySurrendered teamId teamPosition \
0 Victoria03 False 100 TOP
1 Sacri False 100 JUNGLE
2 NazguI False 100 MIDDLE
3 Les Def False 100 BOTTOM
4 themathman False 100 UTILITY
5 Interstella 5555 False 200 TOP
6 StalwartHide False 200 JUNGLE
7 Rotome False 200 MIDDLE
8 G Eazy False 200 BOTTOM
9 Khaled False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 26 3011 428631 51210
1 55 3011 310839 26387
2 0 3011 117360 45573
3 106 3011 335730 79376
4 69 3011 65819 12766
5 29 3011 284947 25919
6 82 3011 197700 34904
7 10 3011 451349 45638
8 40 3011 335563 47138
9 49 3011 185688 35325
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 61962 20234 312 591
1 79648 25893 60 448
2 36790 6778 131 2
3 35095 9698 237 576
4 26684 17620 53 446
5 72815 13982 234 267
6 58790 21155 63 1048
7 36190 24583 448 492
8 50345 15726 252 335
9 34496 19432 99 250
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 714 1 21373
1 318 1 17274
2 451 1 3870
3 291 1 16471
4 227 5 6245
5 474 1 22354
6 126 5 12253
7 213 5 7600
8 452 3 2113
9 308 5 24668
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 8629 2507 4 6
1 6560 3765 1 6
2 2300 770 0 6
3 3035 1077 3 6
4 1085 685 2 6
5 1539 5911 0 11
6 2059 7825 0 11
7 1356 1867 1 11
8 497 3970 1 11
9 3352 2066 2 11
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 28 5 0 15 False
1 32 3 4 14 False
2 26 0 0 16 False
3 74 5 7 19 False
4 120 12 8 53 False
5 28 2 5 10 True
6 20 0 3 1 True
7 36 2 8 15 True
8 24 1 5 12 True
9 89 3 8 50 True ,
assists baronKills bountyLevel champLevel championName \
0 2 0 0 14 Quinn
1 6 0 0 14 Kayn
2 6 0 0 14 Yasuo
3 3 0 0 13 Samira
4 6 0 0 11 Ivern
5 6 0 5 18 Yone
6 22 0 0 16 Nunu
7 5 0 7 16 Kayle
8 3 0 1 12 Kaisa
9 14 0 1 13 Morgana
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 7562 7562 7562
1 0 16781 0
2 417 417 417
3 663 663 663
4 0 0 0
5 5015 9652 5015
6 2767 17523 2767
7 8968 14163 8968
8 2984 7880 2984
9 1532 4866 1532
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 12 0 0 False False
1 7 0 0 False True
2 8 1 0 False False
3 7 0 0 True False
4 7 6 0 True False
5 5 1 0 False False
6 2 0 3 False False
7 3 2 1 False False
8 3 0 0 False False
9 4 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 True False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 11519 TOP 0
1 False 9910 JUNGLE 0
2 False 9800 MIDDLE 0
3 False 9144 BOTTOM 0
4 False 7565 UTILITY 0
5 False 15863 TOP 0
6 False 11589 JUNGLE 0
7 False 13907 MIDDLE 0
8 False 10421 BOTTOM 2
9 False 7871 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 2 3153 6672 3006 6676 0 0 3340
1 2 6693 1036 3158 3179 3134 1028 3363
2 2 3031 3006 6673 0 0 1055 3340
3 2 1055 6673 3006 6676 3123 0 3340
4 2 6617 3853 3158 6616 1052 0 3364
5 0 1055 3072 3006 6673 3031 1036 3340
6 0 3068 3742 3047 3076 1028 0 3340
7 0 1054 3006 3115 4633 1082 3191 3363
8 0 6671 1055 3006 6676 3086 1042 3363
9 0 3853 3020 6653 3191 1052 2424 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 6 2 1
1 1 3 2 2
2 1 2 2 1
3 0 3 0 1
4 1 3 2 1
5 3 15 6 1
6 1 2 2 1
7 3 13 7 4
8 2 8 4 2
9 1 3 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 409 77 77
1 657 8629 1989
2 805 13526 1637
3 656 8177 2779
4 667 5437 4232
5 384 33683 7285
6 728 62361 9545
7 823 102752 14108
8 936 8124 3128
9 655 28022 8997
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 9043 0 1 0
1 8086 139 1 0
2 10608 8 1 0
3 11421 0 1 0
4 6911 0 1 0
5 1940 32 0 0
6 4988 124 0 0
7 1712 16 0 0
8 2198 4 0 0
9 2081 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 125711
1 0 2 130015
2 0 3 120924
3 0 4 71895
4 0 5 4128
5 0 6 190222
6 0 7 26498
7 0 8 39222
8 0 9 75177
9 0 10 2695
physicalDamageDealtToChampions physicalDamageTaken role \
0 14640 14530 SOLO
1 11017 18019 NONE
2 13864 12873 SOLO
3 13581 10636 CARRY
4 2692 8932 SUPPORT
5 26533 20923 DUO
6 2355 25540 NONE
7 4734 14991 DUO
8 9609 10664 CARRY
9 1055 7482 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 5 14 4 4 190
1 15 11 4 4 75
2 7 14 5 4 169
3 3 4 5 7 210
4 5 4 5 3 110
5 4 4 6 14 251
6 2 4 19 11 168
7 4 4 3 12 324
8 1 7 2 4 63
9 5 14 3 4 158
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 Bueno Brian False 100 TOP 22
1 RexTheLord False 100 JUNGLE 8
2 wildlion1 False 100 MIDDLE 20
3 TrollKing023 False 100 BOTTOM 0
4 PatimusGG False 100 UTILITY 40
5 StalwartHide False 200 TOP 22
6 Coolgum15 False 200 JUNGLE 32
7 Rotome False 200 MIDDLE 9
8 Dublaiar False 200 BOTTOM 1
9 AlexAve False 200 UTILITY 37
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1743 146911 16884
1 1743 152837 13530
2 1743 138309 16974
3 1743 88828 16360
4 1743 9955 7175
5 1743 239076 38730
6 1743 149968 12560
7 1743 144076 19643
8 1743 83825 12923
9 1743 31183 10518
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 25872 2776 186 100
1 28109 11028 43 234
2 25073 5523 177 111
3 22790 5133 151 0
4 16241 2090 8 149
5 23595 6685 221 121
6 31269 20620 32 330
7 18663 7111 212 337
8 13225 4141 135 23
9 10184 1840 8 58
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 379 1 21122
1 208 1 14192
2 268 1 3858
3 219 2 8755
4 212 5 390
5 169 1 15170
6 67 1 61108
7 120 5 2100
8 79 2 522
9 128 5 466
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 2166 2299 2 9
1 524 2003 0 9
2 1473 1590 0 9
3 0 732 0 9
4 250 397 0 9
5 4910 731 2 3
6 660 740 1 3
7 801 1958 5 3
8 184 362 1 3
9 466 620 0 3
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 12 0 1 6 False
1 19 0 8 1 False
2 23 2 2 9 False
3 15 0 3 8 False
4 48 6 5 19 False
5 12 1 1 10 True
6 15 0 2 7 True
7 14 3 1 10 True
8 15 0 0 9 True
9 29 0 1 12 True ,
assists baronKills bountyLevel champLevel championName \
0 3 0 0 16 Sett
1 9 0 0 14 Nunu
2 4 0 0 16 Kayle
3 8 0 0 14 Jhin
4 4 0 2 13 Lulu
5 11 0 0 16 Aatrox
6 5 1 0 15 MasterYi
7 5 0 0 16 Cassiopeia
8 6 0 0 16 Kaisa
9 10 0 1 13 Thresh
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2592 5465 2592
1 263 13662 263
2 3432 7822 3432
3 0 1101 0
4 0 0 0
5 4016 9624 4016
6 2314 24177 2314
7 2415 3264 2415
8 6601 26224 6601
9 491 1692 491
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 1 0 False False
1 9 1 0 True False
2 6 1 1 False True
3 5 0 0 False False
4 8 0 0 False False
5 3 5 1 False False
6 8 2 3 False False
7 8 2 0 False False
8 2 1 0 False False
9 3 3 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 13220 TOP 0
1 False 9361 JUNGLE 0
2 False 15259 MIDDLE 0
3 False 7797 BOTTOM 0
4 False 7898 UTILITY 0
5 False 10833 TOP 1
6 False 14076 JUNGLE 0
7 False 12896 MIDDLE 1
8 False 15576 BOTTOM 0
9 False 8377 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 2 1055 6693 6676 3006 3072 1038 3340
1 2 3068 2031 3111 3075 3066 0 3340
2 2 3089 3157 3006 4633 3115 0 3363
3 2 6671 3009 1018 3134 1037 1055 3340
4 2 3853 6617 3158 6616 3114 0 3364
5 0 6630 1054 3053 3047 3211 1028 3364
6 0 6691 3006 6676 3153 1031 3133 3340
7 0 3157 1058 1058 3116 6655 3070 3340
8 0 6671 2420 3046 3031 3006 6676 3363
9 0 3857 3190 3050 3117 3067 2055 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 4 10 3 1
1 0 0 0 0
2 5 11 3 2
3 0 0 0 0
4 1 3 2 1
5 0 1 0 1
6 5 15 4 2
7 2 6 2 2
8 1 10 9 2
9 0 3 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 536 447 0
1 419 63986 7485
2 702 100282 16054
3 895 1560 959
4 375 22598 5235
5 786 0 0
6 452 4783 124
7 494 124622 26535
8 1841 15886 7276
9 846 8560 3986
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 5699 8 1 0
1 9488 130 1 0
2 13684 16 1 0
3 4833 4 1 0
4 5897 0 1 0
5 4171 4 0 0
6 6310 144 0 0
7 11015 12 0 0
8 5839 23 0 0
9 4941 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 133191
1 0 2 25545
2 0 3 35550
3 0 4 60269
4 0 5 3584
5 0 6 108110
6 0 7 137946
7 0 8 8760
8 0 9 186391
9 0 10 7114
physicalDamageDealtToChampions physicalDamageTaken role \
0 28500 22927 SOLO
1 1019 28354 NONE
2 3933 11234 SOLO
3 6429 7571 CARRY
4 1060 11457 SUPPORT
5 11140 18725 SOLO
6 21237 21292 NONE
7 854 13716 SOLO
8 18873 10810 CARRY
9 1147 6953 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 5 4 6 14 251
1 3 4 20 11 168
2 4 4 4 12 324
3 3 7 3 4 63
4 5 4 4 14 127
5 3 12 3 4 288
6 18 11 7 14 355
7 6 6 5 4 57
8 4 7 3 4 267
9 3 4 4 14 96
summonerName teamEarlySurrendered teamId teamPosition \
0 StalwartHide False 100 TOP
1 Coolgum15 False 100 JUNGLE
2 Rotome False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 Alece False 100 UTILITY
5 LiNKLANDiN False 200 TOP
6 3l Vato False 200 JUNGLE
7 iNNovationGecko False 200 MIDDLE
8 Thea ssaulterqfe False 200 BOTTOM
9 Carol19 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 27 2000 141161 31092
1 27 2000 157564 8980
2 8 2000 138153 20687
3 24 2000 62088 7449
4 29 2000 33246 6689
5 13 2000 117725 11140
6 6 2000 166045 26410
7 54 2000 133602 27507
8 2 2000 205732 26517
9 23 2000 20391 5613
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 30138 7492 154 208
1 39992 16675 23 338
2 25465 7861 203 343
3 13358 1838 112 91
4 18207 2544 29 289
5 24127 5531 168 120
6 29707 12632 17 102
7 25032 6954 191 599
8 18025 8940 235 46
9 12107 537 27 60
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 272 1 7521
1 258 1 68033
2 193 5 2321
3 88 2 258
4 228 5 7064
5 116 1 9615
6 236 1 23315
7 231 1 220
8 50 2 3455
9 98 4 4716
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 2592 1511 1 10
1 476 2149 0 10
2 699 546 0 10
3 60 953 0 10
4 394 852 0 10
5 0 1230 1 2
6 5048 2103 0 2
7 118 299 1 2
8 367 1376 2 2
9 480 211 1 2
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 30 1 4 12 False
1 23 1 2 9 False
2 19 1 2 8 False
3 16 0 1 8 False
4 36 0 5 15 False
5 32 5 7 10 True
6 27 2 2 12 True
7 27 2 2 11 True
8 23 2 1 9 True
9 55 4 2 23 True ,
assists baronKills bountyLevel champLevel championName \
0 7 0 0 17 Teemo
1 4 0 0 15 Sion
2 6 0 0 16 Annie
3 3 0 0 14 Kaisa
4 6 0 0 14 Zyra
5 9 0 6 18 Ryze
6 19 0 0 18 Nunu
7 7 0 3 18 Talon
8 7 1 3 16 Jhin
9 23 0 1 16 Maokai
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2976 4665 2976
1 777 16368 777
2 796 10499 796
3 2778 4325 2778
4 1039 2408 1039
5 4702 36407 4702
6 2366 20970 2366
7 6109 19483 6109
8 5244 13704 5244
9 1423 4756 1423
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 11 1 0 False False
1 6 2 0 False False
2 14 0 0 False False
3 9 1 0 False False
4 10 0 0 False False
5 6 0 0 False False
6 5 0 4 True False
7 3 0 1 False True
8 5 0 0 False False
9 8 5 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 True False False
7 False False False
8 True False False
9 False True False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 13050 TOP 0
1 False 11999 JUNGLE 0
2 False 13687 MIDDLE 0
3 False 10579 BOTTOM 0
4 False 10048 UTILITY 0
5 False 16871 TOP 0
6 False 14587 JUNGLE 0
7 False 15566 MIDDLE 0
8 False 15793 BOTTOM 0
9 False 11295 UTILITY 1
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 6653 2033 3020 4637 3089 3916 3340
1 1 6662 3142 0 3111 3076 6676 3340
2 1 3020 6655 2420 3135 3089 3108 3364
3 1 1055 3006 6676 6672 3086 1036 3340
4 1 3853 6653 3116 3158 1011 1052 3364
5 0 3040 6656 1058 3158 4629 3102 3364
6 0 3111 4401 3068 3001 3742 1028 3340
7 0 6693 3142 3111 3814 6694 3077 3340
8 0 6671 3009 6676 3094 3036 1031 3340
9 0 4005 3857 3020 4637 2055 4401 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 7 3 1
1 2 6 3 2
2 1 7 3 2
3 0 3 0 1
4 1 4 3 1
5 2 11 6 2
6 0 4 0 1
7 3 14 5 1
8 4 18 6 2
9 0 3 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 655 120998 34122
1 709 41741 2452
2 365 121204 23877
3 486 5724 2224
4 424 68647 29427
5 674 282709 32607
6 583 84295 9878
7 1336 0 0
8 663 6422 2524
9 498 47875 17753
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 20579 9 1 0
1 16641 137 1 0
2 10348 18 1 0
3 6433 3 1 0
4 11227 4 1 0
5 21785 30 0 0
6 19122 147 0 0
7 14918 4 0 0
8 18107 12 0 0
9 21617 4 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 29851
1 0 2 152730
2 0 3 9773
3 0 4 112410
4 0 5 2732
5 0 6 13756
6 0 7 31395
7 0 8 159548
8 0 9 102115
9 0 10 8756
physicalDamageDealtToChampions physicalDamageTaken role \
0 3539 11801 SOLO
1 13029 20621 DUO
2 815 16882 DUO
3 9208 13495 DUO
4 862 9428 DUO
5 897 10518 SOLO
6 1935 29238 NONE
7 27409 7416 SOLO
8 20755 4011 CARRY
9 1753 15816 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 5 4 7 14 247
1 13 11 2 4 264
2 5 14 4 4 182
3 2 4 2 7 120
4 4 4 5 14 178
5 5 4 6 12 251
6 2 4 22 11 168
7 4 4 8 14 126
8 4 7 3 4 63
9 5 4 4 14 324
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 Jobili False 100 TOP 45
1 theRytex False 100 JUNGLE 34
2 guacqt False 100 MIDDLE 26
3 Fledge8 False 100 BOTTOM 0
4 lalaland1121 False 100 UTILITY 66
5 StalwartHide False 200 TOP 37
6 Coolgum15 False 200 JUNGLE 29
7 Alece False 200 MIDDLE 3
8 Dublaiar False 200 BOTTOM 19
9 Rotome False 200 UTILITY 81
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 2246 155256 39683
1 2246 205981 16568
2 2246 133764 25998
3 2246 125979 11875
4 2246 72356 31265
5 2246 301001 34538
6 2246 202123 12214
7 2246 172116 28087
8 2246 110001 24328
9 2246 61717 19891
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 32976 4247 194 488
1 38292 8016 49 1157
2 27846 930 180 202
3 20657 3845 180 0
4 21231 2324 44 246
5 34587 7696 240 114
6 49835 30052 54 380
7 22840 5311 191 173
8 22337 6945 134 112
9 38783 13480 42 380
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 485 1 4407
1 151 1 11510
2 499 1 2786
3 256 2 7844
4 304 1 976
5 225 1 4534
6 147 1 86433
7 139 1 12567
8 199 3 1463
9 220 5 5085
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 2022 595 0 9
1 1086 1030 2 9
2 1306 615 1 9
3 442 728 0 9
4 976 575 0 9
5 1034 2284 2 3
6 400 1474 2 3
7 677 505 3 3
8 1048 218 0 3
9 384 1350 2 3
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 21 1 1 9 False
1 42 3 0 13 False
2 15 0 0 8 False
3 20 1 2 10 False
4 64 0 2 31 False
5 11 0 0 2 True
6 22 0 1 9 True
7 17 0 1 10 True
8 17 0 3 9 True
9 55 6 4 23 True ,
assists baronKills bountyLevel champLevel championName \
0 9 0 0 15 Gangplank
1 4 1 3 14 MasterYi
2 12 0 13 17 TwistedFate
3 13 0 1 13 Ashe
4 14 0 7 13 Seraphine
5 3 0 0 14 Alistar
6 5 0 0 13 Sejuani
7 4 0 0 14 Talon
8 4 0 0 13 Jhin
9 5 0 0 11 Maokai
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2986 9199 2986
1 4698 51917 4698
2 6214 8491 6214
3 8069 15550 8069
4 1362 7681 1362
5 0 2532 0
6 0 2955 0
7 0 0 0
8 0 245 0
9 0 372 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 0 0 False False
1 6 0 2 False False
2 1 1 0 False True
3 4 0 1 False False
4 0 0 1 False False
5 6 2 0 False False
6 6 1 0 False False
7 8 0 0 False False
8 7 0 0 False False
9 9 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False True False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 10804 TOP 1
1 True 11750 JUNGLE 0
2 True 15467 MIDDLE 0
3 True 11022 BOTTOM 1
4 True 10266 UTILITY 0
5 True 8147 TOP 0
6 True 10401 JUNGLE 0
7 True 8912 MIDDLE 0
8 True 7692 BOTTOM 0
9 True 6224 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 2033 3508 3047 6673 1037 2055 3340
1 0 6672 3153 6677 3006 1042 1018 3340
2 0 6656 3157 3100 3158 3041 2015 3340
3 0 6672 3006 3046 3035 0 0 3363
4 0 3853 6617 3158 6616 3011 3114 3364
5 2 3068 2033 1029 3047 0 3075 3340
6 2 3068 3801 3111 3075 3067 1011 3340
7 2 6693 3111 2031 3814 3134 0 3340
8 2 6671 3009 1018 3134 1037 1055 3340
9 2 4005 3853 3158 2055 1052 1011 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 2 0 1
1 2 8 3 2
2 1 14 13 2
3 1 5 3 2
4 1 7 7 2
5 1 3 2 1
6 3 7 2 1
7 1 3 2 1
8 0 1 0 1
9 0 2 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 474 4618 4198
1 367 6080 155
2 352 117025 24589
3 702 1430 1430
4 0 36003 8019
5 886 67365 10715
6 498 53898 5416
7 375 0 0
8 684 2048 401
9 529 26183 9736
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 9519 8 0 0
1 4307 136 0 0
2 6409 44 0 0
3 5136 18 0 0
4 3785 23 0 0
5 9234 6 0 0
6 9701 120 0 0
7 7798 4 0 0
8 3999 0 0 0
9 9671 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 129947
1 0 2 147027
2 0 3 20564
3 0 4 87331
4 0 5 7484
5 0 6 15757
6 0 7 69035
7 0 8 112321
8 0 9 76142
9 0 10 1914
physicalDamageDealtToChampions physicalDamageTaken role \
0 13912 12234 SOLO
1 10887 18987 NONE
2 1899 9730 SOLO
3 11606 9005 CARRY
4 1145 4592 SUPPORT
5 3063 14330 SOLO
6 7011 19859 NONE
7 11182 9630 SOLO
8 4303 7377 CARRY
9 514 8654 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 5 4 2 12 160
1 4 4 14 11 120
2 5 14 4 4 272
3 2 4 3 7 128
4 0 4 2 14 86
5 4 4 3 12 251
6 4 4 16 11 168
7 4 4 5 14 126
8 2 7 2 4 63
9 2 4 4 3 324
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 Okamakiri False 100 TOP 10
1 Ganjaseed False 100 JUNGLE 6
2 ExcuseMyLag False 100 MIDDLE 55
3 Masaomi False 100 BOTTOM 32
4 Arizhomango False 100 UTILITY 21
5 StalwartHide False 200 TOP 45
6 Coolgum15 False 200 JUNGLE 28
7 Alece False 200 MIDDLE 2
8 Dublaiar False 200 BOTTOM 13
9 Rotome False 200 UTILITY 41
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1747 154142 21198
1 1747 188525 17625
2 1747 141717 27167
3 1747 96238 14727
4 1747 44419 9656
5 1747 85508 13778
6 1747 131144 13806
7 1747 113666 12227
8 1747 91751 4705
9 1747 28544 10697
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 22549 7325 168 239
1 23610 9334 28 183
2 17280 6215 150 214
3 14598 2520 124 514
4 8541 8816 13 149
5 27931 6914 123 207
6 33657 8246 18 323
7 18733 871 175 187
8 12785 1690 153 70
9 19678 1947 12 280
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 168 1 19576
1 159 1 35418
2 16 1 4127
3 133 2 7476
4 0 5 932
5 191 5 2385
6 151 5 8210
7 208 1 1345
8 178 2 13560
9 250 1 447
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 3086 795 0 0
1 6582 315 2 0
2 678 1139 2 0
3 1690 456 5 0
4 492 162 0 0
5 0 4366 0 10
6 1378 4096 0 10
7 1045 1304 0 10
8 0 1409 0 10
9 447 1352 0 10
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 11 3 0 7 True
1 11 0 0 4 True
2 28 1 2 10 True
3 15 0 1 7 True
4 32 0 3 14 True
5 16 2 0 11 False
6 24 1 1 7 False
7 16 0 1 9 False
8 11 0 0 8 False
9 23 4 2 11 False ,
assists baronKills bountyLevel champLevel championName \
0 9 0 0 18 Nasus
1 9 1 3 18 Evelynn
2 8 0 0 18 Tristana
3 14 0 2 18 Pantheon
4 17 0 0 17 Senna
5 6 0 1 18 Yone
6 20 0 0 18 Warwick
7 8 1 0 18 Veigar
8 13 0 0 18 Sivir
9 18 0 0 16 Malphite
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 12211 14801 12211
1 701 23960 701
2 6680 17398 6680
3 5608 10610 5608
4 6043 17359 6043
5 1823 28024 1823
6 509 17828 509
7 1641 20950 1641
8 4283 15156 4283
9 191 3316 191
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 2 0 False False
1 6 3 2 True False
2 7 4 0 False False
3 10 0 0 False True
4 11 2 0 True False
5 8 3 1 False False
6 9 0 2 False False
7 8 2 1 False False
8 12 6 0 False False
9 12 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False True False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 13883 TOP 0
1 False 20819 JUNGLE 0
2 False 14472 MIDDLE 1
3 False 21465 BOTTOM 0
4 False 16534 UTILITY 0
5 False 16420 TOP 0
6 False 17027 JUNGLE 0
7 False 17758 MIDDLE 1
8 False 16465 BOTTOM 0
9 False 12372 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 3075 6632 3111 2055 3065 3110 3340
1 1 3089 4636 3020 3135 3100 3041 3364
2 1 3006 6673 3094 3095 3031 1055 3363
3 1 3153 6693 3142 3508 3036 6695 3364
4 1 3036 3094 3864 6672 3006 6676 3364
5 1 1057 3006 3031 3075 6673 6333 3363
6 1 6632 3047 1057 3748 3075 3065 3340
7 1 3089 6656 3157 3065 3020 4629 3363
8 1 3158 3042 6691 3814 3155 6694 3363
9 1 3190 3050 3860 3075 3047 3110 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 1 4 2 2
1 4 18 7 2
2 0 0 0 0
3 5 17 4 2
4 4 10 3 2
5 0 4 0 1
6 1 11 5 1
7 4 12 4 3
8 2 5 2 1
9 2 8 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 777 27369 5321
1 1096 297429 63710
2 678 44561 1941
3 371 6081 1466
4 389 2990 425
5 717 37216 4606
6 471 57695 15376
7 560 232772 25907
8 496 0 0
9 696 29986 14820
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 13826 4 0 0
1 9673 227 0 0
2 16915 24 0 0
3 11379 28 0 0
4 11630 23 0 0
5 14877 68 1 0
6 19449 106 1 0
7 19031 33 1 0
8 5335 40 1 0
9 15553 0 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 122861
1 0 2 18437
2 0 3 167257
3 0 4 264730
4 0 5 110209
5 0 6 239486
6 0 7 86880
7 0 8 16503
8 0 9 280205
9 0 10 11310
physicalDamageDealtToChampions physicalDamageTaken role \
0 8152 25870 SOLO
1 801 29665 NONE
2 8511 13243 SOLO
3 44704 22343 CARRY
4 24734 12464 SUPPORT
5 15371 9126 SOLO
6 12401 47551 NONE
7 367 13770 SOLO
8 23350 20878 CARRY
9 2752 18508 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 1 12 7 6 245
1 28 11 6 4 32
2 2 7 3 4 64
3 6 4 4 14 274
4 8 3 6 4 640
5 4 12 4 4 134
6 23 11 8 4 158
7 4 4 2 12 324
8 7 7 6 4 194
9 6 4 8 3 288
summonerName teamEarlySurrendered teamId teamPosition \
0 NexGenSilver13 False 100 TOP
1 theluckynumber8 False 100 JUNGLE
2 Ejtheslayer False 100 MIDDLE
3 Angry Dragon Boi False 100 BOTTOM
4 Lil Padoru False 100 UTILITY
5 whomston False 200 TOP
6 Basntecy False 200 JUNGLE
7 Rotome False 200 MIDDLE
8 MisterNioce False 200 BOTTOM
9 Iuppiter False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 7 2662 161459 15502
1 38 2662 325829 66694
2 7 2662 226028 11747
3 33 2662 277310 48748
4 56 2662 126055 28875
5 27 2662 290558 23029
6 41 2662 154615 29410
7 42 2662 254703 26275
8 3 2662 280205 23350
9 36 2662 47300 17573
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 42559 2228 166 718
1 39965 17890 63 387
2 30456 6263 259 76
3 34339 10022 228 83
4 24373 6842 70 228
5 26688 3713 223 190
6 70595 31632 44 428
7 33574 6510 242 182
8 28314 8228 255 66
9 36809 3145 43 487
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 277 1 11228
1 250 1 9962
2 257 3 14209
3 331 1 6498
4 381 5 12856
5 408 1 13855
6 302 1 10040
7 314 1 5428
8 344 3 0
9 388 5 6002
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 2028 2862 3 5
1 2182 627 0 5
2 1294 297 3 5
3 2576 617 2 5
4 3714 279 1 5
5 3050 2684 1 9
6 1633 3594 1 9
7 0 771 0 9
8 0 2099 2 9
9 0 2746 0 9
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 31 4 6 11 True
1 46 3 8 3 True
2 49 4 7 17 True
3 29 0 2 13 True
4 127 3 22 38 True
5 43 4 1 17 False
6 26 0 4 13 False
7 27 2 0 13 False
8 53 7 4 19 False
9 86 0 7 59 False ,
assists baronKills bountyLevel champLevel championName \
0 5 0 0 12 Riven
1 3 0 3 11 Viego
2 3 0 2 12 Kayle
3 4 0 0 10 Sivir
4 4 0 0 9 Karma
5 1 0 0 11 Renekton
6 4 0 0 10 Hecarim
7 0 0 0 11 Ahri
8 0 0 0 9 Jhin
9 1 0 0 8 Zilean
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2031 2031 2031
1 1073 13878 1073
2 997 7569 997
3 2482 2813 2482
4 244 961 244
5 1803 2465 1803
6 0 4897 0
7 1812 4653 1812
8 1005 1005 1005
9 86 86 86
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 4 2 0 False True
1 1 5 1 False False
2 1 0 0 True False
3 1 0 0 False False
4 2 3 0 False False
5 8 1 0 False False
6 3 1 1 False False
7 2 1 0 False False
8 3 0 0 False False
9 2 3 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False True False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 7200 TOP 0
1 True 8755 JUNGLE 0
2 True 6385 MIDDLE 0
3 True 6435 BOTTOM 0
4 True 5353 UTILITY 0
5 True 6416 TOP 0
6 True 5972 JUNGLE 0
7 True 6407 MIDDLE 0
8 True 5344 BOTTOM 0
9 True 3585 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 2003 6630 3057 1055 1036 3158 3340
1 0 6672 1042 3047 0 1042 0 3364
2 0 1056 1026 3006 1052 2055 1043 3363
3 0 3004 3158 2055 3134 0 0 3340
4 0 0 3158 3851 6617 0 0 3364
5 0 1055 6630 3047 2055 1028 1037 3340
6 0 2055 1031 2031 3047 6632 0 3364
7 0 6655 3916 2031 0 1056 3020 3340
8 0 2031 3009 6671 1036 0 0 3340
9 0 3851 3158 4642 3067 2055 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 3 0 1
1 2 8 5 2
2 1 2 2 2
3 1 2 2 2
4 1 3 2 1
5 0 3 0 1
6 0 2 0 1
7 1 3 3 1
8 0 1 0 1
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 297 0 0
1 855 8353 1418
2 655 32942 3270
3 836 0 0
4 553 13972 4299
5 220 1918 538
6 732 10596 378
7 606 25800 4318
8 606 4739 135
9 723 9514 3437
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 271 0 0 0
1 4256 96 0 0
2 1869 8 0 0
3 1584 0 0 0
4 2107 0 0 0
5 898 2 0 0
6 3934 84 0 0
7 2469 0 0 0
8 1982 0 0 0
9 1726 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 59220
1 0 2 71865
2 0 3 22847
3 0 4 61285
4 0 5 1219
5 0 6 52975
6 0 7 53719
7 0 8 10510
8 0 9 47816
9 0 10 1869
physicalDamageDealtToChampions physicalDamageTaken role \
0 7809 10963 SUPPORT
1 8418 12046 SUPPORT
2 1392 4222 DUO
3 7860 3784 SUPPORT
4 530 3276 SUPPORT
5 9457 14859 SUPPORT
6 2574 13144 SUPPORT
7 940 3912 SUPPORT
8 3944 5278 SUPPORT
9 121 3993 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 12 3 4 206
1 2 4 11 11 247
2 1 4 1 12 324
3 2 1 2 4 294
4 1 4 1 14 285
5 3 12 3 4 410
6 11 11 3 6 170
7 1 4 2 14 228
8 1 7 1 4 381
9 2 4 1 3 197
summonerName teamEarlySurrendered teamId teamPosition \
0 K DA Ahrì False 100 TOP
1 LeoLeon500 False 100 JUNGLE
2 Rotome False 100 MIDDLE
3 Frenetic Beefalo False 100 BOTTOM
4 Boeufoon False 100 UTILITY
5 Seabazz False 200 TOP
6 starblack False 200 JUNGLE
7 Dapper Danny False 200 MIDDLE
8 WhooreHey False 200 BOTTOM
9 UndauntedRayn False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 13 1044 59220 7809
1 17 1044 90373 11410
2 3 1044 65575 4662
3 0 1044 61285 7860
4 14 1044 15441 5079
5 12 1044 54893 9995
6 4 1044 68969 3374
7 10 1044 53153 7216
8 7 1044 52555 4080
9 4 1044 11384 3558
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 11473 1681 125 50
1 17288 11571 13 207
2 6916 1908 122 164
3 5484 1100 119 1
4 5600 318 17 101
5 16635 3035 102 27
6 17561 8674 12 89
7 6627 1025 110 39
8 7455 1530 119 98
9 5741 379 13 25
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 84 1 0
1 30 1 10154
2 30 2 9785
3 30 1 0
4 41 2 249
5 156 1 0
6 93 1 4654
7 49 1 16843
8 69 2 0
9 42 2 0
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 238 0 0
1 1573 984 2 0
2 0 824 0 0
3 0 115 1 0
4 249 216 0 0
5 0 877 0 3
6 422 483 0 3
7 1957 245 0 3
8 0 194 0 3
9 0 22 0 3
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 9 2 1 5 True
1 22 9 2 6 True
2 6 2 0 3 True
3 7 1 2 3 True
4 26 3 5 13 True
5 8 2 2 5 False
6 13 2 3 2 False
7 13 1 2 6 False
8 4 0 1 2 False
9 16 5 3 10 False ,
assists baronKills bountyLevel champLevel championName \
0 0 0 0 9 Sion
1 1 0 0 9 FiddleSticks
2 2 0 1 12 Xerath
3 3 0 0 12 Kaisa
4 3 0 0 11 Nautilus
5 8 0 6 14 DrMundo
6 3 0 5 15 Darius
7 2 0 0 12 Zed
8 4 0 0 11 Ashe
9 7 0 0 10 Soraka
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 0 0 0
1 0 4868 0
2 204 606 204
3 2496 2496 2496
4 1223 3660 1223
5 1990 23037 1990
6 9201 9201 9201
7 3602 7127 3602
8 2675 4104 2675
9 1751 2250 1751
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 1 0 False False
1 3 2 1 False False
2 8 0 0 False False
3 5 0 0 True False
4 6 0 0 False True
5 1 2 1 False False
6 2 0 0 False False
7 4 1 1 False False
8 3 0 0 False False
9 4 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False True False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 5281 TOP 0
1 False 6114 JUNGLE 0
2 False 7079 MIDDLE 0
3 False 9728 BOTTOM 0
4 False 6376 UTILITY 0
5 False 11138 JUNGLE 1
6 False 11913 TOP 0
7 False 8544 MIDDLE 0
8 False 6342 BOTTOM 0
9 False 5560 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 2 1054 6660 2033 3047 1029 1033 3340
1 2 3152 2003 2424 1052 1001 0 3330
2 2 3157 3020 1056 3802 0 1026 3363
3 2 1055 6676 6672 3086 3006 1042 3340
4 2 3860 3068 3047 3076 0 0 3364
5 0 3066 6664 2031 3111 3065 1028 3364
6 0 1055 6631 3111 3053 3105 1033 3340
7 0 3142 6693 2031 3158 0 0 3364
8 0 6673 1055 3006 1042 0 0 3340
9 0 3853 6617 3158 1004 1004 0 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 0 1 0 1
1 1 2 2 1
2 0 3 0 1
3 2 6 3 2
4 1 2 2 1
5 2 8 6 1
6 2 12 7 3
7 1 6 5 1
8 0 1 0 1
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 461 8014 2103
1 769 53122 4044
2 225 55448 10492
3 892 6975 4585
4 783 18596 4275
5 548 77044 6135
6 570 0 0
7 718 3878 928
8 721 165 165
9 711 10002 3336
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 1180 0 1 0
1 4349 84 1 0
2 1618 0 1 0
3 2605 0 1 0
4 3738 4 1 0
5 4316 132 0 0
6 6578 8 0 0
7 7403 4 0 0
8 5460 4 0 0
9 2742 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 30145
1 0 2 7425
2 0 3 6382
3 0 4 71796
4 0 5 9398
5 0 6 52833
6 0 7 124111
7 0 8 71962
8 0 9 47823
9 0 10 1768
physicalDamageDealtToChampions physicalDamageTaken role \
0 5081 11905 SOLO
1 427 13140 NONE
2 526 10167 SOLO
3 10510 10423 CARRY
4 2293 10200 SUPPORT
5 7022 17510 NONE
6 17801 13456 SOLO
7 11730 6657 SOLO
8 3339 4459 CARRY
9 400 5418 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 12 1 4 94
1 10 11 3 4 159
2 4 3 3 4 413
3 3 4 3 7 266
4 3 4 6 14 158
5 3 4 9 11 324
6 3 4 4 6 251
7 3 4 4 14 174
8 2 7 1 4 63
9 4 4 2 3 126
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 Oolong K False 100 TOP 11
1 DoinBro False 100 JUNGLE 13
2 P0IS0NED False 100 MIDDLE 18
3 The Depth False 100 BOTTOM 0
4 rectangle128 False 100 UTILITY 39
5 Rotome False 200 JUNGLE 12
6 StalwartHide False 200 TOP 24
7 Player Bot False 200 MIDDLE 5
8 Dublaiar False 200 BOTTOM 20
9 Alece False 200 UTILITY 33
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1417 38160 7185
1 1417 66508 4893
2 1417 61830 11018
3 1417 82193 16426
4 1417 37207 7945
5 1417 140708 14021
6 1417 132391 23022
7 1417 76605 13424
8 1417 54593 3505
9 1417 11771 3737
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 14486 325 82 247
1 17656 9711 18 440
2 13045 83 93 166
3 15563 3845 154 0
4 15427 946 47 232
5 22690 14990 26 344
6 20798 8690 157 325
7 14453 989 124 82
8 10495 1099 86 415
9 8695 9646 7 152
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 133 1 0
1 87 1 5960
2 220 1 0
3 164 2 3421
4 182 1 9213
5 21 1 10831
6 54 1 8280
7 64 1 764
8 67 2 6605
9 93 5 0
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 1400 0 8
1 421 166 0 8
2 0 1259 0 8
3 1330 2534 1 8
4 1376 1488 0 8
5 863 863 1 1
6 5220 762 5 1
7 764 392 0 1
8 0 575 2 1
9 0 534 0 1
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 12 1 0 5 False
1 25 2 0 2 False
2 4 0 0 4 False
3 9 0 0 6 False
4 40 0 5 18 False
5 22 2 2 3 True
6 13 0 2 7 True
7 8 1 2 4 True
8 13 0 1 5 True
9 25 0 1 13 True ,
assists baronKills bountyLevel champLevel championName \
0 4 0 0 11 Gnar
1 3 0 0 12 Kindred
2 4 0 0 13 Pantheon
3 4 0 0 11 Kaisa
4 10 0 0 9 Rell
5 5 0 4 14 Mordekaiser
6 7 0 0 11 Gragas
7 7 0 0 13 Kayle
8 4 0 4 12 Caitlyn
9 17 0 0 10 Thresh
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 1165 1165 1165
1 0 6899 0
2 0 0 0
3 3377 9086 3377
4 136 136 136
5 1645 1645 1645
6 0 2897 0
7 1295 3210 1295
8 4209 7906 4209
9 671 1140 671
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 4 3 0 False False
1 6 1 2 False False
2 5 2 0 False False
3 3 8 0 False True
4 10 1 0 True False
5 3 0 0 False False
6 3 1 0 False False
7 1 1 0 False False
8 4 0 1 False False
9 8 3 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 True False False
6 False False False
7 False False False
8 False True False
9 True False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 5680 TOP 0
1 True 8585 JUNGLE 0
2 True 8639 MIDDLE 0
3 True 9525 BOTTOM 0
4 True 6219 UTILITY 0
5 True 10420 TOP 0
6 True 7877 JUNGLE 0
7 True 7848 MIDDLE 0
8 True 11046 BOTTOM 0
9 True 7271 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 6631 0 1083 3111 1054 0 3340
1 0 6672 2031 3006 3095 0 0 3340
2 0 6692 3047 3133 3067 2033 0 3340
3 0 6676 2055 6672 1055 0 3006 3363
4 0 3860 2031 3190 3117 3066 1031 3364
5 0 1054 4633 3165 3047 1011 1026 3340
6 0 3020 3157 4636 0 0 0 3364
7 0 1054 3191 3115 3006 4635 0 3363
8 0 1055 3006 6691 6676 3134 0 3340
9 0 3855 0 3190 3050 0 3117 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 0 0 0
1 2 6 2 1
2 2 4 2 1
3 2 8 6 2
4 0 1 0 1
5 3 9 4 2
6 2 5 3 1
7 0 0 0 0
8 3 11 4 4
9 0 3 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 427 3650 1090
1 449 17895 1407
2 376 74 74
3 900 9347 5155
4 379 6166 2519
5 475 76610 15172
6 548 56605 6181
7 925 61931 2968
8 420 429 359
9 290 7025 4513
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 5556 0 0 0
1 8080 98 0 0
2 7012 4 0 0
3 4373 4 0 0
4 5315 0 0 0
5 2255 20 0 0
6 4189 96 0 0
7 410 16 0 0
8 2873 4 0 0
9 3530 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 38943
1 0 2 68890
2 0 3 79149
3 0 4 79916
4 0 5 3335
5 0 6 12247
6 0 7 14536
7 0 8 28847
8 0 9 87988
9 0 10 4805
physicalDamageDealtToChampions physicalDamageTaken role \
0 6296 3610 SOLO
1 6166 13744 NONE
2 10735 6074 SOLO
3 11130 8056 CARRY
4 482 8255 SUPPORT
5 2622 15085 SOLO
6 1407 12037 NONE
7 985 6215 SOLO
8 13906 7299 CARRY
9 1146 9843 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 12 2 4 227
1 3 4 11 11 278
2 2 4 6 14 31
3 3 7 2 4 247
4 5 14 4 4 257
5 4 4 4 14 44
6 3 4 13 11 309
7 3 4 1 12 323
8 2 4 4 7 266
9 3 4 6 14 219
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 FireMonkey1177 False 100 TOP 21
1 JaramiSalami False 100 JUNGLE 8
2 twitchtikid972 False 100 MIDDLE 16
3 ÕooÕ False 100 BOTTOM 0
4 dont ban zac False 100 UTILITY 22
5 Kingsmen1908 False 200 TOP 10
6 Luna Rondo False 200 JUNGLE 22
7 Rotome False 200 MIDDLE 4
8 JacJar321 False 200 BOTTOM 11
9 glizzy moncher False 200 UTILITY 36
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1406 42594 7387
1 1406 95894 8453
2 1406 80362 11693
3 1406 98505 17952
4 1406 15870 3539
5 1406 91309 19896
6 1406 75289 8147
7 1406 100548 3954
8 1406 88932 14472
9 1406 16573 6400
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 10079 1119 90 197
1 22390 15008 23 199
2 13577 3190 158 32
3 13173 4981 147 0
4 14465 431 24 39
5 18644 6397 136 69
6 16806 9129 5 321
7 6956 1697 153 216
8 10543 3328 154 51
9 14756 295 37 117
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 62 1 0
1 145 19 9108
2 103 1 1139
3 63 2 9241
4 153 3 6368
5 75 1 2450
6 64 1 4148
7 32 4 9770
8 93 3 514
9 136 4 4742
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 913 0 3
1 879 564 0 3
2 883 489 0 3
3 1667 743 1 3
4 538 894 0 3
5 2101 1304 0 1
6 558 579 0 1
7 0 331 1 1
8 206 370 2 1
9 740 1382 0 1
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 16 3 0 9 False
1 15 1 2 6 False
2 16 2 1 9 False
3 19 9 3 15 False
4 29 2 1 16 False
5 13 0 1 6 True
6 26 1 3 2 True
7 9 1 1 4 True
8 8 0 1 6 True
9 54 3 13 18 True ,
assists baronKills bountyLevel champLevel championName \
0 10 1 4 18 Urgot
1 12 0 1 18 Vi
2 11 0 0 18 Kayle
3 10 0 0 18 Jhin
4 11 0 3 18 Brand
5 19 1 0 18 Nunu
6 14 0 0 18 Gnar
7 12 0 0 18 Velkoz
8 13 0 0 17 MissFortune
9 21 0 0 17 Karma
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 5525 24903 5525
1 423 24280 423
2 12297 33133 12297
3 2032 5531 2032
4 1257 8579 1257
5 573 23693 573
6 4515 10316 4515
7 1504 10551 1504
8 2028 7278 2028
9 975 1999 975
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 2 0 False False
1 9 1 2 False False
2 7 1 0 False False
3 8 1 0 False False
4 10 1 1 False False
5 9 0 3 False False
6 6 1 0 False True
7 7 3 0 False False
8 12 1 1 False False
9 12 4 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False True False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 20514 TOP 3
1 False 17533 JUNGLE 0
2 False 16758 MIDDLE 1
3 False 17421 BOTTOM 0
4 False 14087 UTILITY 0
5 False 16536 JUNGLE 0
6 False 19145 TOP 0
7 False 15412 MIDDLE 0
8 False 14004 BOTTOM 0
9 False 9895 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3075 6631 3053 3748 3071 3047 3340
1 0 3078 6333 3077 3053 3071 3047 3364
2 0 3089 3006 3115 4633 4632 3165 3363
3 0 3009 6671 6676 3094 3031 3033 3340
4 0 3853 3157 3111 3165 6653 1011 3364
5 4 3068 3742 3047 3075 3065 3105 3364
6 4 3071 3047 6631 3742 3053 3075 3340
7 4 4629 6653 3011 3158 3070 4637 3363
8 4 6671 3123 3009 6676 3036 1038 3363
9 4 3853 6617 6616 3158 3504 2055 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 7 4 1
1 2 10 3 2
2 2 6 3 1
3 3 12 3 2
4 2 11 3 3
5 3 13 6 1
6 4 15 7 2
7 2 6 3 3
8 2 6 3 3
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 427 5268 962
1 843 8664 0
2 860 195867 20749
3 1039 10986 4415
4 556 87684 38332
5 632 99993 22094
6 805 22471 7348
7 537 207113 28790
8 538 5442 2283
9 695 43138 11586
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 18695 44 0 0
1 17507 190 0 0
2 10859 42 0 0
3 13833 0 0 0
4 12872 4 0 0
5 20113 129 1 0
6 13946 6 1 0
7 9603 11 1 0
8 12971 16 1 0
9 11336 0 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 302598
1 0 2 217961
2 0 3 48640
3 0 4 130661
4 0 5 3084
5 0 6 30453
6 0 7 202845
7 0 8 16051
8 0 9 162913
9 0 10 4418
physicalDamageDealtToChampions physicalDamageTaken role \
0 35310 25914 SOLO
1 37425 26432 NONE
2 4468 13870 SOLO
3 27769 12645 CARRY
4 873 11794 SUPPORT
5 3675 44795 NONE
6 35017 37575 SOLO
7 764 15545 SOLO
8 23211 23402 CARRY
9 493 16016 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 6 12 6 4 235
1 7 4 25 11 250
2 6 4 5 12 323
3 5 7 5 4 158
4 6 4 4 14 167
5 5 4 18 11 122
6 6 12 6 4 213
7 6 4 8 3 366
8 4 4 8 7 127
9 6 14 6 4 226
summonerName teamEarlySurrendered teamId teamPosition \
0 Kid Renny False 100 TOP
1 StalwartHide False 100 JUNGLE
2 Rotome False 100 MIDDLE
3 AlexAve False 100 BOTTOM
4 Coolgum15 False 100 UTILITY
5 Ir0nRang3r False 200 JUNGLE
6 Turtlesrcooler False 200 TOP
7 Chızuru Mizuhara False 200 MIDDLE
8 jjja380 False 200 BOTTOM
9 yujb False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 34 2556 317472 40915
1 51 2556 239567 40167
2 7 2556 264931 26191
3 31 2556 145807 33027
4 28 2556 98234 44732
5 60 2556 199887 26404
6 70 2556 236901 43565
7 43 2556 255027 37479
8 10 2556 177114 26149
9 24 2556 48778 13301
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 48274 9504 294 350
1 47493 15358 35 406
2 27379 12296 227 312
3 27194 6505 180 137
4 26080 2468 55 48
5 69376 30958 60 541
6 56362 15897 234 759
7 26301 4242 252 355
8 39020 12607 213 168
9 28973 7150 45 171
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 258 1 9605
1 421 1 12942
2 307 5 20423
3 389 4 4159
4 388 1 7465
5 358 1 69440
6 320 1 11584
7 244 1 31863
8 437 4 8759
9 451 5 1222
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 4642 3664 3 5
1 2741 3552 1 5
2 972 2649 4 5
3 842 714 1 5
4 5525 1413 0 5
5 634 4467 0 11
6 1200 4839 1 11
7 7925 1151 1 11
8 653 2645 0 11
9 1222 1619 1 11
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 34 2 3 15 True
1 31 1 8 2 True
2 29 1 5 11 True
3 16 2 1 9 True
4 72 1 8 29 True
5 19 0 2 6 False
6 21 1 0 13 False
7 41 4 2 14 False
8 33 1 2 14 False
9 74 5 4 41 False ,
assists baronKills bountyLevel champLevel championName \
0 4 0 2 14 Sett
1 11 0 0 13 Karthus
2 7 1 3 14 Azir
3 5 0 4 12 Vayne
4 16 0 0 11 Sona
5 4 0 0 11 Rell
6 3 0 0 11 Warwick
7 1 0 0 13 Kayle
8 2 0 0 11 Jhin
9 5 0 0 10 Rammus
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 9261 10941 9261
1 0 21822 0
2 5961 16505 5961
3 6813 19495 6813
4 1347 3110 1347
5 0 3217 0
6 0 2576 0
7 1099 1099 1099
8 0 416 0
9 318 318 318
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 3 1 0 False False
1 1 1 3 True False
2 1 2 0 False False
3 1 1 1 False True
4 4 3 0 True False
5 5 0 0 False False
6 5 0 0 False False
7 4 0 0 False False
8 3 3 0 False False
9 5 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 9939 TOP 0
1 False 9307 JUNGLE 0
2 False 9543 MIDDLE 1
3 False 10618 BOTTOM 1
4 False 7125 UTILITY 0
5 False 5873 TOP 0
6 False 6202 JUNGLE 0
7 False 9219 MIDDLE 0
8 False 6311 BOTTOM 0
9 False 5350 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3153 6029 0 1055 3111 3742 3364
1 0 6653 2031 3020 4637 1026 0 3340
2 0 1056 1052 3020 6653 2003 3157 3340
3 0 1055 0 1018 3046 3006 6672 3363
4 0 3158 2031 3853 6617 3114 1057 3364
5 2 1056 4629 1052 1058 1001 3070 3340
6 2 3077 3047 3044 3067 3057 0 3340
7 2 1054 3115 3006 4633 2055 1058 3340
8 2 1055 6671 2031 3009 3134 0 3340
9 2 6664 3076 3857 0 0 3111 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 5 2 1
1 1 3 3 1
2 2 5 3 1
3 2 8 4 4
4 0 1 0 1
5 1 2 2 1
6 0 1 0 1
7 1 4 2 2
8 0 2 0 1
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 456 399 145
1 1368 125992 8042
2 742 85048 13221
3 1096 240 61
4 583 7937 4285
5 453 30040 5962
6 565 26953 1773
7 658 53259 7892
8 600 2607 280
9 610 9209 4265
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 7564 10 0 0
1 5690 160 0 0
2 3305 4 0 0
3 3905 10 0 0
4 3373 0 0 0
5 3134 4 1 0
6 6682 80 1 0
7 9345 0 1 0
8 4407 0 1 0
9 3671 0 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 93318
1 0 2 5509
2 0 3 10240
3 0 4 73508
4 0 5 2490
5 0 6 9725
6 0 7 39535
7 0 8 23474
8 0 9 41275
9 0 10 4667
physicalDamageDealtToChampions physicalDamageTaken role \
0 11841 11047 NONE
1 93 15010 NONE
2 184 3031 SOLO
3 11645 5672 CARRY
4 982 7023 SUPPORT
5 364 9413 SOLO
6 1305 14018 NONE
7 1722 3261 SOLO
8 6264 4563 CARRY
9 1005 7892 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 12 3 4 428
1 2 4 12 11 208
2 2 12 3 4 223
3 3 7 3 4 615
4 3 4 5 14 524
5 2 4 2 14 250
6 4 4 14 11 167
7 1 4 2 12 323
8 4 7 3 4 158
9 3 4 4 14 183
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 TRUTANK False 100 TOP 19
1 KingCharles66 False 100 JUNGLE 4
2 Drago2706 False 100 MIDDLE 9
3 August Mesto False 100 BOTTOM 5
4 GnarlyCarly False 100 UTILITY 10
5 StalwartHide False 200 TOP 9
6 Coolgum15 False 200 JUNGLE 13
7 Rotome False 200 MIDDLE 7
8 AlexAve False 200 BOTTOM 11
9 ForlornTimbal False 200 UTILITY 27
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1390 105492 13063
1 1390 141824 8315
2 1390 98808 13406
3 1390 93333 15248
4 1390 11088 5928
5 1390 42231 6672
6 1390 74264 3406
7 1390 78448 9791
8 1390 47403 6545
9 1390 19910 5902
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 18888 3970 131 143
1 20753 12333 11 119
2 6336 569 161 125
3 10328 4721 145 18
4 10798 6713 2 23
5 13750 734 85 47
6 21889 10187 18 222
7 12771 2339 172 267
8 9590 2212 109 49
9 13847 707 39 389
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 84 1 11774
1 0 1 10321
2 30 1 3520
3 33 2 19583
4 63 5 660
5 118 2 2465
6 100 1 7774
7 104 5 1715
8 33 3 3520
9 102 5 6032
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1076 276 2 0
1 178 52 1 0
2 0 0 2 0
3 3542 749 4 0
4 660 402 0 0
5 346 1202 0 9
6 326 1188 0 9
7 175 165 0 9
8 0 618 0 9
9 632 2283 1 9
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 11 1 0 7 True
1 25 1 1 7 True
2 20 2 1 9 True
3 21 1 3 8 True
4 45 3 1 19 True
5 10 0 0 7 False
6 12 0 0 7 False
7 1 1 0 1 False
8 15 4 0 9 False
9 35 0 9 12 False ,
assists baronKills bountyLevel champLevel championName \
0 0 0 0 15 Viego
1 13 0 0 14 Skarner
2 4 0 4 15 Veigar
3 11 0 1 13 Samira
4 8 1 3 12 Brand
5 4 0 0 13 Fiora
6 10 0 0 13 Zac
7 4 0 0 14 Lucian
8 12 0 0 14 Zilean
9 8 0 0 12 Rengar
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 7849 10650 7849
1 1747 35477 1747
2 3329 18996 3329
3 6743 10145 6743
4 1970 7874 1970
5 2146 2146 2146
6 0 1465 0
7 505 770 505
8 0 264 0
9 0 0 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 0 0 False True
1 3 5 3 False False
2 2 0 0 False False
3 6 2 0 False False
4 7 1 1 False False
5 11 0 0 False False
6 6 0 0 False False
7 7 7 0 False False
8 5 3 0 False False
9 11 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 14389 TOP 1
1 False 10370 JUNGLE 1
2 False 11746 MIDDLE 0
3 False 10233 BOTTOM 0
4 False 8215 UTILITY 0
5 False 6874 TOP 0
6 False 9197 JUNGLE 0
7 False 11707 MIDDLE 0
8 False 8449 UTILITY 0
9 False 8705 BOTTOM 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1055 6672 3006 3077 3153 3091 3340
1 0 3111 2055 6664 3077 1011 3742 3364
2 0 1056 6656 2033 4629 3020 1058 3363
3 0 1055 6673 3006 3072 0 0 3340
4 0 3853 2420 6653 3191 2055 3020 3364
5 2 3047 3133 1053 0 0 6630 3340
6 2 3068 2031 3047 3076 3065 3801 3340
7 2 6671 3508 2055 3006 0 6676 3363
8 2 3853 3047 0 6656 1052 3157 3364
9 2 0 1036 2055 6692 3111 6676 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 4 15 5 3
1 1 4 3 1
2 3 11 5 2
3 1 4 2 1
4 1 5 3 2
5 0 1 0 1
6 1 4 2 1
7 2 10 8 3
8 1 4 2 1
9 1 6 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 661 8725 2229
1 1119 46629 3608
2 844 105901 20702
3 653 8174 2397
4 267 30137 16737
5 236 9518 881
6 752 67988 12691
7 403 5452 2285
8 566 50840 15319
9 360 11669 1648
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 8071 27 0 0
1 9000 112 0 0
2 5420 4 0 0
3 8744 0 0 0
4 4128 8 0 0
5 8567 4 1 0
6 10326 72 1 0
7 11639 0 1 0
8 5743 8 1 0
9 11100 20 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 144513
1 0 2 56127
2 0 3 13340
3 0 4 88927
4 0 5 1496
5 0 6 61295
6 0 7 12622
7 0 8 105477
8 0 9 5000
9 0 10 63650
physicalDamageDealtToChampions physicalDamageTaken role \
0 25278 18964 SOLO
1 4742 18052 NONE
2 700 11265 SOLO
3 18762 15367 CARRY
4 571 8262 SUPPORT
5 6873 17135 SOLO
6 1191 20705 NONE
7 17362 5742 SOLO
8 2401 10344 SUPPORT
9 15705 23227 CARRY
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 6 14 250
1 3 4 12 11 220
2 3 4 2 12 323
3 5 4 5 7 189
4 4 14 1 4 158
5 1 12 5 4 102
6 5 4 18 11 245
7 3 4 2 12 451
8 4 14 6 4 242
9 7 14 5 4 250
summonerName teamEarlySurrendered teamId teamPosition \
0 StalwartHide False 100 TOP
1 Frontier Ranger False 100 JUNGLE
2 Rotome False 100 MIDDLE
3 Saggy Dong False 100 BOTTOM
4 AlexAve False 100 UTILITY
5 TaxEvad3r False 200 TOP
6 SpermWad False 200 JUNGLE
7 S1ege79 False 200 MIDDLE
8 Benwagon123 False 200 UTILITY
9 RangoonRush False 200 BOTTOM
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 9 1658 163568 31736
1 29 1658 120511 9207
2 39 1658 121312 21570
3 0 1658 104017 21159
4 7 1658 32569 18244
5 7 1658 81934 10490
6 43 1658 86232 15123
7 0 1658 119184 20363
8 62 1658 64132 18883
9 13 1658 79061 18599
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 30717 13592 164 69
1 28849 11295 20 517
2 17424 6663 160 101
3 24648 6770 123 0
4 12872 1901 17 14
5 26332 5323 111 72
6 34639 24518 25 401
7 17700 1219 181 17
8 16298 5646 45 315
9 35826 9659 99 70
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 280 1 10329
1 121 1 17753
2 77 1 2069
3 184 3 6915
4 137 1 935
5 229 2 11120
6 168 5 5621
7 186 1 8255
8 136 2 8291
9 258 1 3741
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 4227 3681 4 0
1 855 1795 2 0
2 168 738 1 0
3 0 536 2 0
4 935 481 1 0
5 2735 630 0 10
6 1241 3607 0 10
7 714 319 0 10
8 1161 211 0 10
9 1246 1499 0 10
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 13 1 1 7 True
1 25 7 2 6 True
2 5 1 0 4 True
3 16 2 4 10 True
4 44 2 4 17 True
5 9 0 0 5 False
6 12 0 1 8 False
7 22 10 0 12 False
8 36 3 5 20 False
9 13 1 5 1 False ,
assists baronKills bountyLevel champLevel championName \
0 12 0 2 18 Jayce
1 18 1 0 18 Vi
2 20 0 1 18 Orianna
3 10 0 0 18 Vayne
4 15 0 0 17 Pyke
5 7 0 0 18 Darius
6 12 0 0 16 DrMundo
7 10 0 0 18 Kayle
8 18 0 0 18 Caitlyn
9 16 0 1 17 Veigar
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 9648 12824 9648
1 3089 25782 3089
2 2942 6246 2942
3 9187 20672 9187
4 1329 6726 1329
5 7035 13198 7035
6 23 22971 23
7 1798 7593 1798
8 4656 7402 4656
9 1322 2820 1322
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 1 1 False False
1 8 5 2 False False
2 6 3 1 False False
3 10 0 0 False True
4 11 5 0 True False
5 6 1 0 False False
6 14 1 2 False False
7 9 2 0 False False
8 13 1 0 False False
9 17 5 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False True False
9 True False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 19127 TOP 1
1 False 15650 JUNGLE 0
2 False 14234 MIDDLE 0
3 False 19039 BOTTOM 2
4 False 17321 UTILITY 0
5 False 15785 TOP 0
6 False 14268 JUNGLE 0
7 False 14737 MIDDLE 0
8 False 16306 BOTTOM 0
9 False 13490 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3158 6692 3042 6609 6676 3026 3363
1 0 6632 3053 2055 3123 6333 3111 3364
2 0 1058 3157 3165 6655 3020 1082 3340
3 0 3031 6672 3006 3046 3072 3026 3363
4 0 3857 3139 6693 3814 3179 3111 3364
5 3 3053 6631 3193 3075 1031 3047 3340
6 3 6662 1029 3047 3065 3075 3742 3364
7 3 1054 3157 3115 3006 4633 3089 3363
8 3 3031 6671 2421 3095 3094 3006 3340
9 3 6656 3157 3860 2055 4629 3158 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 4 14 7 3
1 3 10 2 2
2 0 3 0 1
3 4 19 5 2
4 3 12 4 2
5 1 9 5 3
6 2 8 2 1
7 1 6 3 1
8 2 8 3 1
9 3 11 3 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 602 27834 9356
1 630 7055 0
2 425 145298 15205
3 610 0 0
4 458 0 0
5 890 4202 875
6 349 104671 15515
7 634 154273 14254
8 463 7390 3136
9 382 67664 30845
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 12971 20 0 0
1 16580 129 0 0
2 5370 29 0 0
3 16672 18 0 0
4 14401 4 0 0
5 9625 19 1 0
6 6024 161 1 0
7 5255 40 1 0
8 1469 4 1 0
9 4576 0 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 196842
1 0 2 148246
2 0 3 20178
3 0 4 189394
4 0 5 46834
5 0 6 181366
6 0 7 60889
7 0 8 54238
8 0 9 178422
9 0 10 4061
physicalDamageDealtToChampions physicalDamageTaken role \
0 33273 13210 DUO
1 23714 26270 NONE
2 817 13383 DUO
3 40561 20539 CARRY
4 16734 14444 SUPPORT
5 18284 24660 SOLO
6 9454 41649 NONE
7 3694 18466 DUO
8 24495 26202 DUO
9 1456 29012 SOLO
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 6 12 208
1 6 4 20 11 140
2 5 12 5 4 168
3 7 7 6 4 223
4 6 4 10 14 315
5 5 4 7 6 250
6 20 11 5 4 316
7 4 4 3 12 323
8 7 7 7 4 247
9 9 3 7 4 216
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 FIreIceDemon96 False 100 TOP 15
1 skotinos False 100 JUNGLE 40
2 Seizedheart False 100 MIDDLE 17
3 arreto False 100 BOTTOM 33
4 laserr False 100 UTILITY 40
5 StalwartHide False 200 TOP 35
6 65shots False 200 JUNGLE 22
7 Rotome False 200 MIDDLE 9
8 44danny44 False 200 BOTTOM 10
9 Tohm False 200 UTILITY 71
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 2236 225760 43250
1 2236 164099 25210
2 2236 174092 16023
3 2236 244850 64674
4 2236 72440 21157
5 2236 191898 25225
6 2236 179820 26442
7 2236 217177 18360
8 2236 188972 28477
9 2236 73831 32396
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 27109 8351 246 148
1 48183 20573 40 378
2 21008 3184 216 324
3 40004 17357 212 230
4 29902 6745 51 175
5 39134 8091 237 209
6 63521 23924 30 1159
7 25307 4446 244 255
8 30538 6348 201 80
9 39092 608 65 335
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 294 1 1084
1 287 1 8798
2 234 1 8615
3 410 4 55456
4 376 1 25605
5 253 1 6329
6 495 1 14259
7 370 5 8665
8 428 2 3159
9 546 1 2104
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 620 927 4 5
1 1496 5331 1 5
2 0 2254 1 5
3 24113 2793 4 5
4 4423 1056 0 5
5 6065 4848 2 11
6 1471 15848 0 11
7 411 1585 1 11
8 845 2867 2 11
9 95 5503 0 11
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 34 1 5 14 True
1 42 6 8 6 True
2 31 3 2 13 True
3 19 0 0 12 True
4 72 5 11 27 True
5 24 1 2 14 False
6 20 1 5 2 False
7 15 2 3 6 False
8 16 1 1 11 False
9 65 8 8 29 False ,
assists baronKills bountyLevel champLevel championName \
0 6 0 0 15 Teemo
1 13 0 0 15 Nunu
2 10 0 0 15 Qiyana
3 12 0 0 14 Aphelios
4 16 0 0 13 Neeko
5 9 1 4 17 Kayle
6 20 0 0 17 Udyr
7 11 0 7 15 Pantheon
8 17 0 0 15 Yone
9 27 0 0 15 Nami
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 4800 7678 4800
1 226 20188 226
2 1578 5384 1578
3 4637 8097 4637
4 2072 4504 2072
5 1909 13211 1909
6 1456 21101 1456
7 4216 13156 4216
8 5283 13144 5283
9 2332 4430 2332
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 0 0 False False
1 7 1 3 False True
2 9 2 0 True False
3 10 0 0 False False
4 9 4 0 False False
5 6 0 0 False False
6 5 2 1 False False
7 7 3 1 False False
8 7 3 0 False False
9 6 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False True False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 10773 TOP 0
1 True 12373 JUNGLE 0
2 True 12146 MIDDLE 0
3 True 11222 BOTTOM 1
4 True 9734 UTILITY 0
5 True 13732 TOP 0
6 True 15622 JUNGLE 1
7 True 14115 MIDDLE 1
8 True 12180 BOTTOM 0
9 True 9323 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 2 3115 4633 3020 4629 0 0 3340
1 2 3068 1029 3742 3047 3110 3105 3364
2 2 3042 6695 2055 3158 3035 6693 3364
3 2 1055 6672 3006 3085 3031 0 3340
4 2 3853 3152 3157 3020 3916 2055 3364
5 1 3070 3006 3115 4633 3102 1052 3364
6 1 6664 3143 4401 1011 3158 3742 3364
7 1 3047 6693 3508 3814 1036 1036 3363
8 1 1054 3046 1038 6673 3006 1053 3363
9 1 3853 6617 3158 6616 3067 3114 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 4 0 1
1 3 10 5 1
2 2 8 2 1
3 2 6 2 2
4 1 3 3 1
5 4 12 4 3
6 3 10 3 2
7 3 14 7 4
8 0 4 0 1
9 0 2 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 396 86588 22490
1 895 55302 11569
2 495 11500 2553
3 371 2027 888
4 859 68952 26430
5 676 93332 23076
6 394 124090 13437
7 479 3979 984
8 495 24622 5525
9 448 23491 11620
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 13005 4 0 0
1 17252 116 0 0
2 6570 8 0 0
3 9711 6 0 0
4 9912 0 0 0
5 17445 10 0 0
6 16107 141 0 0
7 8544 12 0 0
8 15817 15 0 0
9 8742 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 34124
1 0 2 16759
2 0 3 109362
3 0 4 119009
4 0 5 4897
5 0 6 36516
6 0 7 64031
7 0 8 100854
8 0 9 123007
9 0 10 4395
physicalDamageDealtToChampions physicalDamageTaken role \
0 4334 12549 NONE
1 1223 20467 NONE
2 24311 16371 SOLO
3 22097 13253 CARRY
4 1985 13037 SUPPORT
5 4739 13159 NONE
6 8535 24216 NONE
7 26066 14391 SOLO
8 15216 18640 CARRY
9 778 10647 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 6 3 3 4 107
1 3 4 17 11 72
2 7 14 5 4 172
3 5 7 6 4 268
4 5 14 4 4 294
5 4 4 3 12 117
6 5 4 21 11 210
7 3 4 4 14 323
8 3 4 5 7 314
9 6 4 9 14 312
summonerName teamEarlySurrendered teamId teamPosition \
0 Alsaindar False 100 TOP
1 Potato54 False 100 JUNGLE
2 Dorganos False 100 MIDDLE
3 theonlytinman False 100 BOTTOM
4 Two Chimes False 100 UTILITY
5 TRIONEXdb False 200 TOP
6 Nbaballa12 False 200 JUNGLE
7 Rotome False 200 MIDDLE
8 SewItSeams False 200 BOTTOM
9 ShadowKnight1395 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 43 1958 130750 28364
1 38 1958 128195 14593
2 30 1958 122367 28368
3 21 1958 140643 27327
4 70 1958 75170 29736
5 8 1958 139266 28870
6 56 1958 212726 24589
7 22 1958 112203 27935
8 36 1958 159219 24708
9 50 1958 29456 13968
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 26896 7472 165 450
1 40843 19034 21 777
2 24662 5311 164 109
3 25700 8997 150 169
4 24119 3625 60 154
5 32191 14526 166 219
6 44376 15003 63 302
7 24568 4563 122 29
8 37071 8943 169 113
9 20009 23430 8 265
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 259 1 10037
1 234 1 56134
2 293 1 1504
3 278 4 19607
4 304 1 1319
5 248 5 9418
6 151 1 24604
7 219 1 7369
8 236 3 11588
9 160 5 1570
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1539 1342 1 7
1 1799 3123 1 7
2 1504 1719 1 7
3 4342 2735 1 7
4 1319 1170 1 7
5 1053 1586 1 5
6 2616 4052 0 5
7 884 1633 2 5
8 3967 2613 4 5
9 1570 619 0 5
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 15 0 2 8 False
1 21 1 3 2 False
2 22 3 4 4 False
3 13 0 5 5 False
4 73 5 10 28 False
5 10 0 4 0 True
6 17 2 2 6 True
7 14 3 1 8 True
8 28 3 1 14 True
9 49 2 4 24 True ,
assists baronKills bountyLevel champLevel championName \
0 7 0 1 16 Quinn
1 10 1 0 15 Chogath
2 4 0 10 17 Kayle
3 5 0 0 13 Tristana
4 24 0 0 14 Yuumi
5 5 0 0 16 Fiora
6 8 0 0 16 Ekko
7 4 0 0 14 Veigar
8 3 0 0 12 Draven
9 7 0 0 12 Soraka
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 7027 17245 7027
1 2199 12509 2199
2 6623 16190 6623
3 9382 15144 9382
4 2427 2982 2427
5 3797 11960 3797
6 898 24541 898
7 610 6487 610
8 888 2792 888
9 134 134 134
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 0 0 False False
1 6 2 1 False False
2 2 0 1 False False
3 6 1 0 False False
4 3 2 0 False False
5 8 0 0 True False
6 4 1 2 False True
7 7 7 0 False False
8 7 3 0 False False
9 7 3 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False True False
7 False False False
8 False False False
9 True False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 11820 TOP 0
1 False 11475 JUNGLE 0
2 False 14974 MIDDLE 1
3 False 11244 BOTTOM 0
4 False 8610 UTILITY 1
5 False 12033 TOP 0
6 False 13326 JUNGLE 0
7 False 10474 MIDDLE 0
8 False 9888 BOTTOM 0
9 False 6223 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3031 6671 3006 3095 0 0 3340
1 0 6664 3111 3742 3075 1057 1028 3340
2 0 3102 3115 3006 3041 4633 0 3340
3 0 3031 0 6672 3095 3006 0 3340
4 0 6617 3853 2055 3107 0 3504 3364
5 2 1054 3042 3074 6692 3047 1028 3340
6 2 3152 2421 3100 4629 3020 3108 3364
7 2 3040 3020 1026 1058 6655 0 3363
8 2 1055 3006 6673 6676 3123 1018 3363
9 2 3853 6617 3158 3114 1052 1052 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 5 3 1
1 2 9 4 1
2 2 13 10 4
3 1 6 3 1
4 0 0 0 0
5 1 6 2 2
6 2 7 4 1
7 1 5 2 2
8 1 4 2 2
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 659 3622 1814
1 376 80188 10293
2 1023 123860 18226
3 627 19026 1855
4 738 12871 7820
5 440 1383 723
6 1201 184587 15788
7 400 114387 15091
8 346 0 0
9 923 8302 2287
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 7696 13 0 0
1 9170 93 0 0
2 7792 24 0 0
3 7789 24 0 0
4 2927 0 0 0
5 9544 20 1 0
6 13412 175 1 0
7 6165 9 1 0
8 6722 2 1 0
9 7191 0 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 134756
1 0 2 24547
2 0 3 39098
3 0 4 107733
4 0 5 3497
5 0 6 147087
6 0 7 35882
7 0 8 8914
8 0 9 84903
9 0 10 2002
physicalDamageDealtToChampions physicalDamageTaken role \
0 18084 8057 NONE
1 3650 21002 NONE
2 4439 9250 DUO
3 14170 9956 DUO
4 990 5912 SUPPORT
5 12826 18710 SOLO
6 2755 28970 NONE
7 674 7088 SOLO
8 12120 11824 CARRY
9 411 6336 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 6 14 250
1 18 11 5 4 133
2 2 4 3 12 323
3 2 4 5 21 148
4 6 3 5 14 85
5 4 12 5 4 509
6 18 11 4 4 410
7 4 4 4 12 384
8 4 4 4 7 350
9 4 4 5 3 59
summonerName teamEarlySurrendered teamId teamPosition \
0 StalwartHide False 100 TOP
1 Yzer False 100 JUNGLE
2 Rotome False 100 MIDDLE
3 Thoomas False 100 BOTTOM
4 Chlorys False 100 UTILITY
5 TheBluePopsicle False 200 TOP
6 Metro Ronin False 200 JUNGLE
7 isolationer False 200 MIDDLE
8 N0E False 200 BOTTOM
9 trxshiimovesalot False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 20 1803 154729 21096
1 46 1803 121177 18299
2 10 1803 165381 23870
3 3 1803 143099 17114
4 20 1803 17214 9656
5 6 1803 159093 21723
6 29 1803 235323 19879
7 29 1803 125012 15766
8 12 1803 85035 12252
9 34 1803 10305 2698
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 17140 3823 173 146
1 37198 8137 36 768
2 17873 9497 205 293
3 18109 3118 149 39
4 8876 22561 9 46
5 30309 12185 192 151
6 44195 22295 62 782
7 13961 287 165 90
8 20158 4126 151 77
9 16033 10415 11 167
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 168 1 16351
1 130 1 16440
2 57 5 2422
3 190 1 16339
4 70 9 845
5 254 5 10622
6 132 1 14853
7 169 1 1710
8 143 3 132
9 179 5 0
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1198 1386 2 2
1 4355 7025 2 2
2 1204 830 2 2
3 1089 363 2 2
4 845 36 1 2
5 8173 2054 1 9
6 1336 1812 1 9
7 0 708 0 9
8 132 1612 0 9
9 0 2505 0 9
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 18 0 1 9 True
1 31 2 4 12 True
2 25 0 5 10 True
3 15 1 3 6 True
4 54 3 6 19 True
5 14 0 1 8 False
6 24 1 0 3 False
7 28 8 1 17 False
8 22 3 3 13 False
9 53 3 3 27 False ,
assists baronKills bountyLevel champLevel championName \
0 9 0 2 16 JarvanIV
1 3 1 1 17 Tryndamere
2 6 0 0 15 Leblanc
3 8 0 9 16 Sivir
4 17 0 1 13 Karma
5 1 0 0 14 Viego
6 3 0 0 12 Urgot
7 4 0 0 14 Kayle
8 7 0 0 13 Kaisa
9 7 0 0 13 Leona
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2065 8910 2065
1 6835 58337 6835
2 2476 2476 2476
3 5690 17707 5690
4 1257 1257 1257
5 3069 4580 3069
6 0 4164 0
7 79 713 79
8 1709 1709 1709
9 524 724 524
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 2 0 True False
1 3 3 3 False False
2 2 3 0 False True
3 1 2 1 False False
4 5 11 0 False False
5 9 0 0 False False
6 9 1 0 False False
7 6 1 0 False False
8 6 0 0 False False
9 4 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False True False
2 True False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 11506 TOP 0
1 False 13557 JUNGLE 1
2 False 12271 MIDDLE 0
3 False 14404 BOTTOM 2
4 False 8275 UTILITY 0
5 False 11005 TOP 0
6 False 8480 JUNGLE 0
7 False 8842 MIDDLE 0
8 False 10442 BOTTOM 0
9 False 7267 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3047 3076 1033 3053 3068 3067 3363
1 0 6675 3031 3006 6672 0 0 3364
2 0 3041 3089 6655 3020 3108 2055 3364
3 0 3042 3158 6691 6676 3134 1036 3363
4 0 3853 6617 3114 3158 1052 2055 3364
5 3 3153 2031 1057 3009 6672 3051 3340
6 3 6631 2031 3047 3748 1028 0 3364
7 3 4633 3115 3006 4632 0 0 3363
8 3 3085 6672 3006 6676 0 0 3340
9 3 3075 3857 2055 0 3190 3111 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 6 3 2
1 2 5 2 1
2 1 9 9 1
3 2 13 9 3
4 0 1 0 1
5 1 6 3 1
6 1 2 2 1
7 0 2 0 1
8 0 3 0 1
9 1 3 3 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 873 25799 3229
1 1056 7690 150
2 1327 75768 19738
3 840 0 0
4 391 20533 9372
5 467 3255 1253
6 613 6778 464
7 720 53208 4712
8 337 10092 3337
9 691 8315 2325
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 2911 10 0 0
1 3666 183 0 1
2 3073 12 0 0
3 2630 24 0 0
4 1949 4 0 0
5 6533 12 1 0
6 6126 88 1 0
7 8561 1 1 0
8 6330 0 1 0
9 6197 0 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 78065
1 0 2 221225
2 0 3 17403
3 0 4 179718
4 0 5 3500
5 0 6 117920
6 0 7 85370
7 0 8 25001
8 0 9 96522
9 0 10 6593
physicalDamageDealtToChampions physicalDamageTaken role \
0 10678 14865 SOLO
1 7091 22433 NONE
2 1819 10980 SOLO
3 25732 8869 CARRY
4 973 9847 SUPPORT
5 17946 18863 SOLO
6 8088 17025 NONE
7 1564 8969 SOLO
8 10334 10679 CARRY
9 1108 10451 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 3 12 289
1 4 4 13 11 172
2 6 14 3 4 209
3 2 4 5 7 187
4 7 14 5 4 231
5 4 4 6 14 250
6 17 11 4 4 194
7 1 4 2 12 323
8 4 4 6 7 324
9 6 14 3 4 227
summonerName teamEarlySurrendered teamId teamPosition \
0 Fujimagari False 100 TOP
1 Arbitrage CEO False 100 JUNGLE
2 Master Sparda False 100 MIDDLE
3 aydee False 100 BOTTOM
4 Webspider False 100 UTILITY
5 StalwartHide False 200 TOP
6 Duke Silver False 200 JUNGLE
7 Rotome False 200 MIDDLE
8 Dachie False 200 BOTTOM
9 Manual Breathing False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 17 1707 123088 14243
1 8 1707 256044 9010
2 15 1707 96238 22362
3 8 1707 188350 26801
4 29 1707 25146 11458
5 13 1707 132262 22029
6 18 1707 103484 9880
7 6 1707 80870 6300
8 0 1707 115670 14752
9 28 1707 21742 3975
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 19564 2317 160 189
1 27175 14354 67 163
2 14990 4960 151 21
3 12450 7026 190 77
4 12850 2781 17 153
5 27007 7325 180 40
6 24100 5062 43 269
7 17948 2332 186 284
8 18004 5817 200 0
9 17767 1682 35 51
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 127 1 19223
1 117 3 27128
2 94 1 3066
3 30 3 8631
4 118 5 1112
5 263 1 11086
6 262 1 11335
7 226 3 2661
8 124 3 9055
9 125 5 6832
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 336 1787 2 1
1 1768 1075 4 1
2 804 936 1 1
3 1068 950 2 1
4 1112 1052 1 1
5 2829 1610 1 11
6 1328 947 0 11
7 24 418 0 11
8 1079 994 0 11
9 541 1117 0 11
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 18 2 1 8 True
1 17 3 3 3 True
2 26 5 5 5 True
3 26 2 1 10 True
4 61 12 3 35 True
5 18 3 4 9 False
6 22 1 8 1 False
7 10 1 0 6 False
8 17 0 5 8 False
9 55 3 5 24 False ,
assists baronKills bountyLevel champLevel championName \
0 10 0 1 17 Gangplank
1 9 0 0 16 Lillia
2 7 0 0 18 Yone
3 2 1 7 16 Tristana
4 6 0 0 14 Rell
5 0 0 1 17 Sion
6 10 0 0 14 Skarner
7 3 0 0 16 Kayle
8 6 0 0 14 Jhin
9 6 0 0 14 Zyra
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2895 12837 2895
1 565 11761 565
2 1497 9088 1497
3 8585 18470 8585
4 446 3089 446
5 1326 2235 1326
6 312 25299 312
7 2764 21682 2764
8 1188 4610 1188
9 1009 2224 1009
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 4 0 1 False False
1 3 9 1 False False
2 4 2 0 False False
3 2 2 0 False False
4 3 0 0 False False
5 4 4 0 False True
6 3 3 2 False False
7 4 5 0 False False
8 2 0 0 False False
9 6 3 1 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 True False False
7 False True False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 13660 TOP 0
1 False 11256 JUNGLE 1
2 False 14705 MIDDLE 0
3 False 16633 BOTTOM 0
4 False 7575 UTILITY 0
5 False 12808 TOP 0
6 False 9768 JUNGLE 0
7 False 13805 MIDDLE 0
8 False 11852 BOTTOM 0
9 False 9662 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1038 3078 3158 3508 3036 1018 3340
1 0 3158 4637 3108 0 6653 0 3364
2 0 1055 3006 3140 6673 3072 3031 3363
3 0 6672 3072 3031 3006 3046 0 3363
4 0 3860 3190 3050 3111 0 0 3364
5 1 3143 3075 3068 3105 1033 3047 3364
6 1 6664 2031 3047 3742 3076 1011 3364
7 1 2420 3089 3006 4633 3191 3115 3363
8 1 3094 6676 6671 3009 3123 1018 3340
9 1 6653 2421 3853 3020 4637 1029 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 1 0 1
1 0 2 0 1
2 1 7 5 1
3 2 9 7 2
4 0 0 0 0
5 1 5 2 1
6 0 0 0 0
7 1 5 3 1
8 1 3 3 1
9 1 3 2 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 752 6533 3833
1 1262 115065 13276
2 559 27878 4988
3 1058 27159 1646
4 884 5357 2938
5 1210 54580 8424
6 1688 53099 3312
7 835 139270 8466
8 1621 4153 1447
9 580 79918 19314
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 10182 29 0 0
1 10143 145 0 0
2 10203 16 0 0
3 7247 30 0 0
4 7527 0 0 0
5 8276 4 1 0
6 6801 126 1 0
7 5149 60 1 0
8 3678 12 1 0
9 4215 12 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 202229
1 0 2 20873
2 0 3 195188
3 0 4 169644
4 0 5 3995
5 0 6 88111
6 0 7 72992
7 0 8 43957
8 0 9 125840
9 0 10 6452
physicalDamageDealtToChampions physicalDamageTaken role \
0 10392 16452 SOLO
1 309 22877 NONE
2 12947 11005 SOLO
3 10531 8624 CARRY
4 324 5539 SUPPORT
5 9386 14399 SOLO
6 4759 16671 NONE
7 2704 9099 SOLO
8 11226 4831 CARRY
9 989 6165 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 1 12 3 4 285
1 22 11 4 4 178
2 4 4 5 14 284
3 4 4 4 7 82
4 1 14 2 4 84
5 3 4 2 12 156
6 18 11 3 4 264
7 2 4 4 3 323
8 4 7 5 4 59
9 5 14 4 4 420
summonerName teamEarlySurrendered teamId teamPosition \
0 CommiesGetDaRope False 100 TOP
1 destduh False 100 JUNGLE
2 Yuuda False 100 MIDDLE
3 Lilija False 100 BOTTOM
4 Rango from Rango False 100 UTILITY
5 KUKoner False 200 TOP
6 Jayhomi False 200 JUNGLE
7 Rotome False 200 MIDDLE
8 PunishedSpcyChib False 200 BOTTOM
9 Shalidor False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 9 2172 220167 16460
1 30 2172 170893 17511
2 20 2172 240571 21220
3 7 2172 210126 15185
4 9 2172 16854 3317
5 37 2172 169032 17811
6 45 2172 139861 8476
7 5 2172 201721 11170
8 25 2172 134981 12756
9 58 2172 87218 21151
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 26773 11709 253 321
1 33503 15531 34 460
2 21693 6970 254 145
3 15945 8335 241 50
4 13221 2118 39 19
5 27879 1520 232 657
6 26824 9031 26 683
7 16483 5722 225 269
8 9702 3808 220 63
9 10903 0 68 382
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 117 1 11405
1 122 1 34954
2 149 1 17504
3 51 3 13322
4 93 2 7502
5 187 1 26340
6 89 1 13769
7 133 4 18492
8 16 3 4988
9 168 0 847
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 2233 138 2 4
1 3925 482 0 4
2 3284 484 1 4
3 3007 73 3 4
4 54 154 0 4
5 0 5203 1 7
6 404 3351 1 7
7 0 2234 1 7
8 82 1193 0 7
9 847 522 1 7
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 24 0 6 11 True
1 54 9 10 21 True
2 28 2 10 13 True
3 15 2 2 11 True
4 45 0 8 18 True
5 24 4 3 14 False
6 33 3 8 4 False
7 42 5 9 13 False
8 19 0 2 9 False
9 93 3 18 46 False ,
assists baronKills bountyLevel champLevel championName \
0 1 0 1 14 Pantheon
1 5 0 0 14 FiddleSticks
2 2 0 1 15 Zyra
3 5 0 1 13 Jinx
4 4 0 1 13 Thresh
5 5 0 3 17 Nasus
6 7 0 1 15 Jax
7 2 0 0 14 Akali
8 9 0 0 14 Jhin
9 10 0 0 14 Karma
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 135 4722 135
1 0 13118 0
2 761 1232 761
3 1164 1164 1164
4 678 1101 678
5 8146 23733 8146
6 491 19061 491
7 373 2732 373
8 3845 6889 3845
9 1431 3349 1431
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 6 2 0 False True
1 6 0 1 False False
2 6 0 0 True False
3 6 0 0 False False
4 3 2 0 False False
5 5 1 0 False False
6 1 1 1 False False
7 5 1 0 False False
8 4 0 1 False False
9 3 3 1 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 True False False
6 False True False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 11524 TOP 0
1 True 9361 JUNGLE 0
2 True 10095 MIDDLE 0
3 True 8101 BOTTOM 0
4 True 6928 UTILITY 0
5 True 14175 TOP 1
6 True 11086 JUNGLE 0
7 True 9460 MIDDLE 0
8 True 10847 BOTTOM 0
9 True 9858 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 6692 6609 3047 0 3071 0 3340
1 1 3152 2031 3020 4637 3191 1052 3330
2 1 1056 3157 3020 1082 6655 1011 3340
3 1 1055 6672 3006 1042 1042 1018 3340
4 1 3190 3857 3047 3076 3801 3067 3340
5 0 1054 6632 3047 3075 3065 0 3340
6 0 3111 3748 3078 1053 0 0 3364
7 0 4637 4633 3111 0 2031 3191 3340
8 0 3009 6671 6676 3094 1031 0 3340
9 0 3020 1058 3853 6617 4628 1058 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 9 6 1
1 0 2 0 1
2 1 5 2 1
3 0 1 0 1
4 0 1 0 1
5 2 6 3 2
6 1 3 2 2
7 2 7 3 2
8 1 4 3 2
9 1 7 7 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 881 1201 429
1 1001 131880 11545
2 676 113131 26399
3 994 1276 506
4 1181 21184 5940
5 457 35627 7455
6 1377 28923 1939
7 492 54887 9098
8 1169 9111 2665
9 1076 45973 19836
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 5552 1 0 0
1 9184 131 0 0
2 8602 0 0 0
3 10988 0 0 0
4 8635 0 0 0
5 13999 40 0 0
6 4390 145 0 0
7 12165 0 0 0
8 8325 20 0 1
9 6775 19 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 104891
1 0 2 7709
2 0 3 14609
3 0 4 62553
4 0 5 7112
5 0 6 192015
6 0 7 140455
7 0 8 10083
8 0 9 116495
9 0 10 3616
physicalDamageDealtToChampions physicalDamageTaken role \
0 20305 17435 SOLO
1 0 25869 NONE
2 1509 6079 SOLO
3 5945 6146 CARRY
4 1092 9019 SUPPORT
5 15774 21823 SOLO
6 8966 21650 NONE
7 1894 8161 SOLO
8 11297 5557 CARRY
9 1049 5725 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 8 14 322
1 14 11 4 4 134
2 6 14 3 4 190
3 4 4 5 7 125
4 4 4 5 14 166
5 3 12 4 4 353
6 17 11 4 4 215
7 3 14 3 4 229
8 3 7 3 4 106
9 6 14 7 4 407
summonerName teamEarlySurrendered teamId teamPosition \
0 Rotome False 100 TOP
1 SlothoftheAbyss False 100 JUNGLE
2 MoistureCreature False 100 MIDDLE
3 Alece False 100 BOTTOM
4 Coolgum15 False 100 UTILITY
5 Thunderguy5767 False 200 TOP
6 Kyllen False 200 JUNGLE
7 Wavrynn False 200 MIDDLE
8 GregThePanda222 False 200 BOTTOM
9 TaIking Tree False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 25 1907 109747 22033
1 24 1907 147792 12100
2 57 1907 132638 29631
3 12 1907 67275 7257
4 32 1907 33568 7983
5 18 1907 227643 23229
6 14 1907 185127 11842
7 0 1907 66965 11386
8 37 1907 139572 14073
9 38 1907 50802 22029
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 23705 3641 156 44
1 35711 19332 33 666
2 15081 248 142 375
3 17591 3764 142 37
4 18010 1881 51 148
5 37786 4407 202 125
6 26442 14692 44 302
7 22045 6542 129 30
8 14177 4818 171 142
9 13453 6125 30 216
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 235 1 3654
1 215 1 8202
2 228 1 4897
3 203 3 3444
4 109 2 5271
5 105 1 0
6 37 1 15748
7 169 1 1994
8 90 3 13965
9 35 5 1212
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1298 716 0 6
1 554 657 0 6
2 1722 399 1 6
3 804 455 0 6
4 950 355 0 6
5 0 1962 3 1
6 936 401 2 1
7 394 1718 0 1
8 110 294 0 1
9 1143 952 1 1
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 9 2 1 7 False
1 23 0 1 1 False
2 15 0 1 11 False
3 15 0 2 9 False
4 20 2 0 9 False
5 27 2 2 8 True
6 24 1 3 3 True
7 13 1 2 6 True
8 16 0 0 9 True
9 51 3 4 19 True ]
aidan_matches = match_data(apikey, aidan_norms)
aidan_matches
[ assists baronKills bountyLevel champLevel championName \
0 6 0 1 12 Gangplank
1 11 0 0 13 RekSai
2 4 0 0 13 Zed
3 15 0 0 12 Caitlyn
4 9 0 14 13 Lux
5 2 0 2 14 Darius
6 5 0 0 11 Kayn
7 3 0 0 12 Qiyana
8 1 0 0 11 Jhin
9 8 0 0 12 Nami
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 1405 1405 1405
1 946 25474 946
2 2718 4381 2718
3 10058 11572 10058
4 9394 11852 9394
5 3699 4031 3699
6 440 10964 440
7 1767 4173 1767
8 0 1334 0
9 366 891 366
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 6 1 0 False False
1 3 3 2 False False
2 5 0 0 False False
3 3 1 0 False False
4 1 0 0 False False
5 4 0 0 False True
6 13 1 1 False False
7 4 2 0 False False
8 5 1 0 False False
9 4 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 True False False
4 False True False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 6697 TOP 0
1 False 9014 JUNGLE 1
2 False 9116 MIDDLE 0
3 False 10296 BOTTOM 0
4 False 13129 UTILITY 2
5 False 12183 TOP 0
6 False 7289 JUNGLE 0
7 False 7083 MIDDLE 0
8 False 7123 BOTTOM 0
9 False 5679 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 1 0 3078 2033 3158 2055 1036
1 2 0 6693 2055 3814 3047 0
2 2 0 6692 3158 6676 1036 1036
3 2 0 1055 3006 6671 1037 6676
4 3 0 3853 6655 3041 3165 3020
5 0 3 3193 3047 0 3078 3053
6 0 3 6692 2031 3070 3158 3134
7 0 3 2033 6693 1037 3158 3134
8 0 3 6671 3009 1037 3134 0
9 0 3 3851 6617 3114 0 3158
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 1036 3340 0 1 0 1
1 0 3364 1 3 2 1
2 0 3340 1 7 5 1
3 0 3340 2 4 2 1
4 1058 3340 1 15 14 3
5 0 3340 2 10 5 2
6 0 3364 0 2 0 1
7 0 3340 0 1 0 1
8 1055 3340 1 4 2 1
9 2003 3364 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 511 4030 2540
1 961 6711 0
2 491 4814 708
3 980 558 444
4 458 84504 27748
5 859 178 0
6 227 5430 1094
7 908 3834 248
8 501 4652 702
9 509 8712 2626
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 459 0 0 1
1 2372 116 0 0
2 484 0 0 0
3 2088 8 0 0
4 1208 4 0 0
5 6553 4 1 0
6 7951 80 1 0
7 5208 4 1 0
8 7628 0 1 0
9 5302 0 1 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 34200 5140 10718
1 85046 6598 14792
2 68491 14943 11776
3 89708 8833 7794
4 7893 1507 5026
5 111384 16154 16095
6 73003 8247 19125
7 80720 3843 10727
8 62298 4067 6815
9 1711 198 5294
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 SOLO 2 12 4 4
1 NONE 4 4 10 11
2 SOLO 4 14 3 4
3 CARRY 3 4 3 7
4 SUPPORT 3 4 6 14
5 DUO 4 4 5 6
6 NONE 16 11 4 4
7 DUO 3 14 2 4
8 CARRY 4 7 2 4
9 SUPPORT 3 4 1 3
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 116 Sandwichcombo False 100 TOP
1 121 JosephJoZhao False 100 JUNGLE
2 174 rushinfridge False 100 MIDDLE
3 156 Coachfunk776 False 100 BOTTOM
4 312 Tsunami911 False 100 UTILITY
5 264 StalwartHide False 200 TOP
6 188 GingyPlayz False 200 JUNGLE
7 194 Kunorebi False 200 MIDDLE
8 96 Dublaiar False 200 BOTTOM
9 50 laineybon False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 5 1489 41530 8412
1 10 1489 110443 7204
2 5 1489 74445 16790
3 4 1489 96162 9278
4 48 1489 95699 30637
5 19 1489 117716 18450
6 5 1489 90439 9937
7 12 1489 99356 4394
8 11 1489 68159 4790
9 15 1489 10424 2825
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 12605 2020 73 95
1 18279 9485 7 256
2 12789 1637 123 71
3 10027 2768 122 19
4 6235 401 74 255
5 23849 5142 181 172
6 28179 6574 26 130
7 16373 1231 122 81
8 15139 2196 99 124
9 11019 7133 4 158
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 143 1 3300
1 48 1 18685
2 112 1 1139
3 64 2 5895
4 14 1 3301
5 157 1 6153
6 316 1 12005
7 99 1 14802
8 71 4 1208
9 82 5 0
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 731 1427 1 2
1 605 1114 0 1
2 1139 528 2 4
3 0 144 4 9
4 1381 0 3 8
5 2296 1201 1 1
6 596 1102 1 1
7 302 438 0 1
8 20 694 0 0
9 0 421 0 1
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 2 11 2 1
1 2 13 4 0
2 2 12 0 2
3 2 16 1 0
4 2 36 0 1
5 11 13 0 1
6 11 8 1 1
7 11 15 2 0
8 11 6 1 0
9 11 20 0 1
wardsPlaced win
0 7 True
1 4 True
2 5 True
3 7 True
4 23 True
5 7 False
6 1 False
7 8 False
8 5 False
9 9 False ,
assists baronKills bountyLevel champLevel championName \
0 7 0 0 15 Teemo
1 4 0 0 16 Rengar
2 8 0 2 16 Lux
3 5 0 0 16 Varus
4 10 0 0 15 Taric
5 4 1 0 18 Viego
6 5 1 0 15 Lillia
7 8 0 1 16 Akali
8 7 0 3 15 Jhin
9 13 0 0 15 Sona
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 1367 3461 1367
1 0 18148 0
2 2794 6986 2794
3 0 0 0
4 0 98 0
5 14941 54165 14941
6 878 12287 878
7 371 673 371
8 6213 13522 6213
9 2531 8643 2531
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 15 0 0 False False
1 11 1 0 False False
2 8 0 0 False False
3 4 3 0 False False
4 7 0 0 False False
5 7 0 1 False True
6 8 2 2 False False
7 14 4 0 False False
8 2 1 1 False False
9 2 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 11831 TOP 0
1 False 12187 JUNGLE 0
2 False 13984 MIDDLE 0
3 False 12336 BOTTOM 0
4 False 6935 UTILITY 0
5 False 21990 TOP 0
6 False 9491 JUNGLE 1
7 False 13795 MIDDLE 0
8 False 12755 BOTTOM 1
9 False 8635 UTILITY 2
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 4 1056 3157 3115 3006 4633
1 0 4 6691 3158 3508 6676 3134
2 0 4 3165 6655 3020 3157 1058
3 0 4 3004 6691 6676 3134 3158
4 0 4 3860 2003 3158 3011 1052
5 0 0 6333 3142 3091 3153 6672
6 3 0 6653 2031 3157 3158 1011
7 0 0 4636 1028 3157 3020 3089
8 3 0 6671 3009 6676 3086 3094
9 3 0 3853 6617 3070 3158 1052
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 0 3364 1 8 2 1
1 0 3364 2 8 2 2
2 3135 3340 3 12 6 2
3 1037 3340 1 5 3 1
4 1052 3364 0 0 0 0
5 3074 3364 4 21 9 2
6 1052 3340 0 2 0 1
7 3916 3340 3 15 4 2
8 3123 3340 2 6 3 1
9 0 3364 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 182 91047 20173
1 825 28068 797
2 744 118236 20631
3 1130 5890 2714
4 1064 8579 680
5 631 38400 6279
6 637 71962 6220
7 228 75376 30946
8 1469 9212 3526
9 1475 11410 4037
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 10509 4 1 0
1 10569 120 1 0
2 11606 0 1 0
3 7816 0 1 0
4 11589 0 1 0
5 12592 72 0 1
6 10634 94 0 0
7 17741 0 0 0
8 6001 8 0 0
9 2811 0 0 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 28961 3136 20234
1 126864 15662 26148
2 15448 1641 6165
3 140193 18436 5755
4 4603 76 5665
5 218799 23086 21692
6 16234 212 21678
7 14330 1391 15809
8 130740 9775 11809
9 3009 160 6774
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 NONE 6 4 8 14
1 NONE 14 11 4 4
2 SOLO 5 4 4 14
3 CARRY 5 7 4 4
4 SUPPORT 1 4 0 14
5 NONE 5 4 7 14
6 NONE 13 11 3 4
7 SOLO 5 14 4 4
8 CARRY 2 7 1 4
9 SUPPORT 2 4 1 3
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 381 tigasbuto False 100 TOP
1 287 Drunknmunkee False 100 JUNGLE
2 169 lkuneho False 100 MIDDLE
3 113 kimochi ne False 100 BOTTOM
4 49 Ianneil24 False 100 UTILITY
5 264 StalwartHide False 200 TOP
6 194 Kunorebi False 200 JUNGLE
7 188 GingyPlayz False 200 MIDDLE
8 96 Dublaiar False 200 BOTTOM
9 50 laineybon False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 51 2001 122411 25214
1 9 2001 168937 16920
2 51 2001 145115 24109
3 30 2001 149305 21836
4 5 2001 18069 757
5 16 2001 291413 32947
6 13 2001 106401 7752
7 1 2001 95310 33346
8 28 2001 147951 13680
9 12 2001 16963 4197
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 33228 6595 133 480
1 38531 10110 47 185
2 19069 987 152 458
3 14131 3932 205 241
4 17387 3766 26 29
5 36876 14804 222 205
6 33356 11252 28 197
7 36102 883 115 29
8 18379 4717 190 158
9 9675 14352 9 21
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 458 1 2403
1 402 1 14004
2 303 1 11430
3 156 4 3220
4 244 4 4886
5 254 1 34212
6 260 1 18204
7 475 1 5603
8 84 2 7998
9 86 5 2543
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 1904 2483 0 0
1 461 1813 1 1
2 1835 1298 1 1
3 685 559 0 0
4 0 133 0 0
5 3580 2591 7 7
6 1320 1043 0 2
7 1008 2552 0 0
8 378 568 4 4
9 0 89 0 4
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 11 5 0 0
1 11 17 1 4
2 11 7 0 0
3 11 18 3 1
4 11 22 0 1
5 2 11 1 0
6 2 26 2 1
7 2 32 5 2
8 2 25 2 1
9 2 26 0 2
wardsPlaced win
0 1 False
1 2 False
2 5 False
3 14 False
4 12 False
5 2 True
6 10 True
7 13 True
8 10 True
9 12 True ,
assists baronKills bountyLevel champLevel championName \
0 3 0 1 15 Zyra
1 9 0 11 16 Zac
2 4 0 0 14 MonkeyKing
3 9 0 0 13 Jhin
4 16 0 2 13 Yuumi
5 3 0 0 14 Mordekaiser
6 1 0 0 13 Khazix
7 3 0 0 14 Yone
8 4 0 0 12 Jinx
9 6 0 0 13 Seraphine
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2141 3943 2141
1 484 19855 484
2 3034 5173 3034
3 1591 5517 1591
4 1032 1475 1032
5 933 7164 933
6 322 13643 322
7 2738 4935 2738
8 3001 3001 3001
9 1097 1178 1097
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 2 0 1 False False
1 0 1 1 False False
2 3 3 1 False False
3 2 2 0 False False
4 2 0 0 False False
5 4 0 0 False False
6 5 0 1 False False
7 4 0 0 False False
8 8 2 0 False False
9 8 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 True False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 10788 MIDDLE 0
1 True 13766 JUNGLE 0
2 True 8702 TOP 0
3 True 9069 BOTTOM 0
4 True 7904 UTILITY 0
5 True 8969 TOP 0
6 True 8256 JUNGLE 0
7 True 9508 MIDDLE 0
8 True 9100 BOTTOM 0
9 True 8195 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 0 1056 2031 6653 3020 4637
1 0 0 3047 3067 3075 3083 3068
2 0 0 1055 6632 3047 3071 1036
3 0 0 6671 3009 6676 3086 0
4 0 0 3853 6617 3222 4642 0
5 0 0 1054 4633 3047 4637 1033
6 0 0 6691 2031 3156 3067 1036
7 0 0 6673 3006 3072 1054 0
8 0 0 1036 6672 3085 3006 2003
9 0 0 3853 2031 3011 6617 3158
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 1058 3340 2 8 4 2
1 3211 3364 1 11 11 2
2 1036 3340 0 3 0 1
3 1055 3363 1 3 3 1
4 0 3364 1 3 2 1
5 1028 3340 0 0 0 0
6 1001 3340 0 3 0 1
7 0 3340 0 1 0 1
8 1036 3363 0 3 0 1
9 3108 3364 0 2 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 1193 102699 15641
1 0 172525 17538
2 843 18209 1541
3 1032 3513 618
4 556 10911 7851
5 632 66353 7196
6 480 6059 217
7 746 15282 3202
8 752 1124 700
9 775 61881 13744
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 4438 4 0 0
1 8428 169 0 0
2 7454 8 0 0
3 4839 4 0 0
4 2565 0 0 0
5 8294 12 0 0
6 5800 104 0 0
7 8659 8 0 0
8 12232 4 0 0
9 10187 0 0 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 16652 1115 8030
1 23932 1368 18297
2 57711 5197 8794
3 86251 7847 7213
4 1782 1150 5911
5 30991 1200 9783
6 73236 4993 14223
7 94433 8209 6584
8 79991 12260 6246
9 5534 1237 5727
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 SOLO 2 4 2 14
1 NONE 3 4 20 11
2 SOLO 1 14 3 4
3 CARRY 3 7 2 4
4 SUPPORT 3 4 4 14
5 SOLO 2 12 1 4
6 NONE 3 4 14 11
7 SOLO 5 4 6 14
8 CARRY 3 4 5 7
9 SUPPORT 5 4 6 3
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 145 Ultimate Arbiter False 100 MIDDLE
1 191 Coolgum15 False 100 JUNGLE
2 193 Kunorebi False 100 TOP
3 96 Dublaiar False 100 BOTTOM
4 137 Alece False 100 UTILITY
5 106 crabby boi False 200 TOP
6 34 xBlazeRunner False 200 JUNGLE
7 94 Black Leeroy False 200 MIDDLE
8 329 S2GodS2 False 200 BOTTOM
9 368 TheFalseProphet False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 35 1856 122555 17465
1 44 1856 209973 19784
2 8 1856 77724 6823
3 23 1856 95109 8465
4 27 1856 13035 9343
5 5 1856 97993 8725
6 1 1856 92988 5287
7 12 1856 119768 14426
8 24 1856 89935 13962
9 35 1856 67416 14982
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 13882 769 184 228
1 27795 42937 66 604
2 17724 2908 142 13
3 12349 2799 143 89
4 8799 14550 3 45
5 18508 4819 166 28
6 20285 9405 6 69
7 15562 346 168 64
8 18979 3951 149 66
9 16414 1770 43 297
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 91 1 3203
1 0 7 13516
2 79 1 1804
3 66 2 5344
4 37 5 340
5 114 1 648
6 127 1 13692
7 111 1 10052
8 220 3 8819
9 231 5 0
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 708 1413 1 2
1 878 1069 1 2
2 84 1475 1 2
3 0 295 0 2
4 340 321 0 2
5 327 430 1 2
6 76 262 1 1
7 3014 318 1 3
8 1001 500 0 2
9 0 499 1 2
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 4 8 0 0
1 4 25 1 7
2 4 30 3 1
3 4 27 2 1
4 4 27 0 3
5 3 16 0 2
6 3 20 0 2
7 3 16 0 0
8 3 21 4 3
9 3 42 1 1
wardsPlaced win
0 5 True
1 5 True
2 12 True
3 11 True
4 10 True
5 9 False
6 9 False
7 10 False
8 11 False
9 19 False ,
assists baronKills bountyLevel champLevel championName \
0 5 0 1 11 Mordekaiser
1 0 0 2 9 MasterYi
2 5 0 0 10 Kayle
3 1 0 7 9 Garen
4 7 0 0 8 Blitzcrank
5 2 0 0 8 Aatrox
6 4 0 0 8 FiddleSticks
7 5 0 0 9 Fizz
8 0 0 2 9 Jhin
9 4 0 0 8 Thresh
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3139 3139 3139
1 0 8967 0
2 180 180 180
3 3386 9877 3386
4 739 739 739
5 0 2709 0
6 0 5676 0
7 933 3196 933
8 0 0 0
9 0 0 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 3 0 0 False False
1 3 0 2 False False
2 3 0 0 False False
3 0 0 0 False True
4 1 2 0 True False
5 6 0 0 False False
6 2 1 0 False False
7 3 0 0 False False
8 4 0 0 False False
9 4 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 5926 TOP 0
1 True 6826 JUNGLE 0
2 True 4199 MIDDLE 0
3 True 7226 BOTTOM 0
4 True 4659 UTILITY 0
5 True 4094 TOP 0
6 True 5440 JUNGLE 0
7 True 4214 MIDDLE 0
8 True 5201 BOTTOM 0
9 True 3707 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 0 1054 2031 4633 3111 1026
1 0 0 6672 3006 1037 0 0
2 0 0 1056 3006 4635 0 0
3 0 0 1055 6671 3006 3134 1037
4 0 0 3859 3009 3190 0 0
5 0 0 2031 3044 1055 3111 3067
6 0 0 6653 3020 1029 2420 0
7 0 0 2033 4636 1001 0 0
8 0 0 6670 3009 0 2003 0
9 0 0 3859 3067 3047 1033 0
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 0 3340 0 3 0 1
1 0 3340 3 9 5 4
2 0 3340 0 0 0 0
3 0 3340 1 7 7 1
4 0 3364 0 0 0 0
5 0 3340 0 2 0 1
6 0 3330 1 4 4 1
7 0 3340 0 1 0 1
8 1055 3340 1 2 2 2
9 1029 3364 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 388 43387 8253
1 445 3675 0
2 412 13955 2695
3 0 345 345
4 879 2839 1536
5 236 0 0
6 776 36128 6036
7 522 12348 4468
8 297 395 300
9 439 4102 2532
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 2558 0 0 0
1 3786 66 0 0
2 4145 0 0 0
3 1460 0 0 0
4 1798 0 0 0
5 7470 8 0 0
6 2214 57 0 0
7 1775 0 0 0
8 1157 0 0 0
9 879 0 0 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 8717 1659 6913
1 45785 6731 8101
2 15685 1765 4299
3 39995 5652 4257
4 4707 1579 3001
5 29369 6171 5175
6 3698 166 7693
7 12042 2329 5448
8 36984 4774 4971
9 2491 570 3813
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 SUPPORT 2 4 2 12
1 SUPPORT 9 11 1 4
2 SUPPORT 1 4 2 12
3 DUO 1 7 2 4
4 SUPPORT 1 4 2 7
5 SUPPORT 2 4 2 12
6 SUPPORT 8 11 2 4
7 SUPPORT 2 4 3 14
8 DUO 2 7 2 4
9 SUPPORT 2 14 1 4
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 117 phobo321 False 100 TOP
1 48 BigCam70 False 100 JUNGLE
2 127 mommalong False 100 MIDDLE
3 139 milkytatas False 100 BOTTOM
4 46 Osirissix False 100 UTILITY
5 108 DuckNacho False 200 TOP
6 112 JAGERDERWAHRHEIT False 200 JUNGLE
7 200 ES CloudStrife False 200 MIDDLE
8 96 Dublaiar False 200 BOTTOM
9 104 Shadowlord95 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 2 981 52543 10169
1 2 981 60962 8390
2 4 981 34511 4460
3 11 981 45293 7133
4 16 981 11450 3115
5 12 981 30509 6171
6 31 981 45082 6531
7 6 981 25878 7146
8 8 981 37380 5075
9 23 981 8744 3443
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 9718 1994 78 24
1 11979 5446 6 109
2 8779 2091 77 126
3 5718 1367 99 46
4 5143 722 22 38
5 13201 3613 42 94
6 10572 5599 3 394
7 7924 0 48 72
8 6526 943 94 21
9 5426 206 25 47
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 76 1 439
1 61 1 11500
2 64 4 4870
3 0 2 4951
4 27 4 3903
5 97 1 1140
6 21 1 5254
7 78 0 1488
8 66 1 0
9 70 3 2151
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 255 246 1 1
1 1659 90 0 0
2 0 334 0 0
3 1135 0 1 1
4 0 344 0 1
5 0 555 0 0
6 328 664 0 0
7 348 700 0 0
8 0 397 0 0
9 340 732 0 0
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 0 4 0 0
1 0 11 0 1
2 0 9 0 1
3 0 5 0 0
4 0 20 2 2
5 2 6 0 0
6 2 26 1 0
7 2 5 0 0
8 2 6 0 0
9 2 14 2 1
wardsPlaced win
0 3 True
1 4 True
2 5 True
3 4 True
4 8 True
5 5 False
6 1 False
7 4 False
8 5 False
9 7 False ,
assists baronKills bountyLevel champLevel championName \
0 5 0 0 16 Riven
1 8 0 1 17 MasterYi
2 6 0 0 16 Zed
3 13 0 0 17 Twitch
4 7 0 0 15 Sett
5 19 0 0 18 Gangplank
6 16 2 0 17 Kayn
7 13 0 5 18 Qiyana
8 24 0 0 17 Ashe
9 28 0 1 18 Soraka
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 1111 1111 1111
1 849 34991 849
2 2195 5056 2195
3 2523 2523 2523
4 760 760 760
5 5594 14435 5594
6 2547 25936 2547
7 3526 6337 3526
8 8017 35701 8017
9 1335 3876 1335
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 11 1 0 False False
1 16 0 2 False False
2 11 0 0 False False
3 6 0 0 False False
4 11 2 0 False False
5 8 2 1 True False
6 12 2 3 False True
7 10 0 0 False False
8 7 0 0 False False
9 3 3 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False True False
2 True False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 12260 TOP 0
1 False 18473 JUNGLE 0
2 False 14201 MIDDLE 0
3 False 13821 BOTTOM 0
4 False 7521 UTILITY 0
5 False 16196 TOP 1
6 False 15449 JUNGLE 0
7 False 14235 MIDDLE 1
8 False 17051 BOTTOM 0
9 False 12035 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 2 3071 3158 6630 1031 6609
1 0 2 6672 6676 3124 3006 6675
2 0 2 6691 3036 3158 6676 3123
3 0 2 3123 6672 3006 3085 3031
4 0 2 3857 3009 3066 6631 1031
5 1 0 3042 3078 3053 3158 3075
6 0 0 6630 3158 2031 3071 6333
7 1 0 6693 3042 3158 6609 3134
8 0 0 3033 3026 3153 3006 3031
9 2 0 3853 2065 3157 2055 6616
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 1036 3340 1 5 2 1
1 3072 3340 3 17 4 3
2 6695 3340 1 13 6 1
3 1038 3340 1 5 3 1
4 1028 3364 0 0 0 0
5 3110 3363 3 12 5 2
6 3075 3340 4 14 3 2
7 0 3340 3 12 5 2
8 6672 3340 3 11 5 1
9 3158 3364 2 6 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 292 0 0
1 355 4488 0
2 905 6594 1450
3 1009 0 0
4 782 0 0
5 614 22204 9474
6 490 5067 272
7 359 12162 2737
8 968 4594 3094
9 1040 57554 15496
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 5167 41 1 0
1 7156 136 1 0
2 5344 8 1 0
3 7313 16 1 0
4 8385 0 1 0
5 536 10 0 0
6 1655 103 0 0
7 608 4 0 1
8 1583 22 0 1
9 197 12 0 1
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 1 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 139773 18900 29380
1 142927 30480 38808
2 116292 31738 22178
3 162328 27283 17695
4 27437 5810 23580
5 182650 27085 36238
6 158116 28340 38174
7 129449 27076 26289
8 147289 23612 23488
9 9778 2399 20248
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 SOLO 5 14 6 4
1 NONE 13 11 6 4
2 SOLO 6 14 4 4
3 CARRY 5 4 4 7
4 SUPPORT 1 14 3 4
5 SOLO 3 12 5 4
6 NONE 6 4 13 11
7 SOLO 6 4 6 14
8 CARRY 7 7 5 4
9 SUPPORT 3 4 6 21
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 68 poopydoopyikilu False 100 TOP
1 130 Killerspartan36 False 100 JUNGLE
2 137 Grecko Moria False 100 MIDDLE
3 190 Coolgum15 False 100 BOTTOM
4 95 Dublaiar False 100 UTILITY
5 400 jackhoffdaily False 200 TOP
6 56 Spooktre False 200 JUNGLE
7 199 bresez False 200 MIDDLE
8 262 shelbyelite False 200 BOTTOM
9 184 JadeKmaz False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 27 2316 141777 20479
1 6 2316 190834 45434
2 7 2316 124925 34662
3 13 2316 193909 37519
4 9 2316 37569 7761
5 13 2316 222349 40943
6 28 2316 174406 29259
7 25 2316 143403 31485
8 44 2316 168962 30500
9 56 2316 68136 18371
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 37055 5009 149 161
1 49061 14329 44 174
2 29398 2453 153 152
3 26649 9633 220 332
4 33815 2507 53 29
5 46374 18494 194 401
6 51275 19005 60 303
7 31855 3545 136 88
8 27561 4890 153 594
9 23055 31657 36 434
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 330 1 2004
1 638 1 43417
2 470 1 2038
3 222 4 31580
4 362 1 10132
5 258 1 17495
6 419 1 11222
7 361 1 1792
8 262 4 17077
9 119 5 803
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 1578 2507 0 0
1 14953 3096 2 2
2 1472 1875 0 1
3 10236 1640 0 1
4 1950 1850 1 1
5 4384 9599 4 4
6 646 11445 1 5
7 1672 4956 1 2
8 3793 2489 3 4
9 475 2608 0 3
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 9 24 1 2
1 9 21 0 2
2 9 16 0 3
3 9 20 0 2
4 9 86 2 7
5 3 34 2 0
6 3 26 2 1
7 3 8 0 1
8 3 22 1 1
9 3 69 6 6
wardsPlaced win
0 13 False
1 8 False
2 6 False
3 10 False
4 30 False
5 15 True
6 10 True
7 5 True
8 10 True
9 33 True ,
assists baronKills bountyLevel champLevel championName \
0 1 0 1 14 Veigar
1 2 0 0 11 Rengar
2 0 0 3 13 Fizz
3 7 0 0 12 Ezreal
4 10 0 0 10 Lux
5 1 0 0 12 Teemo
6 2 0 0 10 Kindred
7 5 0 0 12 Azir
8 5 0 0 10 Seraphine
9 3 0 0 10 Ashe
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2839 2839 2839
1 89 33554 89
2 2035 2035 2035
3 5984 8905 5984
4 538 3301 538
5 1558 1558 1558
6 0 1706 0
7 1940 1940 1940
8 0 96 0
9 463 734 463
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 2 0 0 False False
1 3 4 3 False False
2 4 0 0 False False
3 1 0 0 False True
4 2 4 0 True False
5 5 0 0 False False
6 8 2 0 False False
7 4 0 0 False False
8 5 0 0 False False
9 6 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False True False
2 False False False
3 True False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 8086 TOP 0
1 True 6342 JUNGLE 0
2 True 8783 MIDDLE 0
3 True 9446 BOTTOM 0
4 True 6736 UTILITY 0
5 True 6105 TOP 0
6 True 5588 JUNGLE 0
7 True 8389 MIDDLE 0
8 True 5073 UTILITY 0
9 True 5794 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 0 1056 6656 3070 3020 1026
1 0 0 3508 3158 1042 3067 1036
2 0 0 3041 6655 2033 1052 3158
3 0 0 1055 6632 3158 3004 0
4 0 0 3853 6655 3158 1082 0
5 0 0 1056 6653 3020 0 0
6 0 0 3006 6632 1036 0 0
7 0 0 1056 3157 3020 6655 1042
8 0 0 3851 6617 3020 1052 1004
9 0 0 6672 3006 1036 2031 0
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 1058 3364 1 6 5 1
1 0 3513 1 3 2 1
2 3057 3340 3 10 3 2
3 0 3340 1 6 6 1
4 0 3364 1 3 3 1
5 0 3340 1 2 2 1
6 0 3364 0 1 0 1
7 1042 3340 1 4 2 1
8 0 3364 1 2 2 1
9 1055 3340 0 3 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 634 63250 7739
1 687 16033 365
2 434 54665 12345
3 1080 10641 4961
4 951 16387 4852
5 437 41670 10639
6 289 15155 1099
7 392 58676 14517
8 288 9844 3483
9 500 430 330
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 7833 4 0 0
1 4497 82 0 0
2 8381 4 0 0
3 7294 9 0 0
4 2845 0 0 0
5 6842 0 0 0
6 5736 77 0 0
7 7543 4 0 0
8 4868 0 0 0
9 6795 0 0 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 8088 524 2778
1 52457 4746 11195
2 16949 2936 8889
3 85722 9480 5454
4 2764 336 3431
5 18408 873 5167
6 44254 3853 11604
7 3863 857 3980
8 1997 620 4634
9 27219 4384 4402
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 DUO 4 14 2 4
1 NONE 11 11 2 3
2 DUO 3 12 3 4
3 CARRY 3 4 3 7
4 SUPPORT 3 4 1 14
5 SOLO 3 14 3 4
6 NONE 12 11 3 4
7 SOLO 4 4 2 12
8 SUPPORT 3 4 2 14
9 CARRY 4 7 2 4
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 235 Baconaotr109 False 100 TOP
1 57 whypoof False 100 JUNGLE
2 240 Mozfart False 100 MIDDLE
3 69 kingkongwang False 100 BOTTOM
4 97 Natnat1 False 100 UTILITY
5 200 Azmodien False 200 TOP
6 137 KingTerrific False 200 JUNGLE
7 190 Coolgum15 False 200 MIDDLE
8 137 Alece False 200 UTILITY
9 95 Dublaiar False 200 BOTTOM
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 6 1262 71880 8805
1 4 1262 87672 5312
2 13 1262 75832 15281
3 0 1262 104339 14442
4 30 1262 19528 5564
5 32 1262 60701 12134
6 2 1262 65853 5628
7 8 1262 62540 15374
8 9 1262 11985 4247
9 21 1262 28153 4737
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 10862 624 125 44
1 15836 8271 7 130
2 17607 3501 122 158
3 13272 5056 140 1
4 6485 448 10 119
5 12279 711 106 234
6 17574 6288 15 109
7 11645 2 101 112
8 9719 1711 15 70
9 11476 804 58 286
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 62 1 542
1 79 1 19182
2 110 1 4218
3 35 2 7975
4 61 1 375
5 152 1 622
6 176 8 6443
7 116 1 0
8 101 4 144
9 148 3 503
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 542 250 1 2
1 200 144 1 1
2 0 337 1 1
3 0 524 1 2
4 375 208 0 0
5 622 270 0 0
6 675 232 0 0
7 0 120 0 0
8 144 216 0 0
9 22 277 0 0
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 0 6 0 1
1 0 18 4 1
2 0 7 0 0
3 0 2 0 0
4 0 38 4 3
5 4 9 0 1
6 4 18 2 5
7 4 9 0 0
8 4 8 0 1
9 4 9 0 0
wardsPlaced win
0 2 True
1 7 True
2 6 True
3 1 True
4 17 True
5 5 False
6 3 False
7 5 False
8 5 False
9 5 False ,
assists baronKills bountyLevel champLevel championName \
0 2 0 0 12 Kayn
1 3 0 0 13 Sejuani
2 3 0 0 10 Malzahar
3 3 0 0 12 Draven
4 7 0 0 10 Soraka
5 5 0 0 13 Kayle
6 7 0 3 14 Shyvana
7 6 0 5 14 Syndra
8 4 0 1 11 MissFortune
9 5 0 1 10 Sett
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 697 697 697
1 445 15696 445
2 0 519 0
3 2554 5558 2554
4 996 996 996
5 2208 2883 2208
6 699 16309 699
7 4695 4695 4695
8 2644 5037 2644
9 1948 3104 1948
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 4 0 0 False False
1 3 3 1 False False
2 5 0 0 False False
3 5 0 0 False False
4 5 5 0 False False
5 4 3 0 False False
6 1 0 2 False False
7 1 2 0 False True
8 3 0 0 False False
9 3 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 6471 TOP 0
1 True 8898 JUNGLE 0
2 True 4838 MIDDLE 0
3 True 9968 BOTTOM 0
4 True 5886 UTILITY 0
5 True 7171 TOP 0
6 True 10084 JUNGLE 0
7 True 11070 MIDDLE 0
8 True 7127 BOTTOM 0
9 True 5481 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 0 1054 3111 6630 1028 1036
1 0 0 3047 2031 3068 8001 3076
2 0 0 1056 6653 3020 0 0
3 0 0 1055 3006 3508 6673 1037
4 0 0 6617 3853 3114 3158 2055
5 0 0 3115 4635 1026 1056 3006
6 0 0 3020 6631 2031 3135 3067
7 0 0 3020 6655 3157 1058 1056
8 0 0 1055 6672 3006 3134 0
9 0 0 3857 3051 3047 6029 1028
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 0 3340 0 1 0 1
1 1028 3364 1 5 3 1
2 0 3340 0 0 0 0
3 0 3340 1 5 2 2
4 1028 3364 0 1 0 1
5 0 3340 0 2 0 1
6 3108 3364 2 8 5 3
7 1058 3340 2 8 5 2
8 0 3340 1 3 2 1
9 2055 3364 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 962 0 0
1 582 39451 3369
2 499 32074 6109
3 439 0 0
4 438 10211 4652
5 714 41139 6966
6 906 89166 15175
7 858 105297 22810
8 602 2947 878
9 593 0 0
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 12435 0 0 0
1 9180 96 0 0
2 8421 0 0 0
3 8938 8 0 0
4 7397 0 0 0
5 2557 16 0 0
6 5974 140 0 0
7 3625 4 0 0
8 1493 4 0 0
9 2664 0 0 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 1 0 2
2 0 1 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 58594 8066 8586
1 64936 5280 12774
2 7868 166 3509
3 107572 16640 9120
4 2504 461 2749
5 27527 3889 9344
6 49056 5985 19085
7 9543 721 5269
8 43070 7163 6171
9 14150 3344 7577
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 NONE 2 4 2 12
1 NONE 2 4 12 11
2 SOLO 3 14 4 4
3 CARRY 3 4 5 7
4 SUPPORT 2 21 3 4
5 SOLO 2 12 3 4
6 NONE 3 4 17 11
7 SOLO 3 4 4 1
8 CARRY 3 4 3 7
9 SUPPORT 3 14 0 4
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 359 EternityAwaits False 100 TOP
1 171 Timaze False 100 JUNGLE
2 114 FutureBoy613 False 100 MIDDLE
3 267 Super Rainbowman False 100 BOTTOM
4 165 Pog Champîon False 100 UTILITY
5 292 CoolRai3r False 200 TOP
6 221 SailedCashew False 200 JUNGLE
7 190 Coolgum15 False 200 MIDDLE
8 137 Alece False 200 BOTTOM
9 95 Dublaiar False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 15 1423 61314 8066
1 16 1423 116411 9006
2 27 1423 43819 6757
3 12 1423 111314 16816
4 26 1423 12715 5114
5 4 1423 70740 11124
6 9 1423 148948 22496
7 29 1423 114840 23532
8 5 1423 54197 8669
9 5 1423 20762 4312
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 22221 4161 120 180
1 23110 7486 33 301
2 12092 3 73 227
3 18685 5011 163 109
4 10201 11984 16 142
5 12017 2137 110 140
6 25443 10775 21 230
7 9376 1984 161 219
8 7681 2031 108 84
9 10257 497 31 14
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 106 1 2720
1 43 3 12024
2 103 1 3877
3 105 3 3742
4 100 5 0
5 105 3 2073
6 32 1 10726
7 32 1 0
8 62 3 8179
9 56 1 6612
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 0 1199 0 0
1 356 1155 0 0
2 482 162 0 0
3 176 626 1 1
4 0 54 0 1
5 268 116 0 0
6 1336 384 0 1
7 0 482 1 1
8 626 16 1 1
9 967 16 0 1
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 4 10 0 1
1 4 20 3 2
2 4 6 0 0
3 4 10 0 3
4 4 42 7 6
5 1 20 3 2
6 1 10 2 1
7 1 20 2 1
8 1 13 0 3
9 1 29 3 4
wardsPlaced win
0 6 False
1 5 False
2 4 False
3 7 False
4 16 False
5 10 True
6 4 True
7 8 True
8 6 True
9 16 True ,
assists baronKills bountyLevel champLevel championName \
0 8 0 0 17 Akali
1 14 0 0 17 Evelynn
2 11 0 0 18 Gangplank
3 15 0 0 18 Ashe
4 14 0 0 17 Sett
5 17 0 1 18 Darius
6 23 1 0 18 TahmKench
7 17 0 6 18 Lux
8 17 0 2 18 Jinx
9 21 0 1 16 Leona
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 0 1913 0
1 525 1563 525
2 1635 4406 1635
3 5738 24795 5738
4 1807 2841 1807
5 8599 16686 8599
6 2973 38150 2973
7 7493 8268 7493
8 3614 18887 3614
9 1140 6123 1140
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 15 1 0 False False
1 13 0 1 False False
2 13 0 0 False False
3 8 0 2 False True
4 13 1 0 True False
5 8 1 0 False False
6 12 4 3 False False
7 3 1 0 False False
8 12 1 0 False False
9 9 3 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False True False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 11182 TOP 0
1 False 13776 JUNGLE 0
2 False 17606 MIDDLE 0
3 False 21693 BOTTOM 0
4 False 13876 UTILITY 0
5 False 18272 TOP 1
6 False 14538 JUNGLE 1
7 False 21376 MIDDLE 1
8 False 19008 BOTTOM 0
9 False 12094 UTILITY 1
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 4 3157 4637 4633 3020 1082
1 0 4 3020 4636 3100 1058 3135
2 0 4 6632 3158 6676 3036 3033
3 0 4 6672 3046 3006 3124 3072
4 0 4 3857 3009 3742 6631 3075
5 4 0 3133 6631 3047 3053 3742
6 1 0 6662 3742 3065 3111 3075
7 2 0 3157 3102 6655 3020 3135
8 1 0 6671 3006 3031 3046 3085
9 1 0 3860 3190 3050 3117 3075
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 0 3340 1 3 2 2
1 1058 3340 1 8 2 1
2 3072 3363 1 9 5 3
3 3085 3340 4 16 8 2
4 4401 3364 1 8 2 1
5 3065 3340 3 14 4 2
6 1037 3364 1 6 2 1
7 3165 3363 3 21 8 2
8 3094 3340 4 15 3 3
9 1011 3364 1 5 2 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 425 99617 23001
1 428 102102 24660
2 466 34678 12119
3 725 5165 3289
4 551 1783 215
5 870 770 422
6 282 125328 16221
7 1163 199663 58397
8 534 8671 4323
9 439 16117 7244
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 15789 5 1 0
1 17878 113 1 0
2 17982 4 1 0
3 14718 9 1 0
4 20778 4 1 0
5 21655 8 0 1
6 16552 158 0 1
7 4745 20 0 1
8 15680 29 0 1
9 8863 1 0 1
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 23462 2098 31559
1 10550 362 20908
2 270255 17069 21858
3 285433 55240 15112
4 52386 11578 25639
5 184166 36874 33259
6 41170 4176 37137
7 21918 2478 7571
8 236458 32756 18588
9 12672 2948 23305
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 SOLO 4 12 7 4
1 NONE 13 11 7 4
2 SOLO 7 4 8 14
3 CARRY 6 4 6 7
4 SUPPORT 7 14 3 4
5 SOLO 5 12 5 4
6 NONE 22 11 6 4
7 SOLO 2 21 2 4
8 CARRY 7 7 6 4
9 SUPPORT 8 4 10 14
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 119 Grindr Account False 100 TOP
1 137 SlothoftheAbyss False 100 JUNGLE
2 185 DarkZexi False 100 MIDDLE
3 190 Coolgum15 False 100 BOTTOM
4 95 Dublaiar False 100 UTILITY
5 93 darkblade2000 False 200 TOP
6 325 TonyTalonucci False 200 JUNGLE
7 122 Sir Karagas False 200 MIDDLE
8 131 Adn8r False 200 BOTTOM
9 100 Avantell False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1 2600 148025 26552
1 23 2600 120250 25586
2 24 2600 318497 33364
3 107 2600 317517 67388
4 33 2600 76660 20739
5 41 2600 199829 41295
6 47 2600 190775 23564
7 82 2600 223375 61321
8 34 2600 271154 37548
9 55 2600 37769 12134
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 48926 9073 153 84
1 40203 10456 18 339
2 42655 8486 267 640
3 31011 3604 268 1447
4 49454 1854 69 146
5 62512 24254 201 203
6 60834 22836 32 1510
7 13987 1093 225 603
8 36306 12022 205 150
9 37712 6947 43 89
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 516 1 24945
1 519 1 7598
2 511 1 13563
3 291 4 26917
4 378 1 22490
5 373 1 14892
6 431 1 24274
7 148 1 1794
8 366 3 26024
9 275 5 8980
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 1452 1576 0 0
1 564 1415 0 0
2 4175 2814 1 1
3 8858 1180 2 2
4 8945 3036 0 1
5 3998 7598 3 7
6 3167 7144 1 5
7 446 1671 4 5
8 469 2037 2 6
9 1942 5543 1 6
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 11 5 1 1
1 11 23 0 3
2 11 24 0 2
3 11 31 0 3
4 11 64 1 8
5 3 30 1 1
6 3 26 4 3
7 3 45 1 5
8 3 25 1 3
9 3 62 3 5
wardsPlaced win
0 3 False
1 11 False
2 14 False
3 14 False
4 29 False
5 16 True
6 5 True
7 16 True
8 14 True
9 20 True ,
assists baronKills bountyLevel champLevel championName \
0 3 0 3 15 Fiora
1 12 1 0 17 Garen
2 17 0 0 17 Ziggs
3 10 0 7 18 Kaisa
4 16 0 0 14 Leona
5 3 0 0 15 Akali
6 7 0 0 15 Lillia
7 7 0 0 15 Irelia
8 11 0 0 16 Ashe
9 15 0 0 13 Senna
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 0 6046 0
1 576 22655 576
2 13314 26315 13314
3 12092 30774 12092
4 0 3012 0
5 724 1439 724
6 804 23686 804
7 2986 9732 2986
8 6179 10628 6179
9 1323 3044 1323
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 2 0 1 False False
1 5 2 2 False False
2 4 0 0 False False
3 5 0 1 False True
4 7 5 0 False False
5 7 0 0 False False
6 7 1 0 False False
7 9 0 1 False False
8 4 0 0 False False
9 6 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 True False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 9682 TOP 0
1 False 13141 JUNGLE 1
2 False 14100 MIDDLE 0
3 False 17309 BOTTOM 1
4 False 9239 UTILITY 0
5 False 9290 TOP 0
6 False 11924 JUNGLE 0
7 False 11505 MIDDLE 0
8 False 15133 BOTTOM 0
9 False 9350 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 0 1055 6631 3047 3508 3077
1 1 0 3078 3006 3742 3075 3044
2 0 0 4628 3157 6653 3003 3158
3 1 0 6672 1038 3006 3085 3094
4 0 0 3860 3190 3111 3075 3067
5 0 2 4633 3020 3157 3916 1054
6 0 2 4637 3157 6653 3020 3916
7 0 2 1055 3047 0 3153 6673
8 0 2 6672 3006 3046 3072 3124
9 0 2 3864 6662 3009 3053 3067
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 1036 3340 2 6 3 1
1 1037 3340 2 7 3 1
2 0 3340 1 8 6 2
3 3508 3340 1 8 7 2
4 1011 3364 1 4 3 2
5 0 3364 0 2 0 2
6 0 3340 2 6 2 2
7 6677 3340 0 3 0 1
8 3086 3340 1 10 8 2
9 2055 3364 1 2 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 1387 2848 748
1 795 7617 742
2 759 163411 35634
3 1052 33108 7364
4 428 8913 4863
5 689 78833 8327
6 632 106505 11566
7 646 7568 1571
8 1519 2770 2570
9 832 2493 651
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 6815 4 0 0
1 8990 154 0 0
2 4883 0 0 0
3 3378 57 0 1
4 4824 0 0 0
5 4984 4 1 0
6 10994 131 1 0
7 15466 4 1 0
8 9426 4 1 0
9 11315 0 1 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 48427 5905 8450
1 134808 7389 20070
2 18000 1416 6592
3 213314 15555 14653
4 7953 2022 12775
5 15322 195 13601
6 23597 563 21816
7 120277 4018 12204
8 162478 24316 8128
9 19320 7945 6668
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 SOLO 4 4 2 14
1 NONE 3 4 21 11
2 SOLO 2 12 5 4
3 CARRY 5 4 4 7
4 SUPPORT 2 4 7 14
5 SOLO 3 12 1 4
6 NONE 16 11 3 4
7 SOLO 2 14 4 4
8 CARRY 4 4 5 7
9 SUPPORT 2 14 3 4
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 68 ItsyoboiskinnyJ False 100 TOP
1 92 TTheUglyOne False 100 JUNGLE
2 222 MrxPainTrain False 100 MIDDLE
3 183 MrFlufferNutz False 100 BOTTOM
4 367 MrsChaos43 False 100 UTILITY
5 172 moondarkwindhigh False 200 TOP
6 123 trizzo7 False 200 JUNGLE
7 137 SlothoftheAbyss False 200 MIDDLE
8 190 Coolgum15 False 200 BOTTOM
9 95 Dublaiar False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 4 2033 70213 8921
1 16 2033 167376 14147
2 20 2033 191740 37082
3 4 2033 288902 25626
4 39 2033 22649 7570
5 1 2033 94400 8725
6 11 2033 177020 15898
7 5 2033 137954 5813
8 62 2033 190034 29361
9 15 2033 21912 8694
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 16059 4727 109 33
1 31113 9602 43 284
2 12553 2028 219 249
3 18431 8364 231 95
4 20043 2818 40 69
5 21638 3403 166 66
6 33500 13281 44 308
7 31259 4438 203 21
8 18864 3300 228 814
9 21049 5978 19 251
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 84 5 18938
1 158 1 24950
2 152 1 10328
3 106 2 42479
4 161 1 5782
5 232 1 244
6 214 1 46918
7 314 1 10108
8 144 3 24786
9 208 5 98
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 2268 793 0 0
1 6016 2051 1 1
2 32 1077 2 2
3 2706 400 6 6
4 684 2444 0 0
5 202 3052 0 0
6 3768 690 1 3
7 224 3588 1 1
8 2474 1309 3 4
9 98 3066 0 2
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 5 14 0 0
1 5 30 3 1
2 5 13 0 0
3 5 17 0 0
4 5 94 5 10
5 9 15 0 2
6 9 29 1 1
7 9 16 0 0
8 9 23 0 3
9 9 49 3 8
wardsPlaced win
0 9 True
1 13 True
2 10 True
3 11 True
4 37 True
5 7 False
6 12 False
7 10 False
8 8 False
9 23 False ,
assists baronKills bountyLevel champLevel championName \
0 6 0 1 15 Volibear
1 5 1 0 16 Kindred
2 9 0 1 16 Seraphine
3 9 0 0 14 Jhin
4 11 0 0 13 Senna
5 7 0 2 18 Kayle
6 6 0 0 16 Kayn
7 10 0 0 16 Ekko
8 16 0 1 14 Yuumi
9 12 1 0 14 Chogath
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 0 1864 0
1 0 21945 0
2 2772 6144 2772
3 984 3619 984
4 521 2633 521
5 13340 44596 13340
6 2673 14072 2673
7 4095 4095 4095
8 3905 10606 3905
9 3559 8738 3559
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 11 1 0 False False
1 6 2 1 False False
2 7 0 0 False False
3 10 1 0 True False
4 11 1 0 False True
5 4 1 0 False False
6 6 0 1 False False
7 5 0 0 False False
8 5 1 1 False False
9 6 0 1 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False True False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 8782 TOP 0
1 False 14401 JUNGLE 0
2 False 13216 MIDDLE 0
3 False 11313 BOTTOM 0
4 False 8474 UTILITY 0
5 False 16582 TOP 0
6 False 13995 JUNGLE 2
7 False 14497 MIDDLE 0
8 False 11752 BOTTOM 0
9 False 8469 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 2 1054 6632 3047 3076 1011
1 0 2 6672 3085 3031 3006 6676
2 0 2 3041 4629 6653 3020 3102
3 0 2 3094 6671 3134 3006 1037
4 0 2 3864 3009 6662 3053 3067
5 0 0 3089 3115 3006 4633 4637
6 2 0 6691 6676 3117 3814 6694
7 1 0 3041 4636 3157 3020 3100
8 0 0 3085 6672 3124 3006 1042
9 0 0 3860 2003 3083 3047 6660
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 1057 3340 0 3 0 1
1 0 3340 3 9 3 1
2 0 3340 0 6 0 1
3 1055 3340 1 5 2 1
4 0 3364 1 2 2 1
5 1043 3340 3 14 7 3
6 0 3364 3 11 4 2
7 1058 3340 4 14 4 2
8 0 3340 1 4 3 1
9 1033 3340 0 2 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 342 31834 3576
1 895 24446 3055
2 631 143575 23090
3 457 8226 2754
4 482 5546 926
5 516 167444 30494
6 686 8462 2713
7 642 108518 29683
8 788 8922 3315
9 651 24894 4822
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 24451 12 1 0
1 12387 139 1 0
2 10499 0 1 0
3 10641 7 1 0
4 15249 0 1 0
5 8354 40 0 1
6 6527 152 0 1
7 7501 4 0 0
8 4922 12 0 0
9 10938 13 0 0
objectivesStolen objectivesStolenAssists participantId \
0 1 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 47965 10393 12075
1 155303 17398 14137
2 10021 698 11221
3 118410 17659 10138
4 20242 6388 7692
5 53380 8474 27630
6 163981 19379 18010
7 18871 4553 18562
8 53242 2524 9487
9 8924 765 22215
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 SOLO 4 4 3 12
1 NONE 4 4 15 11
2 SOLO 3 4 6 21
3 CARRY 4 4 4 7
4 SUPPORT 5 14 4 4
5 NONE 3 12 5 4
6 NONE 15 11 5 4
7 SOLO 7 14 5 4
8 CARRY 2 4 0 12
9 SUPPORT 5 4 5 7
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 53 gigits27 False 100 TOP
1 292 AzuStar False 100 JUNGLE
2 417 Graythe False 100 MIDDLE
3 189 Coolgum15 False 100 BOTTOM
4 95 Dublaiar False 100 UTILITY
5 174 BigBoiBingBong False 200 TOP
6 182 Borderpopo False 200 JUNGLE
7 237 Bubo False 200 MIDDLE
8 184 SuperslugG False 200 BOTTOM
9 43 MitsUwUbishi False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 26 1926 87994 14000
1 11 1926 201234 24090
2 37 1926 156376 23963
3 21 1926 129022 20413
4 17 1926 26571 8097
5 10 1926 234215 41353
6 9 1926 181258 23072
7 29 1926 130001 36025
8 24 1926 67529 5839
9 35 1926 48471 7683
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 37630 4485 96 232
1 27905 13395 61 256
2 22699 4160 186 273
3 22242 4414 159 100
4 25262 6910 14 246
5 36816 21002 199 217
6 27491 12526 28 241
7 29168 7086 152 307
8 14877 6070 124 29
9 38419 5001 34 238
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 299 1 8195
1 202 14 21484
2 212 5 2780
3 305 3 2385
4 274 5 782
5 144 4 13391
6 222 1 8814
7 148 1 2611
8 191 5 5364
9 131 3 14652
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 30 1103 0 0
1 3636 1381 0 0
2 175 978 1 1
3 0 1462 0 0
4 782 2321 0 0
5 2384 831 4 5
6 978 2954 2 2
7 1789 3104 0 3
8 0 467 2 3
9 2094 5265 1 3
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 10 16 1 1
1 10 30 2 0
2 10 11 0 0
3 10 14 1 0
4 10 49 1 3
5 1 31 1 1
6 1 10 0 4
7 1 14 0 2
8 1 6 1 0
9 1 22 0 0
wardsPlaced win
0 11 False
1 11 False
2 8 False
3 9 False
4 23 False
5 9 True
6 0 True
7 7 True
8 5 True
9 17 True ,
assists baronKills bountyLevel champLevel championName \
0 8 0 0 15 Renekton
1 8 0 1 14 Olaf
2 12 0 3 14 Neeko
3 8 0 2 13 Vayne
4 19 0 1 13 Senna
5 4 0 0 14 Gnar
6 1 0 0 11 Amumu
7 3 0 0 12 Pantheon
8 1 0 1 13 Tristana
9 7 0 0 11 Taric
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 6876 12260 6876
1 2608 20565 2608
2 4255 7395 4255
3 6644 16399 6644
4 1879 5472 1879
5 5312 6400 5312
6 314 3874 314
7 0 0 0
8 5782 5782 5782
9 25 25 25
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 4 0 0 False False
1 4 0 1 False False
2 0 2 1 False False
3 3 0 1 False False
4 1 1 0 False False
5 6 0 0 False True
6 5 0 1 False False
7 9 1 0 False False
8 4 0 0 False False
9 7 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 11331 TOP 0
1 False 14432 JUNGLE 0
2 False 9201 MIDDLE 1
3 False 10698 BOTTOM 0
4 False 8414 UTILITY 0
5 False 10421 TOP 0
6 False 7670 JUNGLE 0
7 False 6752 MIDDLE 0
8 False 11641 BOTTOM 0
9 False 6052 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 0 3026 3047 3053 2055 0
1 1 0 3047 6630 2031 3053 3026
2 1 0 1056 0 3157 6655 3020
3 0 0 1055 6672 3006 3046 6677
4 1 0 3864 3009 6662 3053 0
5 0 1 6631 1055 3047 3742 3076
6 0 1 3111 3068 3076 1011 0
7 0 1 1055 6692 3047 3133 1036
8 0 1 1018 0 3036 6676 6672
9 0 1 3860 2055 3070 3076 3190
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 6630 3340 2 5 2 1
1 3075 3340 2 16 13 3
2 0 3340 1 3 3 1
3 1018 3340 2 5 3 2
4 2055 3364 0 2 0 1
5 1011 3340 1 4 2 1
6 0 3340 0 1 0 1
7 0 3340 0 2 0 1
8 3006 3340 1 5 2 1
9 3047 3364 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 743 4096 2556
1 981 5581 170
2 1713 84034 20484
3 549 0 0
4 1312 2108 552
5 757 9064 4464
6 570 68196 7789
7 398 6070 825
8 466 25993 1946
9 929 8034 3437
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 7672 26 0 1
1 7310 100 0 0
2 1007 4 0 1
3 1627 24 0 1
4 1999 4 0 1
5 5769 3 1 0
6 4618 104 1 0
7 7582 0 1 0
8 2809 18 1 0
9 4709 0 1 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 1 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 125195 10020 21434
1 132875 20891 30077
2 13460 953 7591
3 94778 6454 14583
4 19971 8446 6100
5 98930 15464 16657
6 14710 806 11751
7 44016 7359 10839
8 135143 24032 11513
9 3724 969 9908
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 SOLO 4 4 3 12
1 NONE 5 4 16 11
2 SOLO 2 4 4 14
3 CARRY 3 4 5 7
4 SUPPORT 3 14 2 4
5 SOLO 4 4 2 12
6 NONE 3 4 15 11
7 SOLO 2 14 4 4
8 CARRY 4 4 5 7
9 SUPPORT 5 3 4 4
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 124 Fludd47 False 100 TOP
1 169 Wabi Sabi False 100 JUNGLE
2 208 RÉINA False 100 MIDDLE
3 189 Coolgum15 False 100 BOTTOM
4 95 Dublaiar False 100 UTILITY
5 373 BooBaa False 200 TOP
6 47 bobjoe333 False 200 JUNGLE
7 81 Dreamy Eyez False 200 MIDDLE
8 236 NikkiNguyen False 200 BOTTOM
9 97 ChillinYetis False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 13 1718 133714 12744
1 25 1718 168259 30074
2 40 1718 99533 21712
3 4 1718 116824 9633
4 31 1718 22766 9661
5 35 1718 109554 19928
6 20 1718 95124 9749
7 12 1718 54206 8784
8 7 1718 174785 30639
9 21 1718 16838 4412
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 31247 10453 154 48
1 39551 19551 62 570
2 8845 1942 139 147
3 17218 8061 147 44
4 8961 11762 12 259
5 26099 4700 141 398
6 18956 3784 35 155
7 20022 1762 94 26
8 16288 4032 211 64
9 18088 3517 26 52
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 157 1 4423
1 84 1 29802
2 0 1 2039
3 84 4 22046
4 34 5 686
5 156 1 1560
6 161 1 12216
7 253 1 4119
8 119 3 13648
9 209 5 5079
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 168 2140 2 5
1 9013 2163 1 2
2 274 245 1 3
3 3178 1007 2 5
4 662 860 2 4
5 0 3672 2 2
6 1152 2586 0 0
7 599 1601 0 0
8 4660 1965 1 1
9 6 3470 0 0
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 3 6 2 0
1 3 20 0 1
2 3 17 2 1
3 3 14 0 0
4 3 31 2 5
5 8 14 0 0
6 8 18 0 1
7 8 11 1 2
8 8 10 0 1
9 8 23 2 2
wardsPlaced win
0 4 True
1 9 True
2 11 True
3 8 True
4 11 True
5 9 False
6 6 False
7 6 False
8 8 False
9 11 False ,
assists baronKills bountyLevel champLevel championName \
0 5 0 5 14 Syndra
1 11 1 8 14 Zac
2 8 0 9 15 Irelia
3 6 0 0 12 Caitlyn
4 7 0 0 11 Senna
5 1 0 0 12 Yorick
6 4 0 0 11 LeeSin
7 1 0 0 14 Yone
8 1 0 0 11 Jhin
9 5 0 0 10 Thresh
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 758 7146 758
1 1395 21084 1395
2 7319 17952 7319
3 2242 11604 2242
4 975 4144 975
5 2182 15280 2182
6 28 3332 28
7 4121 5293 4121
8 1592 3196 1592
9 1127 1127 1127
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 3 0 0 False False
1 0 0 2 False False
2 1 1 0 False False
3 3 0 0 False False
4 2 2 0 False False
5 6 1 0 False False
6 4 2 0 False False
7 5 0 0 False True
8 6 1 1 False False
9 4 3 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 8399 MIDDLE 0
1 True 11795 JUNGLE 0
2 True 13171 TOP 0
3 True 7404 BOTTOM 0
4 True 6554 UTILITY 0
5 True 9439 JUNGLE 0
6 True 6368 JUNGLE 0
7 True 10090 MIDDLE 0
8 True 7650 BOTTOM 0
9 True 5289 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 0 2424 6655 3020 1056 3070
1 0 0 3083 3143 3076 3047 3068
2 0 0 6333 3153 1055 3047 6673
3 0 0 6671 3134 3006 1037 0
4 0 0 3864 3009 6632 3067 1036
5 0 0 3047 3053 6632 1028 1037
6 0 0 6630 2031 3158 3044 0
7 0 0 6673 2031 3006 3031 3123
8 0 0 1055 6671 3009 3134 1018
9 0 0 3859 3190 3117 3801 0
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 0 3340 1 5 5 1
1 0 3340 1 8 8 2
2 0 3340 2 12 9 2
3 0 3340 0 0 0 0
4 0 3364 0 0 0 0
5 0 3340 0 2 0 1
6 0 3340 0 0 0 0
7 1018 3340 1 5 2 1
8 0 3340 0 1 0 1
9 0 3364 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 341 64540 9645
1 0 107983 8927
2 952 27802 7646
3 877 242 148
4 727 0 0
5 479 17368 5630
6 838 18143 1663
7 450 16179 3597
8 563 1092 903
9 567 9225 4350
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 3885 13 0 0
1 4692 121 0 0
2 6635 8 0 0
3 3310 4 0 0
4 2879 0 0 0
5 7882 14 0 0
6 6799 80 0 0
7 6035 6 0 0
8 3376 12 0 0
9 3080 0 0 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 12820 330 6337
1 20485 875 14015
2 132325 18562 16491
3 79163 5267 6687
4 15296 2710 3581
5 78809 7263 11395
6 43708 4276 12886
7 107096 7927 8143
8 77737 7280 8344
9 4049 685 5929
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 SOLO 4 14 2 4
1 NONE 2 4 17 11
2 SOLO 3 4 2 12
3 CARRY 4 4 4 7
4 SUPPORT 3 14 0 4
5 SOLO 4 4 3 12
6 NONE 3 4 13 11
7 SOLO 3 4 3 14
8 CARRY 3 7 3 4
9 SUPPORT 4 4 6 14
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 81 crbbjj False 100 MIDDLE
1 189 Coolgum15 False 100 JUNGLE
2 37 MouseSavior False 100 TOP
3 44 KingSJ13 False 100 BOTTOM
4 95 Dublaiar False 100 UTILITY
5 314 Oz821 False 200 TOP
6 61 yellowsnowball False 200 JUNGLE
7 383 Not Tovoc False 200 MIDDLE
8 112 Brownstreak False 200 BOTTOM
9 38 Humantractor False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 27 1593 80915 10526
1 35 1593 137011 10552
2 15 1593 162978 26208
3 4 1593 85310 5415
4 22 1593 16951 2940
5 7 1593 101676 12894
6 18 1593 72107 6067
7 23 1593 135007 14101
8 16 1593 83104 8228
9 40 1593 16672 6001
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 11560 1740 114 226
1 20244 32295 35 512
2 23646 8682 184 93
3 10124 2149 132 17
4 6653 3583 16 58
5 19827 5077 130 123
6 19817 4683 16 232
7 14694 752 165 123
8 11794 2285 161 36
9 9268 182 18 87
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 71 1 3555
1 0 5 8542
2 35 1 2850
3 46 3 5905
4 45 5 1655
5 159 1 5498
6 118 1 10255
7 123 1 11731
8 143 3 4274
9 103 5 3397
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 550 1337 0 0
1 750 1536 2 3
2 0 520 2 3
3 0 126 0 0
4 230 192 0 1
5 0 550 1 1
6 127 132 0 0
7 2576 516 3 3
8 44 74 0 0
9 966 258 0 0
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 4 10 0 1
1 4 12 0 0
2 4 14 1 0
3 4 16 0 4
4 4 29 2 3
5 5 15 1 2
6 5 20 2 1
7 5 11 1 0
8 5 13 1 2
9 5 22 3 6
wardsPlaced win
0 6 True
1 6 True
2 8 True
3 7 True
4 15 True
5 7 False
6 11 False
7 7 False
8 6 False
9 9 False ,
assists baronKills bountyLevel champLevel championName \
0 1 0 0 18 Irelia
1 1 0 0 14 Vi
2 2 0 0 12 Akali
3 5 0 0 14 Kaisa
4 12 0 0 13 Senna
5 9 0 1 16 Chogath
6 19 2 2 18 Diana
7 7 0 3 17 Pantheon
8 13 0 1 16 Xayah
9 17 0 1 15 Rakan
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 6014 10869 6014
1 2381 11555 2381
2 1319 1319 1319
3 5151 7472 5151
4 3993 5742 3993
5 2038 9501 2038
6 1250 46198 1250
7 4355 11735 4355
8 3681 13303 3681
9 856 1833 856
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 0 0 False True
1 12 0 1 False False
2 15 1 0 False False
3 7 0 1 False False
4 5 0 0 False False
5 9 0 0 False False
6 4 1 1 False False
7 6 1 1 False False
8 4 1 1 False False
9 5 4 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 True False False
1 True False False
2 False False False
3 False True False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 20934 TOP 1
1 True 10186 JUNGLE 0
2 True 6658 MIDDLE 0
3 True 11078 BOTTOM 0
4 True 9206 UTILITY 0
5 True 11673 TOP 0
6 True 14846 JUNGLE 0
7 True 17803 MIDDLE 0
8 True 11304 BOTTOM 1
9 True 9138 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 1 1 6333 3053 3091 6632 3153
1 0 1 6676 2033 3006 3078 0
2 0 1 3020 4633 1056 3191 1052
3 0 1 3115 6672 6676 3006 1052
4 1 1 3864 3190 3009 3179 3133
5 0 1 3193 6662 3047 3075 1006
6 1 1 3089 3157 3152 3165 3020
7 1 1 6692 3153 3111 6609 6676
8 1 1 3006 6671 3508 1055 3086
9 1 1 2065 3158 3050 3860 1052
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 3074 3340 4 21 6 3
1 3067 3340 1 2 2 1
2 0 3340 0 1 0 1
3 0 3340 1 3 2 1
4 1036 3364 0 1 0 1
5 1028 3340 2 6 3 1
6 1052 3364 2 7 3 1
7 3053 3364 4 25 11 4
8 3123 3340 1 5 3 1
9 1004 3364 1 3 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 689 46758 19811
1 258 6107 13
2 380 20536 5303
3 702 8789 4229
4 1412 540 540
5 450 80842 12931
6 814 241089 21539
7 547 8603 2039
8 818 1399 1399
9 633 14479 3892
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 17187 24 0 0
1 7445 88 0 0
2 6975 4 0 0
3 6390 8 0 0
4 4788 0 0 0
5 10001 21 0 0
6 7170 193 0 0
7 6695 16 0 0
8 5325 4 0 0
9 4141 0 0 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 229139 42959 32987
1 124915 6888 22711
2 12169 773 19830
3 110321 10822 14132
4 45991 17035 12272
5 27738 3187 26966
6 39678 3708 28230
7 151226 44611 23287
8 142132 23856 12534
9 5232 957 13626
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 NONE 5 4 3 12
1 NONE 5 11 4 4
2 SOLO 4 12 4 14
3 CARRY 4 4 4 7
4 SUPPORT 7 21 4 4
5 SOLO 5 12 5 4
6 NONE 5 4 17 11
7 SOLO 27 4 9 14
8 CARRY 4 4 3 7
9 SUPPORT 2 14 2 4
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 202 6thblade False 100 TOP
1 28 methamphetameany False 100 JUNGLE
2 41 HogwartsCrafter1 False 100 MIDDLE
3 139 lofeiku False 100 BOTTOM
4 26 Kíko False 100 UTILITY
5 137 TOADisME False 200 TOP
6 95 JuulGodPrime False 200 JUNGLE
7 211 Cosmoe13 False 200 MIDDLE
8 189 Coolgum15 False 200 BOTTOM
9 94 Dublaiar False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 29 2044 275898 62770
1 20 2044 136199 7412
2 0 2044 37301 6853
3 0 2044 143575 16137
4 41 2044 46532 17576
5 73 2044 124834 19224
6 11 2044 292878 26161
7 37 2044 163882 49823
8 25 2044 148440 25935
9 26 2044 24841 5151
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 55118 18038 251 118
1 31057 3804 56 314
2 28393 1269 55 32
3 20662 3988 177 0
4 17963 11572 14 68
5 37430 10450 134 1098
6 35577 16139 39 225
7 31039 7824 146 103
8 18050 3176 166 73
9 18254 6071 39 59
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 264 1 0
1 350 1 5176
2 454 1 4595
3 199 3 24463
4 157 5 0
5 250 1 16254
6 140 1 12109
7 265 1 4052
8 140 2 4908
9 140 5 5129
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 0 4943 1 2
1 510 901 0 4
2 777 1587 0 1
3 1084 140 3 3
4 0 902 1 5
5 3106 461 1 1
6 913 176 0 1
7 3172 1056 1 2
8 679 191 2 3
9 301 486 1 2
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 5 18 0 0
1 5 14 0 2
2 5 21 1 2
3 5 22 0 2
4 5 47 0 5
5 6 18 0 0
6 6 10 1 1
7 6 16 1 1
8 6 16 1 1
9 6 40 4 0
wardsPlaced win
0 11 False
1 3 False
2 9 False
3 11 False
4 19 False
5 11 True
6 2 True
7 2 True
8 8 True
9 25 True ,
assists baronKills bountyLevel champLevel championName \
0 2 0 0 14 Teemo
1 11 0 0 14 Kayn
2 6 0 0 15 Katarina
3 6 0 0 15 Ezreal
4 10 0 0 14 Lux
5 3 0 0 17 Akali
6 5 0 9 17 Kindred
7 12 0 2 17 Galio
8 2 0 0 14 Caitlyn
9 9 0 0 13 Seraphine
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2347 2347 2347
1 525 4384 525
2 2635 2635 2635
3 1148 3184 1148
4 438 819 438
5 1984 1984 1984
6 9541 31262 9541
7 7232 8427 7232
8 3861 4149 3861
9 160 655 160
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 8 0 0 False False
1 10 0 0 False False
2 7 3 0 False False
3 3 1 1 False False
4 5 3 0 False False
5 3 2 0 False False
6 12 0 3 False True
7 2 0 0 True False
8 3 0 0 False False
9 7 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 True False False
7 False True False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 9009 TOP 0
1 False 9158 JUNGLE 0
2 False 11439 MIDDLE 0
3 False 12757 BOTTOM 0
4 False 9666 UTILITY 0
5 False 11840 TOP 0
6 False 19712 JUNGLE 0
7 False 11674 MIDDLE 0
8 False 9934 BOTTOM 1
9 False 7434 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 1 1056 2031 6653 3020 3115
1 0 1 3158 2031 6693 3004 1036
2 0 1 4633 3157 3153 3020 1055
3 0 1 3035 6632 3158 3042 3110
4 0 1 3853 3020 6655 4628 3191
5 0 0 1054 3157 3135 3020 4633
6 1 0 3006 3031 6672 6676 3072
7 1 0 2421 3152 3111 3191 3076
8 1 0 6672 3006 6676 3086 0
9 0 0 3853 2065 3158 3011 3114
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 3916 3340 0 5 0 1
1 1036 3364 0 1 0 1
2 1042 3364 2 9 5 1
3 3133 3363 1 6 5 2
4 1052 3363 2 6 4 1
5 3916 3364 3 8 4 1
6 3094 3340 5 21 9 3
7 3001 3340 1 3 2 1
8 1055 3340 0 1 0 1
9 0 3364 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 792 61888 11738
1 535 6012 1571
2 734 58689 10604
3 1541 9103 5145
4 983 50989 14898
5 916 96804 14529
6 315 25601 4510
7 826 134659 13759
8 767 331 51
9 512 20799 6862
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 12272 0 1 0
1 8673 104 1 0
2 11534 8 1 0
3 6094 4 1 0
4 2900 0 1 0
5 13108 0 0 0
6 15007 164 0 1
7 3100 4 0 1
8 5811 0 0 1
9 8496 0 0 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 20840 1352 4383
1 102439 11697 19268
2 36995 7973 18266
3 122085 10516 10256
4 3410 575 7501
5 14709 334 10369
6 187711 33429 20535
7 7328 445 13027
8 113420 3994 5311
9 3082 819 5602
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 SOLO 3 14 4 4
1 NONE 14 11 4 4
2 SOLO 1 12 4 14
3 CARRY 2 4 5 7
4 SUPPORT 5 4 5 21
5 SOLO 3 12 3 14
6 NONE 5 4 12 11
7 SOLO 3 4 3 12
8 CARRY 1 7 1 4
9 SUPPORT 5 4 4 14
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 97 1988 BMW E30 M3 False 100 TOP
1 120 fnigred False 100 JUNGLE
2 219 lAmClover False 100 MIDDLE
3 84 DrasticDaddy241 False 100 BOTTOM
4 70 ChunChunMaru1212 False 100 UTILITY
5 159 WestWing34 False 200 TOP
6 279 stilldjmango False 200 JUNGLE
7 187 Coolgum15 False 200 MIDDLE
8 93 Dublaiar False 200 BOTTOM
9 136 Alece False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 34 1948 97550 13373
1 7 1948 115813 13930
2 6 1948 96884 19334
3 0 1948 137953 15662
4 40 1948 55105 16179
5 0 1948 123295 15913
6 13 1948 236000 42140
7 24 1948 145338 14205
8 7 1948 117643 4046
9 15 1948 27769 8219
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 17242 1613 124 408
1 29528 9712 12 227
2 31387 4610 142 55
3 17635 4658 209 240
4 11146 354 48 223
5 24106 6052 204 59
6 36798 19612 44 281
7 16326 648 161 82
8 11238 2453 186 27
9 14306 930 24 103
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 305 1 14822
1 323 1 7361
2 265 1 1199
3 147 3 6765
4 194 1 705
5 137 1 11780
6 324 17 22688
7 71 1 3350
8 96 2 3891
9 229 4 3888
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 282 586 1 1
1 661 1586 1 1
2 755 1587 0 1
3 0 1284 0 0
4 705 744 0 1
5 1050 628 0 0
6 4200 1255 3 6
7 0 197 3 6
8 0 115 2 2
9 538 207 0 1
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 9 16 0 3
1 9 17 0 0
2 9 24 3 4
3 9 20 1 1
4 9 46 3 0
5 2 10 2 3
6 2 25 0 2
7 2 15 0 2
8 2 18 0 2
9 2 31 0 2
wardsPlaced win
0 8 False
1 8 False
2 7 False
3 10 False
4 22 False
5 2 True
6 11 True
7 9 True
8 9 True
9 15 True ,
assists baronKills bountyLevel champLevel championName \
0 3 0 0 16 Tryndamere
1 3 0 1 15 Kindred
2 7 0 0 15 Yasuo
3 6 0 0 14 Kaisa
4 0 0 0 7 Braum
5 10 0 0 18 Chogath
6 5 1 0 16 Kayn
7 9 0 0 13 Anivia
8 12 0 4 14 Caitlyn
9 13 0 0 13 Seraphine
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 4106 4106 4106
1 902 18981 902
2 2549 2704 2549
3 3292 3847 3292
4 0 0 0
5 3746 19221 3746
6 1890 18140 1890
7 375 12025 375
8 4984 16161 4984
9 4761 5054 4761
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 13 0 0 False False
1 6 0 2 False False
2 13 1 0 False False
3 6 0 0 False False
4 2 0 0 False False
5 3 0 0 False True
6 6 0 3 False False
7 10 0 0 False False
8 3 0 0 False False
9 5 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 True False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 13498 TOP 0
1 False 13504 JUNGLE 0
2 False 9827 MIDDLE 0
3 False 12194 BOTTOM 0
4 False 5225 UTILITY 0
5 False 14402 TOP 0
6 False 13049 JUNGLE 1
7 False 7058 MIDDLE 0
8 False 13182 BOTTOM 0
9 False 9457 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 1 1055 3006 6672 3036 3031
1 0 1 6672 6676 3006 3031 1036
2 0 1 6673 1055 3006 3031 3123
3 0 1 1055 6672 3006 3036 3031
4 0 1 3855 3067 2031 0 0
5 1 0 1029 3047 3068 3075 3110
6 1 0 3047 6630 6333 3071 1053
7 0 0 1056 6653 3020 3070 1052
8 1 0 6672 3006 6676 3094 3033
9 1 0 3853 4005 3020 3116 3191
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 1053 3340 1 6 4 4
1 1036 3364 3 13 5 1
2 1042 3340 0 3 0 1
3 1018 3340 1 5 2 1
4 0 3340 0 0 0 0
5 3105 3340 3 14 7 1
6 1037 3364 3 11 4 1
7 1058 3340 0 2 0 1
8 0 3340 2 8 4 1
9 3108 3364 1 5 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 256 0 0
1 576 26887 5836
2 421 5372 2272
3 632 8794 4458
4 329 872 677
5 1080 90524 17719
6 502 6310 0
7 369 19133 6257
8 1245 1166 586
9 809 27883 11907
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 15340 6 1 0
1 8676 139 1 0
2 6370 15 1 0
3 7155 4 1 0
4 829 0 1 0
5 3216 10 0 1
6 5570 103 0 0
7 2711 0 0 1
8 1641 0 0 0
9 1483 0 0 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 177553 25522 20252
1 111031 17320 17726
2 112753 16759 20200
3 96141 13658 11459
4 1860 186 3163
5 28728 5930 27196
6 138947 20011 30656
7 15472 1049 18386
8 133082 16729 10561
9 3578 1755 11200
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 SOLO 5 4 5 12
1 NONE 12 11 4 4
2 SOLO 4 14 5 4
3 CARRY 2 7 1 4
4 SUPPORT 0 14 0 4
5 SOLO 3 12 5 4
6 NONE 5 4 15 11
7 SOLO 2 4 0 14
8 CARRY 1 7 0 4
9 SUPPORT 4 4 6 14
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 119 MagicianMatt False 100 TOP
1 133 turtlepoggers False 100 JUNGLE
2 134 SmurfForAA False 100 MIDDLE
3 191 MythicalGnome False 100 BOTTOM
4 136 LudlowsHotboy False 100 UTILITY
5 208 DarmandiNUTT False 200 TOP
6 153 99uxoricide99 False 200 JUNGLE
7 25 Darr J False 200 MIDDLE
8 93 Dublaiar False 200 BOTTOM
9 136 Alece False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 5 1921 193519 28218
1 8 1921 157163 26138
2 25 1921 124372 20159
3 0 1921 114689 20845
4 6 1921 5696 863
5 93 1921 135445 27431
6 23 1921 155139 20874
7 20 1921 37824 7620
8 11 1921 146636 18257
9 20 1921 32164 14365
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 38109 7553 235 67
1 27772 16655 15 277
2 29058 4113 130 101
3 18777 4443 177 8
4 4058 56 14 29
5 34023 14204 116 1136
6 39894 19773 63 184
7 22439 1821 40 220
8 12907 4529 188 36
9 13329 1172 13 94
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 416 1 15966
1 232 17 19244
2 455 1 6247
3 160 2 9753
4 22 1 2964
5 52 1 16192
6 152 1 9881
7 307 1 3218
8 114 2 12387
9 164 4 702
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 2695 2516 1 1
1 2981 1369 0 0
2 1127 2486 1 2
3 2729 162 1 1
4 0 66 0 0
5 3780 3610 2 4
6 862 3667 2 4
7 313 1340 0 2
8 941 704 2 3
9 702 645 0 5
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 7 14 0 0
1 7 9 0 0
2 7 28 1 0
3 7 12 0 0
4 7 4 0 0
5 3 19 0 0
6 3 12 2 1
7 3 0 0 0
8 3 15 0 2
9 3 26 0 0
wardsPlaced win
0 9 False
1 1 False
2 10 False
3 7 False
4 3 False
5 10 True
6 2 True
7 0 True
8 8 True
9 13 True ,
assists baronKills bountyLevel champLevel championName \
0 14 1 2 18 Chogath
1 15 0 0 18 Warwick
2 23 0 1 18 Galio
3 17 0 3 18 Jhin
4 14 0 0 17 Malphite
5 16 0 3 18 Irelia
6 14 0 0 18 MasterYi
7 16 0 0 18 Leblanc
8 19 0 0 18 Caitlyn
9 26 0 0 17 Leona
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 4843 43793 4843
1 1511 26548 1511
2 5727 28439 5727
3 5197 31911 5197
4 1801 3310 1801
5 0 5307 0
6 0 9494 0
7 334 1341 334
8 1543 5004 1543
9 462 3591 462
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 3 2 5 True False
1 9 0 0 True False
2 6 0 0 True False
3 8 2 0 False True
4 14 0 0 False False
5 10 0 0 False False
6 16 0 1 False False
7 8 2 0 False False
8 7 0 1 False False
9 10 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 21568 TOP 0
1 False 16955 JUNGLE 0
2 False 17553 MIDDLE 4
3 False 19560 BOTTOM 1
4 False 10570 UTILITY 2
5 False 18807 TOP 0
6 False 13473 JUNGLE 0
7 False 14256 MIDDLE 0
8 False 21606 BOTTOM 0
9 False 10988 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 2 0 3143 3193 3083 3075 3047
1 2 0 6632 3053 3748 3047 3075
2 6 0 3089 3152 3157 3111 3041
3 3 0 1038 6671 3041 6676 3094
4 2 0 3860 3157 4636 3135 0
5 0 8 3748 3153 3053 3111 6632
6 0 8 6672 3153 3006 3033 3124
7 0 8 4637 3135 3157 3020 1082
8 0 8 6672 3006 3153 3094 3033
9 0 8 3860 3075 3068 3047 3050
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 6662 3363 4 19 9 2
1 1053 3340 1 11 7 2
2 4628 3340 3 11 4 2
3 3009 3340 1 7 3 1
4 0 3340 0 3 0 1
5 3071 3340 2 7 3 1
6 0 3340 0 5 0 1
7 6655 3340 3 11 3 2
8 3072 3340 3 14 7 3
9 1028 3364 1 3 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 1070 179292 34208
1 874 74779 17141
2 787 180576 36733
3 666 30530 3062
4 700 46311 23596
5 444 49497 14325
6 811 6211 587
7 922 142211 38455
8 921 9880 3138
9 603 39031 10343
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 19479 50 0 0
1 29196 183 0 0
2 6848 12 0 0
3 12159 145 0 1
4 10598 0 0 1
5 32264 12 1 0
6 23902 108 1 0
7 20689 0 1 0
8 16479 4 1 0
9 22697 0 1 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 49160 6051 35769
1 128019 14033 43578
2 8823 335 26253
3 346371 19758 14845
4 12530 2461 21068
5 245425 24693 25047
6 180562 15208 21948
7 20457 3380 16548
8 333960 34745 8869
9 9388 2763 10690
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 SOLO 5 12 7 4
1 NONE 17 11 3 4
2 DUO 8 4 6 12
3 DUO 7 4 2 14
4 SUPPORT 2 4 3 7
5 SOLO 7 4 2 12
6 NONE 2 4 26 11
7 SOLO 7 4 7 14
8 CARRY 5 7 3 4
9 SUPPORT 7 14 5 4
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 269 PPhantom False 100 TOP
1 127 FatBeansWillCome False 100 JUNGLE
2 172 epicgamerboi3 False 100 MIDDLE
3 27 ABuhBuhBuh False 100 BOTTOM
4 19 tiddylov3r False 100 UTILITY
5 28 RyeBreadPitt False 200 TOP
6 21 FlyingSpaghetti0 False 200 JUNGLE
7 217 Troll Biden False 200 MIDDLE
8 93 Dublaiar False 200 BOTTOM
9 71 Ericus1 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 125 2732 281788 52302
1 47 2732 217010 31910
2 65 2732 195655 37309
3 24 2732 382271 23567
4 47 2732 65079 26433
5 29 2732 302389 39018
6 6 2732 235958 25395
7 29 2732 165130 43057
8 32 2732 375209 43896
9 57 2732 58193 14974
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 69975 29391 209 2527
1 79282 41875 25 293
2 38724 11568 188 155
3 28062 11221 200 262
4 34455 2197 42 297
5 60876 15680 314 153
6 47434 12126 80 151
7 39254 5189 166 38
8 26647 6462 315 87
9 39064 844 52 83
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 160 1 53334
1 456 1 14212
2 285 1 6255
3 252 1 5369
4 598 2 6237
5 384 1 7466
6 633 1 49184
7 250 1 2461
8 247 3 31367
9 346 1 9773
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 12042 14726 1 6
1 736 6507 1 2
2 240 5622 2 5
3 746 1058 5 6
4 375 2788 0 2
5 0 3564 0 0
6 9599 1583 0 0
7 1222 2016 0 0
8 6012 1297 0 0
9 1868 5676 0 0
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 0 29 2 2
1 0 33 0 3
2 0 27 0 1
3 0 48 5 1
4 0 2 0 0
5 11 22 0 1
6 11 5 0 0
7 11 26 2 0
8 11 15 0 2
9 11 48 2 2
wardsPlaced win
0 8 True
1 14 True
2 15 True
3 17 True
4 1 True
5 16 False
6 2 False
7 17 False
8 8 False
9 23 False ,
assists baronKills bountyLevel champLevel championName \
0 2 0 2 16 Fiora
1 8 0 0 15 Kindred
2 6 1 11 15 Katarina
3 6 0 1 15 Vayne
4 9 0 1 13 Alistar
5 5 0 0 14 Vladimir
6 3 0 0 13 Kayn
7 3 0 0 14 Lissandra
8 4 0 0 13 Kaisa
9 5 0 0 12 Soraka
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 9967 16808 9967
1 1679 28071 1679
2 3312 6029 3312
3 8130 21217 8130
4 592 1557 592
5 981 1809 981
6 0 14412 0
7 1110 4939 1110
8 2206 7758 2206
9 237 450 237
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 1 0 False False
1 4 1 3 False False
2 1 0 0 False False
3 2 0 0 False False
4 2 1 0 False False
5 7 1 0 False False
6 7 0 1 True False
7 4 0 0 False True
8 3 0 0 False False
9 2 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 12432 TOP 1
1 True 10611 JUNGLE 3
2 True 12765 MIDDLE 0
3 True 12362 BOTTOM 0
4 True 7244 UTILITY 0
5 True 8645 TOP 0
6 True 9669 JUNGLE 0
7 True 10521 MIDDLE 0
8 True 8689 BOTTOM 0
9 True 5507 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 2 0 1055 6029 3508 3111 3074
1 3 0 3006 2031 6672 6676 1037
2 1 0 3041 3157 4633 3020 3115
3 0 0 6673 3046 3006 3031 0
4 3 0 3860 3050 3076 3117 1011
5 0 4 4629 4636 3020 1052 0
6 0 4 6630 2031 3047 6609 3211
7 0 4 3157 6656 3020 3070 1058
8 0 4 6672 3006 6676 3123 0
9 0 4 3860 6617 3158 2055 3114
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 3067 3340 3 7 2 2
1 0 3340 1 2 2 1
2 0 3363 1 11 11 3
3 0 3340 0 2 0 1
4 3801 3364 0 1 0 1
5 0 3363 1 4 2 1
6 0 3340 1 5 2 1
7 1058 3340 2 7 3 2
8 1055 3340 0 0 0 0
9 0 3364 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 290 5041 734
1 636 24170 1397
2 526 86127 18646
3 955 0 0
4 963 8685 2502
5 815 85366 22591
6 790 6692 0
7 616 120791 16978
8 1157 11478 1350
9 1152 11019 3278
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 15416 10 0 0
1 8843 146 0 0
2 10956 5 0 0
3 7245 20 0 0
4 5111 0 0 0
5 5523 4 0 0
6 8168 106 0 0
7 7041 4 0 0
8 2009 4 0 0
9 2289 0 0 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 118868 18193 10691
1 112721 7409 12782
2 12516 1526 9884
3 148203 16718 7195
4 4564 504 6141
5 10972 800 20313
6 106158 13193 22525
7 7869 1286 7763
8 104732 4080 12799
9 3757 255 5612
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 SOLO 1 4 3 12
1 NONE 14 11 3 4
2 SOLO 4 4 6 14
3 CARRY 1 7 2 4
4 SUPPORT 3 4 4 3
5 SOLO 7 6 8 14
6 NONE 15 11 4 4
7 SOLO 4 4 5 14
8 CARRY 4 7 2 4
9 SUPPORT 4 3 0 4
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 145 AshenOak2 False 100 TOP
1 189 Cantkillme11 False 100 JUNGLE
2 200 meatywaterbottle False 100 MIDDLE
3 50 Jadkareen False 100 BOTTOM
4 46 HazeSlaze False 100 UTILITY
5 182 Hikan False 200 TOP
6 356 Hero Øf Time False 200 JUNGLE
7 187 Coolgum15 False 200 MIDDLE
8 93 Dublaiar False 200 BOTTOM
9 188 Thick2BThighs False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 6 1722 140451 25182
1 5 1722 158019 10429
2 1 1722 101498 21936
3 12 1722 173482 20274
4 16 1722 17080 3006
5 5 1722 97207 24259
6 17 1722 123757 14341
7 43 1722 135738 19353
8 0 1722 124272 5623
9 21 1722 17930 3533
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 27383 12184 158 129
1 22015 12901 29 160
2 21991 5705 140 19
3 14745 3953 238 45
4 11431 8320 25 49
5 31134 20535 134 121
6 35433 13676 24 354
7 16104 1446 162 352
8 15991 3780 178 0
9 8578 17320 27 201
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 216 7 16542
1 93 15 21126
2 21 1 2854
3 60 1 25279
4 55 5 3830
5 224 1 867
6 200 1 10906
7 148 1 7078
8 65 3 8061
9 65 5 3153
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 6254 1275 4 4
1 1622 389 0 1
2 1763 1150 1 3
3 3555 304 2 6
4 0 177 2 3
5 867 5297 0 0
6 1148 4740 0 0
7 1088 1298 1 1
8 193 1183 0 0
9 0 676 0 0
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 1 12 1 2
1 1 23 1 1
2 1 16 0 1
3 1 18 0 2
4 1 35 1 0
5 9 21 1 1
6 9 14 0 1
7 9 13 0 2
8 9 14 0 1
9 9 18 3 1
wardsPlaced win
0 5 True
1 9 True
2 9 True
3 8 True
4 19 True
5 9 False
6 6 False
7 9 False
8 8 False
9 9 False ,
assists baronKills bountyLevel champLevel championName \
0 10 0 1 15 Jax
1 10 0 3 15 Lillia
2 12 0 0 15 Pyke
3 7 0 1 12 Kaisa
4 14 0 4 14 Sett
5 2 0 0 15 Akali
6 7 0 0 13 Amumu
7 1 0 0 13 Gwen
8 9 0 0 13 Caitlyn
9 9 0 0 12 Thresh
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 1809 4930 1809
1 0 9964 0
2 2395 4287 2395
3 2145 8600 2145
4 1297 3575 1297
5 774 7078 774
6 0 16025 0
7 1882 1882 1882
8 2788 5714 2788
9 480 1562 480
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 1 0 False False
1 3 0 0 False True
2 4 5 0 True False
3 5 0 1 False False
4 2 1 1 False False
5 5 3 0 False False
6 5 1 2 False False
7 6 1 0 False False
8 6 3 0 False False
9 9 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False True False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 7759 TOP 0
1 True 14481 JUNGLE 0
2 True 10715 MIDDLE 0
3 True 9081 BOTTOM 0
4 True 9751 UTILITY 0
5 True 13240 TOP 0
6 True 8076 JUNGLE 0
7 True 8169 MIDDLE 0
8 True 10124 BOTTOM 0
9 True 6998 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 0 2033 6632 3047 1053 1042
1 0 0 6653 3020 4629 3116 1026
2 0 0 6631 3142 3111 1054 3134
3 0 0 6672 3006 6676 2031 3123
4 0 0 3857 6631 3047 3053 1057
5 0 0 3020 3157 4637 4633 4630
6 0 0 3068 1001 4637 3076 0
7 0 0 4633 3115 3006 0 0
8 0 0 3094 3006 6672 1038 1018
9 0 0 3857 3009 2015 6662 3086
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 1042 3340 0 1 0 1
1 1052 3340 4 15 7 3
2 0 3340 1 3 3 1
3 1055 3340 1 4 2 1
4 0 3364 2 8 4 4
5 1056 3340 4 11 3 3
6 0 3364 0 0 0 0
7 0 3340 1 4 2 1
8 1042 3363 0 2 0 1
9 0 3364 0 2 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 405 15577 3427
1 864 129860 20084
2 826 0 0
3 447 8645 2365
4 1328 0 0
5 754 96401 25112
6 1016 84653 8448
7 523 28464 3520
8 882 2277 1553
9 345 24388 9805
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 14653 4 0 0
1 12519 150 0 0
2 8048 0 0 0
3 7754 24 0 0
4 9025 4 0 0
5 7354 5 0 0
6 5912 143 0 0
7 4987 8 0 0
8 5098 0 0 0
9 5089 0 0 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 62080 9196 5085
1 17791 856 15072
2 62500 8920 8376
3 74800 6428 7913
4 35508 13150 7609
5 22091 1339 15362
6 21643 434 15714
7 26034 1402 11161
8 93580 15489 8246
9 7592 1699 13878
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 SOLO 4 12 4 4
1 NONE 17 11 4 4
2 SOLO 3 4 3 14
3 CARRY 5 7 3 4
4 SUPPORT 6 14 4 4
5 SOLO 3 4 2 12
6 NONE 3 4 13 11
7 SOLO 4 4 4 14
8 CARRY 4 4 5 7
9 SUPPORT 5 4 5 14
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 232 Madness Insomnia False 100 TOP
1 356 Hero Øf Time False 100 JUNGLE
2 93 pykeloverBLM False 100 MIDDLE
3 93 Dublaiar False 100 BOTTOM
4 188 Thick2BThighs False 100 UTILITY
5 404 ÄJS False 200 TOP
6 67 ScooobertDoobert False 200 JUNGLE
7 430 imonyourscreen12 False 200 MIDDLE
8 190 elkshadow5 False 200 BOTTOM
9 238 Snackary False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 12 1782 81788 12623
1 31 1782 186286 27633
2 23 1782 66320 10244
3 1 1782 90051 9342
4 33 1782 45730 16867
5 2 1782 131921 28141
6 33 1782 121778 10133
7 3 1782 84325 7601
8 21 1782 103094 18568
9 45 1782 36750 12289
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 21080 6450 101 73
1 28704 12487 35 488
2 19732 4730 129 198
3 16456 4294 121 69
4 18015 2611 43 154
5 25611 5256 171 61
6 24457 8075 6 225
7 18533 3933 123 26
8 15615 5459 159 76
9 20870 1425 42 314
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 128 1 4130
1 116 1 38635
2 148 1 3819
3 104 4 6605
4 77 1 10222
5 160 1 13428
6 146 1 15480
7 158 1 29825
8 180 3 7236
9 216 4 4769
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 0 1340 1 1
1 6692 1111 0 0
2 1324 3307 0 1
3 548 788 0 0
4 3716 1380 0 0
5 1689 2894 1 1
6 1250 2830 0 0
7 2678 2384 0 0
8 1525 2271 2 2
9 785 1901 0 0
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 3 17 1 2
1 3 22 0 5
2 3 26 5 5
3 3 20 0 3
4 3 28 1 2
5 1 28 3 2
6 1 17 1 2
7 1 17 1 3
8 1 26 3 2
9 1 37 0 2
wardsPlaced win
0 10 True
1 8 True
2 14 True
3 9 True
4 13 True
5 12 False
6 4 False
7 10 False
8 13 False
9 22 False ,
assists baronKills bountyLevel champLevel championName \
0 5 0 0 13 Nasus
1 2 0 1 11 Evelynn
2 6 0 9 13 Ziggs
3 8 0 1 11 Kaisa
4 12 0 0 10 Sett
5 0 0 0 12 Akali
6 4 0 0 10 Rammus
7 2 0 0 11 Veigar
8 5 0 0 11 MissFortune
9 6 0 0 9 Braum
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3774 5954 3774
1 0 5882 0
2 8148 8148 8148
3 3179 4581 3179
4 3498 4218 3498
5 3609 3609 3609
6 0 187 0
7 1529 2280 1529
8 556 2590 556
9 0 292 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 2 1 0 False False
1 3 1 2 False False
2 0 0 0 False True
3 1 0 0 False False
4 4 0 0 False False
5 3 0 0 False False
6 4 0 0 False False
7 6 1 0 False False
8 6 1 0 False False
9 6 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 True False False
4 False True False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 7332 TOP 0
1 True 6877 JUNGLE 0
2 True 10102 MIDDLE 0
3 True 8415 BOTTOM 0
4 True 7004 UTILITY 1
5 True 5424 TOP 0
6 True 5309 JUNGLE 0
7 True 7148 MIDDLE 0
8 True 6938 BOTTOM 0
9 True 4963 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 0 3070 3158 6632 3105 2055
1 0 0 4636 2033 3020 0 0
2 1 0 1056 6653 3158 3070 1052
3 1 0 6672 3006 3134 1037 0
4 1 0 3855 6631 3047 1057 0
5 0 1 1054 2031 1001 3748 0
6 0 1 2031 6664 3047 1033 0
7 0 1 6656 3191 1056 3020 3108
8 0 1 1055 6691 3006 3134 0
9 0 1 3857 3190 3047 0 0
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 1033 3340 1 2 2 1
1 0 3340 1 4 2 1
2 1058 3340 1 9 9 2
3 1055 3340 1 6 5 1
4 0 3364 0 4 0 1
5 0 3340 0 1 0 1
6 0 3364 0 1 0 1
7 0 3364 1 5 3 2
8 1028 3340 0 2 0 1
9 0 3364 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 1059 37141 4810
1 410 64500 4234
2 0 74626 13299
3 944 4369 2776
4 450 0 0
5 648 39227 7771
6 518 28167 2285
7 331 36299 7698
8 558 4231 1627
9 455 4607 3178
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 7849 4 0 0
1 5813 108 0 0
2 2816 0 0 0
3 3419 0 0 0
4 4258 0 0 0
5 8027 0 0 0
6 4604 64 0 0
7 7762 0 0 0
8 2631 4 0 0
9 3207 0 0 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 36015 4410 5769
1 8077 676 9085
2 7088 512 1866
3 46708 7227 4031
4 21790 7120 8750
5 26311 1259 7072
6 12521 1000 8380
7 9424 574 4129
8 53748 11555 6991
9 4943 586 5518
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 SOLO 2 4 3 12
1 NONE 11 11 3 4
2 SOLO 3 21 3 4
3 CARRY 2 7 2 4
4 SUPPORT 4 14 4 4
5 SOLO 2 4 2 12
6 NONE 1 4 9 11
7 SOLO 4 4 3 14
8 CARRY 3 4 4 14
9 SUPPORT 3 7 2 4
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 74 mailthief False 100 TOP
1 356 Hero Øf Time False 100 JUNGLE
2 91 BigG65 False 100 MIDDLE
3 92 Dublaiar False 100 BOTTOM
4 188 Thick2BThighs False 100 UTILITY
5 197 Mr GrumpyMuppet False 200 TOP
6 237 Okami0001 False 200 JUNGLE
7 116 RaZePhoenix19 False 200 MIDDLE
8 177 Mrs GrumpyMuppet False 200 BOTTOM
9 314 Ellielae False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 11 1240 75542 9221
1 6 1240 79389 5315
2 9 1240 87195 14032
3 1 1240 55997 10936
4 20 1240 30541 9690
5 1 1240 65539 9030
6 13 1240 54980 3388
7 17 1240 46486 8601
8 11 1240 62634 14487
9 22 1240 15637 3765
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 13720 2036 121 80
1 15125 7192 2 234
2 4694 1056 141 144
3 8016 2882 112 6
4 13836 2186 26 87
5 15505 181 86 50
6 13780 4170 6 223
7 12246 679 89 58
8 10541 549 145 145
9 10376 997 25 99
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 77 1 2385
1 69 1 6812
2 0 1 5480
3 30 2 4918
4 91 1 8751
5 101 1 0
6 93 5 14292
7 158 1 762
8 164 1 4654
9 138 3 6087
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 0 102 1 2
1 404 226 0 0
2 220 12 3 3
3 932 565 0 3
4 2569 828 1 2
5 0 406 1 1
6 102 796 0 0
7 328 355 0 0
8 1304 918 0 0
9 0 1650 0 0
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 1 10 2 1
1 1 18 2 2
2 1 6 0 0
3 1 11 0 1
4 1 10 0 0
5 5 7 0 0
6 5 7 0 1
7 5 4 1 2
8 5 21 1 2
9 5 28 1 0
wardsPlaced win
0 6 True
1 7 True
2 4 True
3 6 True
4 8 True
5 5 False
6 1 False
7 1 False
8 7 False
9 9 False ,
assists baronKills bountyLevel champLevel championName \
0 0 0 0 3 Darius
1 0 0 0 3 Shaco
2 0 0 0 3 Katarina
3 0 0 0 3 Xayah
4 0 0 0 1 Blitzcrank
5 0 0 1 3 Sylas
6 0 0 0 3 Evelynn
7 0 0 0 3 Irelia
8 0 0 0 2 Kaisa
9 0 0 0 2 Sett
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 0 0 0
1 0 433 0
2 0 0 0
3 0 0 0
4 0 0 0
5 0 0 0
6 0 0 0
7 0 0 0
8 0 0 0
9 0 0 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 1 0 0 False False
1 0 0 0 False False
2 0 0 0 False False
3 0 0 0 False False
4 0 0 0 False False
5 1 0 0 False True
6 0 0 0 False False
7 0 0 0 False False
8 0 0 0 False False
9 0 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False True
1 False False True
2 False False True
3 False False True
4 False False True
5 False False True
6 False False True
7 False False True
8 False False True
9 False False True
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 786 TOP 0
1 False 1199 JUNGLE 0
2 False 888 MIDDLE 0
3 False 853 BOTTOM 0
4 False 688 AFK 0
5 False 1256 TOP 0
6 False 1058 JUNGLE 0
7 False 1021 MIDDLE 0
8 False 1049 BOTTOM 0
9 False 749 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 0 2003 2055 1055 0 0
1 0 0 1039 2031 0 0 0
2 0 0 1082 2031 0 0 0
3 0 0 1055 2003 0 0 0
4 0 0 2010 0 0 0 0
5 0 0 1056 2003 2010 1052 2055
6 0 0 1039 0 0 0 0
7 0 0 1055 2003 2010 0 0
8 0 0 2010 0 0 2003 0
9 0 0 3854 2003 0 0 0
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 0 3340 0 0 0 0
1 0 3340 0 0 0 0
2 0 3340 0 0 0 0
3 0 3340 0 0 0 0
4 0 0 0 0 0 0
5 0 3340 0 1 0 1
6 0 3340 0 0 0 0
7 0 3340 0 0 0 0
8 1055 3340 0 0 0 0
9 0 3340 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 169 0 0
1 0 5860 0
2 0 2451 464
3 0 0 0
4 0 0 0
5 174 3483 827
6 0 7571 0
7 0 248 120
8 0 238 0
9 0 0 0
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 827 0 0 0
1 0 20 0 0
2 120 0 0 0
3 0 0 0 0
4 0 0 0 0
5 0 0 0 0
6 528 16 0 0
7 464 0 0 0
8 0 0 0 0
9 0 0 0 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 1461 277 91
1 4701 0 1291
2 522 44 175
3 3605 130 0
4 0 0 0
5 893 46 1201
6 1481 0 1266
7 4069 175 273
8 3483 0 73
9 675 0 98
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 DUO 0 4 0 6
1 DUO 2 11 0 14
2 DUO 0 4 0 14
3 DUO 0 4 0 7
4 DUO 0 4 0 14
5 DUO 1 4 1 12
6 DUO 0 11 0 4
7 DUO 0 4 0 14
8 DUO 0 7 0 4
9 DUO 0 14 0 4
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 145 MrBear328 True 100 TOP
1 111 MidInter69 True 100 JUNGLE
2 134 milkinurfridge True 100 MIDDLE
3 147 Rexyboi519 True 100 BOTTOM
4 106 emeryyyyyyyyyyyy True 100 AFK
5 150 nujcklehead85 False 200 TOP
6 356 Hero Øf Time False 200 JUNGLE
7 155 kayseah False 200 MIDDLE
8 92 Dublaiar False 200 BOTTOM
9 188 Thick2BThighs False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 0 202 1461 277
1 0 202 11868 0
2 0 202 2973 508
3 0 202 3605 130
4 0 202 0 0
5 2 202 4377 873
6 0 202 9053 0
7 0 202 4318 295
8 0 202 3722 0
9 0 202 1088 0
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 918 29 6 0
1 1291 803 0 115
2 295 0 9 0
3 0 0 7 0
4 0 0 0 0
5 1201 53 9 22
6 1795 578 0 24
7 738 162 16 1
8 73 4 18 0
9 98 0 3 0
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 8 1 0
1 0 1 1306
2 0 0 0
3 0 0 0
4 0 0 0
5 10 1 0
6 0 1 0
7 0 1 0
8 0 1 0
9 0 0 413
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 0 0 0 0
1 0 0 0 0
2 0 0 0 0
3 0 0 0 0
4 0 0 0 0
5 0 0 0 0
6 0 0 0 0
7 0 0 0 0
8 0 0 0 0
9 0 0 0 0
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 0 0 1 0
1 0 1 0 0
2 0 0 0 0
3 0 0 0 0
4 0 0 0 0
5 0 0 1 0
6 0 0 0 0
7 0 1 0 0
8 0 1 0 0
9 0 0 0 0
wardsPlaced win
0 0 False
1 1 False
2 1 False
3 0 False
4 0 False
5 0 True
6 0 True
7 1 True
8 1 True
9 0 True ,
assists baronKills bountyLevel champLevel championName \
0 2 0 0 12 Darius
1 2 0 0 13 Viego
2 4 0 0 13 Sylas
3 5 0 0 11 Jhin
4 6 0 0 11 Sett
5 4 0 3 15 Kayle
6 7 0 7 15 Diana
7 3 0 0 12 Yasuo
8 3 0 0 12 Vayne
9 7 0 0 12 Ivern
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 1031 1031 1031
1 1552 9028 1552
2 2163 2427 2163
3 1801 3196 1801
4 1168 3236 1168
5 10075 20350 10075
6 6402 10934 6402
7 1861 7829 1861
8 3333 5737 3333
9 1052 2014 1052
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 0 0 False False
1 5 0 1 False False
2 7 0 0 False True
3 3 0 0 False False
4 4 1 1 False False
5 4 1 0 False False
6 3 0 1 False False
7 10 0 0 False False
8 2 0 0 False False
9 5 5 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 5917 TOP 0
1 True 9059 JUNGLE 0
2 True 10160 MIDDLE 0
3 True 8983 BOTTOM 0
4 True 6051 UTILITY 0
5 True 12769 TOP 0
6 True 13395 JUNGLE 0
7 True 7511 MIDDLE 0
8 True 7573 BOTTOM 1
9 True 6392 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 1 1054 6631 0 3047 0
1 0 1 3047 6673 6333 0 0
2 0 1 2033 3020 3100 6655 3211
3 0 1 6671 3009 6676 2003 3086
4 0 1 3857 6631 3047 3066 2055
5 0 0 4633 2420 3100 3006 3115
6 1 0 3115 3157 3020 4633 2031
7 0 0 6673 1055 3006 1037 1018
8 1 0 1055 2031 1001 6673 3123
9 1 0 2065 2031 3859 1052 3117
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 0 3340 0 1 0 1
1 0 3340 1 7 4 2
2 0 3340 4 11 4 2
3 0 3340 1 4 2 1
4 0 3364 0 1 0 1
5 0 3340 3 10 3 2
6 3057 3340 2 10 7 2
7 0 3340 0 2 0 1
8 3086 3340 0 2 0 1
9 2055 3364 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 417 0 0
1 897 11938 822
2 342 71398 19483
3 617 4317 1585
4 857 0 0
5 435 99806 19687
6 440 155667 16941
7 348 7509 556
8 631 88 88
9 455 6572 2796
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 7325 4 0 0
1 10970 82 0 0
2 9240 0 0 0
3 4826 6 0 0
4 8310 4 0 0
5 4464 19 0 0
6 5586 144 0 0
7 8295 0 0 0
8 1986 0 0 0
9 2973 18 0 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 1 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 52521 2975 5058
1 72060 9056 10059
2 8820 437 12851
3 64127 7050 3336
4 20272 5225 5931
5 32754 5451 8577
6 26523 2597 10597
7 70899 5720 7129
8 51223 3732 3819
9 5059 993 10106
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 NONE 4 6 4 4
1 NONE 2 4 14 11
2 SOLO 6 14 3 4
3 CARRY 3 7 2 4
4 SUPPORT 4 14 3 4
5 SOLO 1 12 4 4
6 NONE 12 11 3 4
7 SOLO 3 14 3 4
8 SOLO 3 4 4 7
9 NONE 3 4 8 11
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 30 MajorDCskrrrt False 100 TOP
1 119 ShaolinGamer False 100 JUNGLE
2 356 Hero Øf Time False 100 MIDDLE
3 92 Dublaiar False 100 BOTTOM
4 188 Thick2BThighs False 100 UTILITY
5 184 L00TL00T False 200 TOP
6 105 tjpardy False 200 JUNGLE
7 57 sumzzzz False 200 MIDDLE
8 75 tRiNdOgGx False 200 BOTTOM
9 166 elbepo False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 9 1526 56432 3366
1 12 1526 90841 10266
2 19 1526 82679 20661
3 23 1526 68999 8659
4 10 1526 31927 8173
5 13 1526 138950 27299
6 10 1526 187721 20644
7 7 1526 80296 6596
8 5 1526 69664 4564
9 31 1526 68506 3832
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 12872 1159 90 57
1 22117 9673 29 164
2 23330 5991 108 179
3 8380 2742 143 99
4 15629 1411 37 67
5 13561 5271 169 300
6 17392 7428 44 95
7 16495 2201 109 55
8 6558 2161 118 5
9 14021 2491 30 75
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 145 1 3911
1 144 2 6842
2 188 1 2460
3 81 2 554
4 130 1 11654
5 125 4 6388
6 79 1 5531
7 216 1 1887
8 57 3 18352
9 81 1 56874
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 391 487 1 1
1 388 1088 0 1
2 740 1238 0 1
3 24 217 1 2
4 2948 1387 0 2
5 2160 519 4 4
6 1104 1208 1 4
7 320 1071 0 1
8 743 751 2 3
9 42 941 0 3
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 7 9 0 0
1 7 8 1 1
2 7 11 0 1
3 7 12 0 0
4 7 30 2 4
5 2 17 1 0
6 2 8 0 0
7 2 11 0 0
8 2 12 0 2
9 2 36 6 4
wardsPlaced win
0 5 False
1 4 False
2 6 False
3 8 False
4 15 False
5 9 True
6 4 True
7 8 True
8 5 True
9 15 True ,
assists baronKills bountyLevel champLevel championName \
0 0 0 2 12 Yorick
1 0 0 0 10 Graves
2 0 0 1 11 Lux
3 0 0 5 9 Xayah
4 5 0 0 9 Shen
5 1 0 0 10 Irelia
6 0 0 3 11 Tristana
7 1 0 0 5 Evelynn
8 1 0 1 9 Jhin
9 1 0 1 8 Brand
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 6560 6560 6560
1 1345 17892 1345
2 1600 1600 1600
3 2160 2160 2160
4 649 692 649
5 455 455 455
6 0 1806 0
7 0 596 0
8 0 0 0
9 0 0 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 1 0 0 False False
1 3 1 1 False False
2 2 2 0 False False
3 0 1 0 False True
4 0 1 0 True False
5 4 1 0 False False
6 1 0 0 False False
7 4 0 0 False False
8 1 0 0 False False
9 3 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 7505 TOP 0
1 True 6542 JUNGLE 0
2 True 5109 MIDDLE 0
3 True 7137 BOTTOM 0
4 True 4535 UTILITY 0
5 True 4538 TOP 0
6 True 4933 JUNGLE 0
7 True 2864 JUNGLE 0
8 True 4532 BOTTOM 0
9 True 3988 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 0 1054 2031 6632 3047 3044
1 0 0 6673 3134 0 0 0
2 0 0 1056 6655 1001 0 0
3 0 0 6671 2031 3006 3134 1018
4 0 0 3068 1001 3855 0 0
5 0 0 2033 3153 2055 1029 1001
6 0 0 6672 1001 1055 2055 1042
7 0 0 2033 3145 1026 0 0
8 0 0 6670 3009 1037 1018 0
9 0 0 3853 3802 3020 0 0
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 0 3340 1 3 2 1
1 3006 3340 0 2 0 1
2 0 3340 0 1 0 1
3 0 3340 1 5 5 1
4 0 3340 0 0 0 0
5 0 3340 0 1 0 1
6 0 3340 1 3 3 1
7 0 3340 0 0 0 0
8 1055 3340 0 1 0 1
9 0 3364 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 274 6099 2164
1 415 8646 130
2 423 44502 4736
3 0 0 0
4 0 2974 746
5 317 4144 711
6 180 11211 936
7 530 16594 331
8 297 1918 131
9 324 12301 5459
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 669 0 0 0
1 2066 110 0 0
2 645 0 0 0
3 3130 0 0 0
4 2165 4 0 0
5 2246 0 0 0
6 3847 0 0 0
7 1191 22 0 0
8 524 4 0 0
9 381 0 0 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 55384 4468 6983
1 75238 3627 8855
2 7017 478 3652
3 62728 7539 1944
4 5546 1489 2510
5 44100 3629 8900
6 24375 4142 3087
7 6426 68 7913
8 33174 3365 4256
9 2200 481 5713
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 SUPPORT 2 4 1 12
1 SUPPORT 8 11 3 4
2 SUPPORT 2 4 1 14
3 SUPPORT 1 7 1 4
4 SUPPORT 1 4 3 14
5 SUPPORT 2 4 2 12
6 SUPPORT 3 14 1 4
7 SUPPORT 1 14 3 4
8 DUO 2 7 1 4
9 SUPPORT 1 14 0 4
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 110 Alexarez False 100 TOP
1 172 Schmitzoid False 100 JUNGLE
2 61 evsyy False 100 MIDDLE
3 164 AngelCrust False 100 BOTTOM
4 135 Ricerolls64 False 100 UTILITY
5 367 KatsupCloud False 200 TOP
6 188 Thick2BThighs False 200 MIDDLE
7 356 Hero Øf Time False 200 JUNGLE
8 92 Dublaiar False 200 BOTTOM
9 78 SleepyBoy2024 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 5 969 69913 6632
1 8 969 94920 4211
2 16 969 52047 5742
3 11 969 64238 7539
4 11 969 13568 2537
5 8 969 52360 4340
6 2 969 41230 5417
7 1 969 23080 460
8 11 969 35527 3595
9 9 969 14706 6144
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 7749 1956 115 73
1 11072 4226 10 391
2 4450 49 101 356
3 5224 1287 122 11
4 4828 280 23 26
5 11409 1465 96 27
6 7485 692 78 29
7 9192 1810 0 30
8 4935 1147 91 75
9 6324 433 10 14
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 14 1 8429
1 74 1 11036
2 43 1 527
3 0 2 1510
4 0 1 5047
5 58 1 4115
6 8 1 5644
7 26 1 60
8 12 2 434
9 38 1 204
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 0 96 2 2
1 454 150 1 1
2 527 151 0 0
3 0 150 1 1
4 302 152 0 1
5 0 262 0 0
6 338 550 0 0
7 60 86 0 0
8 98 154 0 0
9 204 230 0 0
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 0 4 0 0
1 0 11 1 0
2 0 14 2 1
3 0 7 1 0
4 0 12 1 2
5 4 11 2 1
6 4 3 1 0
7 4 5 0 0
8 4 5 0 0
9 4 19 2 2
wardsPlaced win
0 3 True
1 3 True
2 5 True
3 5 True
4 6 True
5 5 False
6 3 False
7 4 False
8 4 False
9 7 False ,
assists baronKills bountyLevel champLevel championName \
0 10 0 1 16 Teemo
1 17 1 3 18 FiddleSticks
2 16 0 3 18 Annie
3 13 0 1 18 Ashe
4 26 0 1 16 Thresh
5 5 0 0 17 Garen
6 6 0 0 17 Shaco
7 9 0 0 16 Talon
8 12 0 0 15 Jhin
9 19 0 0 15 Morgana
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2798 7089 2798
1 3076 17687 3076
2 2510 5565 2510
3 15219 32099 15219
4 759 4342 759
5 2957 9289 2957
6 3138 26180 3138
7 759 759 759
8 4991 15902 4991
9 974 4228 974
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 0 0 False False
1 5 1 1 False False
2 8 2 0 False False
3 7 0 1 False False
4 6 0 1 False False
5 11 0 0 False False
6 11 2 1 False False
7 12 4 0 False False
8 9 1 2 False False
9 8 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False True False
9 True False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 12676 TOP 0
1 False 14973 JUNGLE 0
2 False 17613 MIDDLE 0
3 False 17593 BOTTOM 2
4 False 12268 UTILITY 0
5 False 16277 TOP 0
6 False 13585 JUNGLE 0
7 False 11498 MIDDLE 0
8 False 15335 BOTTOM 0
9 False 9743 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 1 0 6653 3089 3191 3020 4637
1 0 0 3157 3152 4637 3020 3089
2 0 0 3157 6655 3020 4628 3089
3 2 0 6672 3153 3026 3046 3091
4 1 0 3068 8001 3857 3075 3047
5 0 2 3031 3009 3078 3046 3156
6 0 2 6672 3031 6676 3006 1018
7 0 2 6693 3158 6676 3004 2055
8 0 2 6676 6671 3009 3031 3094
9 0 2 3853 3157 6653 3020 1011
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 0 3340 2 9 5 1
1 1082 3330 2 11 4 2
2 1026 3340 5 19 5 4
3 3006 3363 2 8 3 2
4 1029 3364 0 4 0 1
5 3033 3364 1 10 3 2
6 1036 3364 2 5 2 1
7 1036 3364 1 4 2 1
8 1053 3363 3 10 2 1
9 1026 3364 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 956 65871 22742
1 802 153210 25113
2 522 134743 37330
3 810 7360 4570
4 445 30836 8280
5 457 0 0
6 492 54223 5721
7 791 0 0
8 970 5767 2728
9 959 46093 17001
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 1814 0 0 1
1 10676 155 0 1
2 6000 5 0 1
3 6137 51 0 0
4 6286 4 0 1
5 27208 8 1 0
6 16496 136 1 0
7 20945 14 1 0
8 19963 13 1 0
9 14365 0 1 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 19602 2429 16046
1 7787 203 22379
2 15826 1152 15829
3 217483 23537 17220
4 9254 1502 13212
5 171093 21063 13575
6 128265 11301 19799
7 114297 7894 7503
8 174590 18054 9631
9 2547 395 5801
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 SOLO 4 4 1 14
1 NONE 20 11 6 4
2 DUO 3 14 6 4
3 DUO 6 7 4 4
4 SUPPORT 2 12 7 14
5 SOLO 2 12 6 4
6 NONE 6 14 20 11
7 SOLO 2 14 2 4
8 CARRY 6 7 7 4
9 SUPPORT 3 14 2 4
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 57 OmoriMyBeloved False 100 TOP
1 118 HaltmannWorks False 100 JUNGLE
2 111 Voomyy False 100 MIDDLE
3 117 20080831 False 100 BOTTOM
4 215 Pikeman Lance False 100 UTILITY
5 462 Hâunter False 200 TOP
6 350 llJohnnyll False 200 JUNGLE
7 92 Dublaiar False 200 MIDDLE
8 355 Hero Øf Time False 200 BOTTOM
9 187 Thick2BThighs False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 52 2467 97957 26555
1 40 2467 176520 25840
2 32 2467 152997 39812
3 60 2467 277608 31291
4 30 2467 45755 10677
5 26 2467 195173 26736
6 22 2467 211763 20704
7 3 2467 114629 8226
8 35 2467 181233 20877
9 46 2467 63476 17732
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 19786 1960 119 354
1 34106 16044 20 635
2 24459 3643 175 184
3 25980 6551 222 970
4 21482 3656 59 116
5 43865 6353 221 64
6 38014 9864 67 885
7 29605 5070 125 192
8 30546 9340 200 120
9 20574 3480 28 70
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 204 1 12482
1 192 1 15522
2 311 1 2427
3 290 2 52764
4 169 1 5664
5 476 1 24080
6 456 1 29275
7 420 1 332
8 327 3 874
9 269 1 14836
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 1382 1925 0 4
1 524 1050 2 4
2 1329 2629 1 4
3 3184 2622 6 8
4 894 1983 0 2
5 5673 3080 1 1
6 3681 1718 1 1
7 332 1156 1 1
8 94 951 1 3
9 336 407 0 1
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 4 18 0 4
1 4 74 1 1
2 4 27 2 3
3 4 24 0 3
4 4 87 0 7
5 9 14 0 4
6 9 28 2 3
7 9 23 6 3
8 9 15 1 0
9 9 63 2 2
wardsPlaced win
0 7 True
1 1 True
2 14 True
3 7 True
4 38 True
5 2 False
6 5 False
7 6 False
8 13 False
9 28 False ,
assists baronKills bountyLevel champLevel championName \
0 10 0 7 16 Sion
1 24 0 0 14 Rammus
2 11 1 0 15 Gwen
3 12 0 2 15 Jinx
4 22 0 0 14 Morgana
5 5 0 0 16 Udyr
6 9 0 0 13 Trundle
7 5 0 0 14 TwistedFate
8 8 0 0 13 Kaisa
9 9 0 0 12 Nautilus
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 5455 5938 5455
1 719 22468 719
2 3519 10038 3519
3 15109 27417 15109
4 2655 15695 2655
5 3566 8563 3566
6 565 5785 565
7 185 1269 185
8 1757 2295 1757
9 0 582 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 4 3 0 False True
1 7 3 3 True False
2 5 0 0 True False
3 3 0 0 True False
4 5 2 0 True False
5 6 0 0 False False
6 10 2 1 False False
7 9 0 0 False False
8 8 0 0 False False
9 10 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False True False
3 True False False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 11849 TOP 1
1 False 10317 JUNGLE 0
2 False 13897 MIDDLE 0
3 False 12639 BOTTOM 1
4 False 10806 UTILITY 1
5 False 13509 TOP 0
6 False 10055 JUNGLE 0
7 False 9045 MIDDLE 0
8 False 8224 BOTTOM 0
9 False 7073 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 1 0 2033 3047 3068 3075 3077
1 0 0 6664 3075 0 3067 3047
2 2 0 3070 0 0 0 0
3 3 0 1055 6672 3006 3085 1038
4 3 0 3853 3157 6653 1026 3117
5 0 4 2033 6693 3140 3158 6609
6 0 4 3078 2031 3006 3153 1033
7 0 4 2033 6656 3100 3020 2015
8 0 4 6672 3006 6676 1055 0
9 0 4 3068 3047 2055 3076 1011
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 0 3340 2 10 7 2
1 3082 3340 1 5 4 1
2 0 3340 2 13 10 2
3 1037 3340 3 8 3 2
4 2055 3364 3 7 3 2
5 3508 3340 2 9 4 2
6 3051 3340 2 6 2 1
7 0 3340 1 5 2 1
8 0 3340 0 2 0 1
9 3860 3364 0 2 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 677 37221 5390
1 940 61429 15545
2 866 68343 13732
3 977 1618 364
4 493 59217 19635
5 652 297 297
6 504 5334 1499
7 485 91815 15850
8 372 8623 2121
9 574 15960 5703
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 2374 4 0 1
1 7903 80 0 0
2 7977 43 0 0
3 1921 12 0 1
4 6111 0 0 1
5 9701 8 1 0
6 15441 87 1 0
7 10961 0 1 0
8 8961 4 1 0
9 11131 0 1 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 63513 9114 15191
1 19182 2566 18037
2 32866 3887 16057
3 138728 16132 12601
4 6979 1613 8543
5 120792 16308 14178
6 87470 14533 16840
7 12187 2908 9155
8 82763 6379 8205
9 6923 1938 7791
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 SOLO 4 4 5 7
1 NONE 17 11 5 4
2 DUO 4 14 3 4
3 DUO 4 7 5 4
4 SUPPORT 7 14 5 4
5 NONE 5 4 3 12
6 NONE 4 4 14 11
7 SOLO 4 4 5 14
8 CARRY 5 7 4 4
9 SUPPORT 7 14 3 4
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 100 very baked False 100 TOP
1 192 zDevin False 100 JUNGLE
2 131 Grizzlier False 100 MIDDLE
3 135 jieshika False 100 BOTTOM
4 258 TheWonderBucket False 100 UTILITY
5 27 RyeBreadPitt False 200 TOP
6 357 Rotome False 200 JUNGLE
7 186 Coolgum15 False 200 MIDDLE
8 186 Thick2BThighs False 200 BOTTOM
9 91 Dublaiar False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 29 1702 100878 14649
1 49 1702 95628 18891
2 9 1702 140360 23744
3 26 1702 155398 19388
4 66 1702 70775 21978
5 33 1702 124878 16922
6 26 1702 99430 16946
7 37 1702 107946 19678
8 0 1702 97286 9296
9 43 1702 29588 8662
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 18154 4933 130 531
1 28002 8638 16 679
2 24471 9288 136 100
3 14718 6398 160 140
4 15339 5814 43 89
5 25184 6272 179 112
6 35700 14901 24 406
7 22756 3884 128 180
8 17755 3903 155 0
9 21642 561 35 210
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 68 3 144
1 196 5 15016
2 152 1 39151
3 109 3 15051
4 113 1 4577
5 197 1 3787
6 237 1 6625
7 286 1 3943
8 149 3 5899
9 237 1 6703
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 144 588 0 2
1 780 2060 2 3
2 6124 436 3 3
3 2891 195 4 7
4 730 684 1 6
5 316 1305 0 1
6 913 3418 1 1
7 920 2639 0 0
8 795 588 0 0
9 1020 2718 0 0
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 1 13 3 0
1 1 27 3 2
2 1 16 0 1
3 1 6 0 0
4 1 48 3 1
5 11 13 0 1
6 11 25 2 2
7 11 11 0 0
8 11 9 0 1
9 11 26 2 3
wardsPlaced win
0 10 True
1 11 True
2 9 True
3 4 True
4 17 True
5 9 False
6 6 False
7 7 False
8 5 False
9 12 False ,
assists baronKills bountyLevel champLevel championName \
0 1 0 0 12 Jax
1 0 0 0 10 Zac
2 1 0 0 12 Orianna
3 2 0 0 11 KogMaw
4 4 0 0 10 Yuumi
5 5 0 6 14 Sion
6 9 0 1 11 Volibear
7 7 0 0 13 Lissandra
8 5 0 3 10 Samira
9 6 0 1 9 Nautilus
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 1174 1174 1174
1 0 2636 0
2 1390 2049 1390
3 2516 4528 2516
4 1026 1026 1026
5 10029 15237 10029
6 488 17438 488
7 2703 11258 2703
8 1793 7300 1793
9 297 4751 297
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 3 0 0 False False
1 3 2 0 False False
2 4 0 0 False False
3 4 0 0 False False
4 4 1 0 False False
5 2 0 0 True False
6 0 4 2 False True
7 2 0 0 True False
8 2 1 1 False False
9 1 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 5982 TOP 0
1 True 5958 JUNGLE 0
2 True 5300 MIDDLE 0
3 True 7503 BOTTOM 0
4 True 5334 UTILITY 0
5 True 11072 TOP 0
6 True 7329 JUNGLE 0
7 True 7908 MIDDLE 0
8 True 7679 BOTTOM 0
9 True 5634 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 0 1055 6632 3077 1001 1036
1 0 0 4633 2031 1052 1082 3020
2 0 0 6653 2033 3020 1052 0
3 0 0 1055 2003 6672 3006 1036
4 0 0 3853 0 6617 1052 2055
5 0 0 1054 3748 1001 3181 6660
6 0 0 3068 2031 3047 0 0
7 0 0 1056 3157 3020 6655 3070
8 0 0 6673 3006 3123 3134 1018
9 0 0 3190 3047 3076 3860 1028
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 0 3340 0 0 0 0
1 0 3364 0 2 0 1
2 0 3340 0 0 0 0
3 3086 3340 1 3 2 1
4 3114 3364 0 1 0 1
5 3105 3340 1 7 6 3
6 0 3340 0 1 0 1
7 0 3340 0 2 0 1
8 1055 3340 2 5 3 2
9 0 3364 1 3 2 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 473 10833 1285
1 844 53637 3633
2 788 46098 5453
3 505 26257 3711
4 505 9580 6445
5 577 8419 1998
6 0 35744 1312
7 921 81816 9251
8 727 2702 911
9 846 4127 2249
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 2424 8 0 0
1 3700 83 0 0
2 5376 0 0 0
3 3087 4 0 0
4 2727 0 0 0
5 6602 12 0 0
6 3101 101 0 0
7 5211 8 0 0
8 3225 4 0 0
9 3782 0 0 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 38742 3591 8144
1 14286 609 13981
2 10942 214 3932
3 49997 3950 5970
4 2382 365 3617
5 102289 10222 9993
6 38295 2048 7767
7 8138 376 2577
8 38897 4272 4434
9 6214 1088 2721
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 SOLO 1 12 2 4
1 NONE 3 4 11 11
2 SOLO 3 4 2 12
3 CARRY 3 7 3 4
4 SUPPORT 2 3 3 14
5 DUO 1 4 2 12
6 NONE 2 4 13 11
7 DUO 1 4 2 12
8 CARRY 3 7 3 4
9 SUPPORT 3 14 1 4
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 47 legisgey False 100 TOP
1 206 Welp SeeYaLater False 100 JUNGLE
2 52 chaxa False 100 MIDDLE
3 209 Pinkypinkster False 100 BOTTOM
4 251 Aleynsia False 100 UTILITY
5 27 RyeBreadPitt False 200 TOP
6 357 Rotome False 200 JUNGLE
7 186 Coolgum15 False 200 MIDDLE
8 186 Thick2BThighs False 200 BOTTOM
9 91 Dublaiar False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 5 1305 56708 4955
1 13 1305 73907 4695
2 11 1305 62601 5668
3 5 1305 84747 10626
4 12 1305 12289 7137
5 30 1305 118160 12748
6 8 1305 83714 3975
7 18 1305 95066 10036
8 2 1305 41780 5363
9 22 1305 18115 3790
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 10624 1281 101 24
1 19306 14932 9 339
2 9380 0 106 315
3 9380 2131 149 313
4 6508 3980 9 31
5 17433 970 161 390
6 11259 6073 18 205
7 8346 356 143 185
8 8365 2775 95 3
9 7778 948 25 65
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 46 1 7132
1 40 1 5983
2 135 0 5560
3 107 3 8492
4 70 5 326
5 68 1 7452
6 0 1 9674
7 35 1 5110
8 37 2 180
9 21 1 7772
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 77 56 1 1
1 452 1624 0 0
2 0 71 0 0
3 2964 322 0 0
4 326 163 0 0
5 527 837 3 3
6 614 390 0 0
7 408 557 2 2
8 180 705 1 2
9 452 1274 0 1
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 6 9 0 1
1 6 10 2 1
2 6 10 0 0
3 6 10 0 1
4 6 30 2 5
5 1 10 0 0
6 1 27 4 2
7 1 4 0 0
8 1 9 1 0
9 1 25 2 1
wardsPlaced win
0 6 False
1 3 False
2 7 False
3 6 False
4 10 False
5 7 True
6 10 True
7 3 True
8 7 True
9 11 True ,
assists baronKills bountyLevel champLevel championName \
0 4 0 2 15 Aatrox
1 5 1 0 15 Kindred
2 6 0 1 14 Ahri
3 7 0 0 14 Yasuo
4 10 0 0 12 DrMundo
5 5 0 1 14 Soraka
6 5 0 0 12 FiddleSticks
7 3 0 2 16 Kayle
8 8 0 1 13 Jhin
9 3 0 0 12 Zyra
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3230 9482 3230
1 5496 59811 5496
2 2852 6899 2852
3 4107 6003 4107
4 3635 3635 3635
5 1747 3397 1747
6 0 1246 0
7 0 0 0
8 0 140 0
9 0 0 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 2 1 0 False False
1 1 3 4 False True
2 2 1 0 False False
3 6 0 0 False False
4 5 0 0 False False
5 6 0 0 False False
6 11 0 0 False False
7 1 0 0 False False
8 4 1 0 False False
9 4 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 True False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 10510 TOP 0
1 False 13174 JUNGLE 3
2 False 8052 MIDDLE 0
3 False 10403 BOTTOM 0
4 False 8694 UTILITY 0
5 False 8185 TOP 0
6 False 6233 JUNGLE 0
7 False 12896 MIDDLE 0
8 False 7216 BOTTOM 0
9 False 7127 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 1 0 1055 3047 6630 3053 3133
1 3 0 6672 6676 0 3006 3031
2 2 0 2033 6655 2055 3158 4629
3 2 0 3031 3006 6673 3123 1018
4 2 0 6662 3857 3111 3083 1028
5 0 3 1055 3153 3006 6670 1018
6 0 3 3152 2031 3020 3191 0
7 0 3 1054 1082 3006 3115 4633
8 0 3 6671 3009 3123 0 0
9 0 3 3853 2421 6653 3020 3191
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 1031 3340 2 5 2 1
1 1053 3340 1 10 10 2
2 0 3340 0 2 0 1
3 1042 3340 0 3 0 1
4 0 3364 1 6 3 1
5 1037 3340 1 4 2 1
6 0 3330 0 0 0 0
7 3089 3363 2 7 5 2
8 1055 3340 0 1 0 1
9 1052 3340 1 4 4 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 572 0 0
1 1457 31637 2372
2 834 45493 5461
3 426 7843 913
4 583 22237 12005
5 374 33854 5982
6 282 66822 3625
7 1130 124188 14348
8 1027 3608 784
9 1010 57307 16396
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 11741 8 0 0
1 5597 163 0 1
2 4262 8 0 0
3 8803 12 0 0
4 12992 0 0 0
5 2587 8 1 0
6 6817 67 1 0
7 5905 4 1 0
8 2867 0 1 0
9 4013 0 1 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 94470 12825 11427
1 138593 14669 16397
2 13614 712 5165
3 113678 9150 6803
4 19485 3599 13274
5 42288 5015 12371
6 4742 88 16870
7 40205 3567 10940
8 65515 9027 10529
9 3664 1165 6289
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 SOLO 3 4 3 12
1 NONE 14 11 3 4
2 SOLO 2 12 1 4
3 CARRY 3 4 4 14
4 SUPPORT 4 4 4 3
5 SOLO 4 4 4 14
6 NONE 9 11 4 4
7 SOLO 2 4 2 12
8 CARRY 5 7 2 4
9 SUPPORT 4 4 4 14
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 190 MonkeyBsness False 100 TOP
1 90 Mythicsmyazz False 100 JUNGLE
2 135 Arymilla False 100 MIDDLE
3 210 SKT T1 Vip3R False 100 BOTTOM
4 205 xXSUPZXx False 100 UTILITY
5 26 RyeBreadPitt False 200 TOP
6 137 SlothoftheAbyss False 200 JUNGLE
7 356 Rotome False 200 MIDDLE
8 91 Dublaiar False 200 BOTTOM
9 186 Coolgum15 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 12 1571 100834 12825
1 7 1571 203091 19610
2 6 1571 77773 7352
3 24 1571 123689 10662
4 19 1571 45836 15605
5 34 1571 82122 11936
6 8 1571 76868 3979
7 6 1571 166516 18185
8 19 1571 69123 9812
9 31 1571 61441 18032
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 23421 11843 151 206
1 22577 14385 36 254
2 9510 1978 118 46
3 16124 3630 175 109
4 26773 8123 35 287
5 16017 5634 124 292
6 24514 6583 24 230
7 18064 6668 261 185
8 14227 3236 105 87
9 10714 1023 37 209
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 51 1 6365
1 48 13 32861
2 68 1 18665
3 161 1 2168
4 150 1 4113
5 185 5 5979
6 261 1 5303
7 41 5 2121
8 133 4 0
9 130 1 470
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 0 252 2 4
1 2567 582 3 6
2 1178 82 2 7
3 598 517 1 5
4 0 507 2 3
5 938 1058 0 0
6 265 825 0 0
7 269 1217 0 0
8 0 830 0 0
9 470 411 0 0
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 0 11 1 0
1 0 38 3 3
2 0 23 2 0
3 0 8 0 0
4 0 27 0 3
5 11 12 0 1
6 11 17 0 4
7 11 8 1 1
8 11 10 1 0
9 11 23 0 0
wardsPlaced win
0 8 True
1 12 True
2 8 True
3 6 True
4 14 True
5 8 False
6 4 False
7 5 False
8 7 False
9 12 False ,
assists baronKills bountyLevel champLevel championName \
0 0 0 0 8 Sett
1 0 0 0 8 MasterYi
2 0 0 0 10 Viktor
3 1 0 0 8 Draven
4 1 0 0 8 Karma
5 1 0 6 11 Udyr
6 5 0 4 10 FiddleSticks
7 2 0 7 11 Pantheon
8 4 0 1 8 Jhin
9 3 0 0 8 Xerath
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 0 0 0
1 0 2419 0
2 515 515 515
3 411 411 411
4 489 489 489
5 4036 4036 4036
6 0 6695 0
7 0 1979 0
8 0 1153 0
9 0 591 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 0 0 False False
1 5 1 0 False False
2 4 0 0 False False
3 3 2 0 False False
4 1 1 0 False False
5 0 1 0 False True
6 1 0 2 False False
7 0 2 0 False False
8 0 0 0 False False
9 0 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 3140 TOP 0
1 True 4308 JUNGLE 0
2 True 3889 MIDDLE 0
3 True 5054 BOTTOM 0
4 True 2926 UTILITY 0
5 True 7454 TOP 0
6 True 5899 JUNGLE 0
7 True 6377 MIDDLE 0
8 True 4212 BOTTOM 0
9 True 3658 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 0 3051 3047 3067 0 0
1 0 0 3006 2031 1037 0 0
2 0 0 3108 1056 1029 3802 0
3 0 0 1055 1001 0 6670 1053
4 0 0 3859 4642 2010 0 1001
5 0 0 2033 6693 1083 0 3158
6 0 0 0 2031 3020 1052 1052
7 0 0 6692 2033 3047 1036 1036
8 0 0 6670 3009 0 0 0
9 0 0 3853 3802 3020 2055 0
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 0 3340 0 0 0 0
1 6670 3364 0 1 0 1
2 0 3340 0 0 0 0
3 1018 3340 0 0 0 0
4 3067 3340 0 0 0 0
5 0 3340 1 6 6 1
6 0 3330 1 4 4 2
7 0 3340 1 7 7 2
8 1055 3340 0 1 0 1
9 0 3364 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 218 0 0
1 393 4185 0
2 386 29390 3611
3 603 0 0
4 904 6603 2242
5 0 119 119
6 443 58134 5124
7 0 267 110
8 0 1021 106
9 0 15243 5949
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 706 0 0 0
1 3006 72 0 0
2 1191 0 0 0
3 5162 0 0 0
4 2356 0 0 0
5 1 4 0 0
6 2192 87 0 0
7 2566 0 0 0
8 927 0 0 0
9 1062 0 0 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 21455 5619 8148
1 46365 3294 9278
2 7643 502 6343
3 36550 3227 3429
4 2565 359 2671
5 45974 8150 8240
6 5100 38 9783
7 51725 9429 3241
8 28046 2823 1456
9 1326 396 1895
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 SUPPORT 2 4 2 12
1 SUPPORT 2 4 8 11
2 SUPPORT 1 4 2 12
3 DUO 2 7 2 4
4 SUPPORT 1 14 1 4
5 SUPPORT 2 4 2 12
6 SUPPORT 9 11 2 4
7 DUO 2 4 2 14
8 SUPPORT 0 7 0 4
9 SUPPORT 2 4 1 21
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 250 fortmadeof False 100 TOP
1 293 notpk False 100 JUNGLE
2 268 s h ö e False 100 MIDDLE
3 308 OwU UwO False 100 BOTTOM
4 311 Marcrocker False 100 UTILITY
5 26 RyeBreadPitt False 200 TOP
6 137 SlothoftheAbyss False 200 JUNGLE
7 356 Rotome False 200 MIDDLE
8 91 Dublaiar False 200 BOTTOM
9 186 Coolgum15 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 8 918 25121 5698
1 3 918 61059 4236
2 6 918 37033 4113
3 2 918 39155 3227
4 15 918 12469 2811
5 13 918 47981 8317
6 16 918 68645 5383
7 12 918 52641 9876
8 8 918 29067 2929
9 17 918 16570 6346
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 8918 201 48 52
1 12345 3936 3 107
2 7860 313 83 55
3 8660 1714 127 10
4 5114 153 22 97
5 8538 3938 102 39
6 12752 8884 6 272
7 5966 1193 106 38
8 2383 579 59 48
9 2958 135 13 116
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 93 1 3666
1 92 1 10507
2 88 1 0
3 37 2 2605
4 0 2 3300
5 0 1 1888
6 14 1 5410
7 0 1 648
8 0 1 0
9 0 1 0
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 79 64 0 0
1 942 60 0 0
2 0 324 0 0
3 0 68 0 0
4 210 86 0 0
5 48 296 1 1
6 220 776 0 0
7 336 158 0 0
8 0 0 0 0
9 0 0 0 0
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 1 5 0 0
1 1 14 2 1
2 1 2 0 0
3 1 11 2 0
4 1 10 1 2
5 0 7 1 0
6 0 13 0 2
7 0 8 2 1
8 0 3 0 0
9 0 8 2 0
wardsPlaced win
0 3 False
1 3 False
2 3 False
3 5 False
4 5 False
5 6 True
6 2 True
7 4 True
8 3 True
9 3 True ,
assists baronKills bountyLevel champLevel championName \
0 1 0 0 13 Yone
1 0 0 1 13 Volibear
2 1 0 0 13 Yasuo
3 1 0 0 10 Ashe
4 5 0 0 10 Senna
5 1 0 1 16 Viego
6 5 0 1 13 Poppy
7 3 0 4 13 Kayle
8 7 0 1 11 Jhin
9 7 0 1 12 Xerath
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3066 5166 3066
1 285 17363 285
2 1223 1223 1223
3 709 709 709
4 585 585 585
5 6134 10714 6134
6 2093 8833 2093
7 4965 6507 4965
8 2125 3270 2125
9 992 1952 992
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 10 1 0 False False
1 1 0 2 False False
2 6 0 0 False False
3 7 1 0 False False
4 5 1 0 False False
5 4 0 0 False True
6 1 0 1 False False
7 0 1 0 False False
8 3 0 0 False False
9 4 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 7612 TOP 0
1 True 9677 JUNGLE 0
2 True 8624 MIDDLE 0
3 True 6867 BOTTOM 0
4 True 5582 UTILITY 0
5 True 14649 TOP 0
6 True 7079 JUNGLE 0
7 True 9755 MIDDLE 0
8 True 7992 BOTTOM 0
9 True 7148 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 0 1055 6673 1053 3006 1038
1 0 0 3068 2031 3047 3075 3044
2 0 0 1055 3006 6673 1018 1037
3 0 0 6671 2031 3006 2055 3070
4 0 0 3006 6632 0 3864 0
5 0 0 3181 6609 3006 0 3153
6 0 0 6632 2031 3047 1031 3066
7 0 0 1054 3115 1082 3006 2055
8 0 0 6671 3009 3134 1037 1018
9 0 0 3853 6655 3020 1052 1058
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 0 3363 0 1 0 1
1 1037 3340 1 6 5 2
2 1038 3340 1 3 2 2
3 1042 3340 0 2 0 1
4 0 3364 0 0 0 0
5 6672 3340 3 17 7 2
6 0 3340 0 1 0 1
7 4633 3363 1 4 4 1
8 1055 3340 1 3 2 2
9 0 3340 1 4 3 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 177 14111 2268
1 1165 52378 4140
2 456 6340 773
3 481 1531 1431
4 484 0 0
5 516 6188 2198
6 223 9989 361
7 0 60572 4236
8 501 1678 311
9 496 46069 17717
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 2963 9 0 0
1 3621 104 0 0
2 3434 6 0 0
3 9386 8 0 0
4 6789 0 0 0
5 4048 12 0 0
6 2487 110 0 0
7 1363 9 0 0
8 1136 4 0 0
9 916 0 0 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 92249 5941 16206
1 44613 5473 13640
2 100503 7113 9333
3 70154 10999 6256
4 11016 5340 5006
5 146895 24519 23683
6 80451 3157 11085
7 27986 1317 7686
8 63749 5052 8181
9 1197 251 6970
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 SOLO 2 4 3 12
1 NONE 14 11 3 4
2 SOLO 2 4 3 14
3 CARRY 4 7 3 4
4 SUPPORT 3 3 2 4
5 SOLO 4 4 6 14
6 NONE 13 11 4 4
7 SOLO 1 4 3 12
8 CARRY 2 7 1 4
9 SUPPORT 3 4 4 21
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 394 YoRHa KnightØ False 100 TOP
1 91 GerberLord False 100 JUNGLE
2 184 Kolos False 100 MIDDLE
3 71 MyNamesGrey False 100 BOTTOM
4 189 KrashBandiScoot False 100 UTILITY
5 26 RyeBreadPitt False 200 TOP
6 137 SlothoftheAbyss False 200 JUNGLE
7 356 Rotome False 200 MIDDLE
8 91 Dublaiar False 200 BOTTOM
9 186 Coolgum15 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 10 1420 116020 9029
1 26 1420 107811 10925
2 11 1420 114058 8307
3 40 1420 71906 12651
4 23 1420 11016 5340
5 16 1420 163881 29476
6 13 1420 101236 3785
7 3 1420 97179 5553
8 22 1420 65643 5364
9 29 1420 47267 17968
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 19948 2898 144 106
1 18264 8144 31 477
2 13409 1676 168 78
3 15907 1345 122 615
4 12133 7088 5 84
5 29696 12551 180 75
6 13928 7446 12 519
7 9227 3658 174 158
8 9433 2133 118 74
9 8045 1 25 125
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 250 1 9659
1 36 1 10820
2 197 1 7215
3 157 2 220
4 113 4 0
5 130 1 10797
6 10 1 10795
7 0 5 8620
8 51 2 216
9 104 1 0
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 819 778 1 1
1 1312 1002 0 0
2 420 641 1 1
3 220 265 0 0
4 0 338 0 0
5 2758 1964 1 2
6 267 356 1 3
7 0 176 2 3
8 0 116 1 3
9 0 158 0 2
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 5 11 1 0
1 5 17 0 1
2 5 13 0 2
3 5 12 3 1
4 5 19 1 1
5 2 12 1 0
6 2 10 0 1
7 2 10 2 0
8 2 11 0 0
9 2 11 0 0
wardsPlaced win
0 8 False
1 6 False
2 6 False
3 5 False
4 6 False
5 8 True
6 6 True
7 4 True
8 7 True
9 7 True ,
assists baronKills bountyLevel champLevel championName \
0 0 0 0 13 Yone
1 0 0 0 11 Elise
2 1 0 0 13 Galio
3 2 0 0 11 Ezreal
4 1 0 0 10 Taric
5 10 0 4 15 DrMundo
6 11 1 4 13 Warwick
7 12 0 4 15 Yasuo
8 12 0 4 13 Samira
9 17 0 1 13 Sona
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3170 3170 3170
1 0 2432 0
2 775 775 775
3 2537 2783 2537
4 290 290 290
5 7427 11079 7427
6 0 19847 0
7 4287 12792 4287
8 5868 10578 5868
9 3595 5525 3595
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 1 0 False False
1 9 2 0 False False
2 7 2 0 False False
3 3 1 0 False False
4 6 0 0 False False
5 1 2 1 True False
6 1 0 3 False True
7 2 0 0 False False
8 0 1 0 False False
9 2 3 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 True False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 9435 TOP 0
1 False 5970 JUNGLE 0
2 False 7038 MIDDLE 0
3 False 7521 BOTTOM 0
4 False 5131 UTILITY 0
5 False 10027 TOP 0
6 False 10362 JUNGLE 2
7 False 11399 MIDDLE 0
8 False 9817 BOTTOM 0
9 False 7796 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 2 3072 3123 3006 6673 0
1 0 2 4636 2031 3020 1042 1042
2 0 2 1056 3047 3152 3191 2055
3 0 2 1055 3078 3070 3158 3133
4 0 2 3860 3190 3047 3024 0
5 2 0 3068 3047 3076 1011 3067
6 2 0 6632 2031 3111 3742 1028
7 2 0 1018 3139 3006 6672 1038
8 2 0 6673 3006 3134 1037 1055
9 2 0 3853 6617 3158 6616 0
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 0 3340 1 4 4 1
1 0 3340 0 0 0 0
2 1052 3364 0 2 0 2
3 1036 3340 0 0 0 0
4 0 3340 0 0 0 0
5 1054 3364 2 6 4 3
6 0 3340 2 9 5 3
7 0 3340 2 10 5 3
8 0 3363 1 4 4 1
9 0 3364 0 3 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 817 13947 3716
1 327 45767 4256
2 900 66809 9965
3 981 6615 2991
4 1099 5970 2145
5 1104 56681 10292
6 1184 41684 5042
7 921 17191 1903
8 1570 8432 2260
9 1195 22080 9418
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 7839 2 1 0
1 5127 91 1 0
2 3633 4 1 0
3 5584 4 1 0
4 8128 0 1 0
5 6586 8 0 0
6 6412 117 0 1
7 6038 1 0 0
8 2537 10 0 1
9 4121 0 0 1
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 93112 11476 9704
1 17620 442 15858
2 5371 973 16188
3 73062 11733 7459
4 5446 415 9888
5 40521 4681 10946
6 55602 4543 19835
7 113688 16707 10596
8 72547 13581 8186
9 6479 2334 7356
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 SOLO 3 4 4 14
1 NONE 4 4 16 11
2 SOLO 3 4 2 12
3 CARRY 2 7 2 4
4 SUPPORT 3 4 3 3
5 DUO 3 12 1 4
6 NONE 2 4 11 11
7 DUO 4 14 4 4
8 CARRY 3 7 3 4
9 SUPPORT 2 4 4 14
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 311 NtvGmr False 100 TOP
1 482 RaymondPing False 100 JUNGLE
2 383 Bloq False 100 MIDDLE
3 121 Saferer False 100 BOTTOM
4 114 Cthulhu False 100 UTILITY
5 91 Dublaiar False 200 TOP
6 356 Rotome False 200 JUNGLE
7 353 Hero Øf Time False 200 MIDDLE
8 185 Thick2BThighs False 200 BOTTOM
9 186 Coolgum15 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 14 1575 115545 17183
1 15 1575 75978 4845
2 33 1575 72181 10938
3 0 1575 79677 14725
4 26 1575 18116 2561
5 8 1575 104037 14973
6 20 1575 107904 9985
7 21 1575 139120 20785
8 0 1575 84499 15841
9 15 1575 28990 12183
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 17885 2678 160 110
1 21438 6240 3 178
2 21063 103 122 79
3 13575 2394 161 0
4 18453 3985 22 56
5 18692 7043 137 236
6 26626 15633 4 375
7 16923 5694 161 113
8 10972 3879 113 2
9 11539 14446 7 27
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 196 1 8485
1 188 1 12590
2 224 1 0
3 103 2 0
4 158 4 6699
5 36 1 6835
6 33 1 10617
7 78 1 8240
8 0 3 3520
9 74 5 430
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 1990 341 1 1
1 146 452 0 0
2 0 1241 0 0
3 0 532 0 1
4 0 437 1 1
5 0 1159 2 7
6 399 379 0 0
7 2174 288 0 4
8 0 248 6 6
9 430 61 1 5
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 9 14 2 0
1 9 21 2 1
2 9 14 4 1
3 9 20 1 2
4 9 11 0 0
5 2 20 2 1
6 2 16 0 1
7 2 12 0 0
8 2 8 2 0
9 2 22 3 1
wardsPlaced win
0 9 False
1 8 False
2 3 False
3 7 False
4 6 False
5 6 True
6 6 True
7 7 True
8 6 True
9 8 True ,
assists baronKills bountyLevel champLevel championName \
0 0 0 1 3 DrMundo
1 0 0 0 1 Skarner
2 0 0 0 3 Ahri
3 0 0 0 2 Kaisa
4 0 0 0 2 Thresh
5 0 0 0 2 Rengar
6 0 0 0 3 MasterYi
7 0 0 0 2 Akali
8 0 0 0 2 Caitlyn
9 0 0 0 2 Soraka
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 0 0 0
1 0 0 0
2 98 98 98
3 0 0 0
4 0 0 0
5 0 0 0
6 0 0 0
7 0 0 0
8 56 56 56
9 0 0 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 0 0 0 False True
1 0 0 0 False False
2 0 0 0 False False
3 0 0 0 False False
4 0 0 0 False False
5 1 0 0 False False
6 0 0 0 False False
7 0 0 0 False False
8 0 0 0 False False
9 0 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False True
1 False False True
2 False False True
3 False False True
4 False False True
5 False False True
6 False False True
7 False False True
8 False False True
9 False False True
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 1390 TOP 0
1 False 678 AFK 0
2 False 899 MIDDLE 0
3 False 881 BOTTOM 0
4 False 737 UTILITY 0
5 False 818 TOP 0
6 False 1048 JUNGLE 0
7 False 819 MIDDLE 0
8 False 1004 BOTTOM 0
9 False 835 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 0 0 0 0 0 0
1 0 0 0 0 0 0 0
2 0 0 2033 0 0 0 0
3 0 0 1055 0 0 0 0
4 0 0 3854 2003 2010 0 0
5 0 0 2031 0 0 0 1055
6 0 0 1035 0 0 0 0
7 0 0 1082 2031 2055 0 0
8 0 0 1055 2003 2010 0 0
9 0 0 3850 0 2003 0 0
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 1054 3340 0 1 0 1
1 0 0 0 0 0 0
2 0 3340 0 0 0 0
3 0 3340 0 0 0 0
4 0 3340 0 0 0 0
5 0 3340 0 0 0 0
6 2031 3340 0 0 0 0
7 0 3340 0 0 0 0
8 0 3340 0 0 0 0
9 0 3340 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 0 884 404
1 0 0 0
2 0 1405 254
3 0 29 0
4 0 304 177
5 137 100 0
6 0 1227 0
7 0 1086 178
8 0 0 0
9 0 1103 467
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 0 0 0 0
1 0 0 0 0
2 178 0 0 0
3 198 0 0 0
4 268 0 0 0
5 404 0 0 0
6 410 16 0 0
7 254 0 0 0
8 0 0 0 0
9 177 0 0 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 2636 348 705
1 0 0 0
2 1606 394 650
3 1541 32 133
4 179 39 448
5 2063 589 562
6 6082 0 1255
7 366 52 462
8 5627 469 13
9 284 76 72
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 DUO 0 12 1 4
1 DUO 0 11 0 4
2 DUO 1 14 1 4
3 DUO 0 7 0 4
4 DUO 0 4 0 14
5 DUO 1 4 0 14
6 DUO 1 11 0 4
7 DUO 1 4 1 12
8 DUO 0 4 1 14
9 DUO 0 4 0 7
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 91 Dublaiar True 100 TOP
1 69 Dieu de Guerre True 100 AFK
2 353 Hero Øf Time True 100 MIDDLE
3 185 Thick2BThighs True 100 BOTTOM
4 186 Coolgum15 True 100 UTILITY
5 196 PingasMaster69 False 200 TOP
6 60 Hemo Dancer False 200 JUNGLE
7 83 RankedSoul False 200 MIDDLE
8 142 BlameJV False 200 BOTTOM
9 229 floaur False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1 197 3520 752
1 0 197 0 0
2 0 197 4167 878
3 0 197 1570 32
4 2 197 637 217
5 0 197 3643 589
6 0 197 8078 0
7 0 197 1453 230
8 0 197 5645 487
9 2 197 1388 543
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 705 380 15 17
1 0 0 0 0
2 829 54 10 0
3 331 26 11 0
4 734 0 2 3
5 966 56 7 0
6 1666 694 0 0
7 946 22 7 5
8 13 3 16 0
9 250 161 0 21
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 0 1 0
1 0 0 0
2 0 1 1154
3 0 1 0
4 0 0 152
5 6 1 1480
6 0 1 768
7 0 1 0
8 0 1 18
9 0 2 0
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 0 0 0 0
1 0 0 0 0
2 228 0 0 0
3 0 0 0 0
4 0 18 0 0
5 0 0 0 0
6 0 0 0 0
7 0 228 0 0
8 18 0 0 0
9 0 0 0 0
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 0 0 0 0
1 0 0 0 0
2 0 0 0 0
3 0 0 0 0
4 0 0 0 0
5 0 0 0 0
6 0 1 0 0
7 0 0 1 0
8 0 1 0 0
9 0 0 0 0
wardsPlaced win
0 0 False
1 0 False
2 0 False
3 0 False
4 0 False
5 1 True
6 1 True
7 0 True
8 1 True
9 0 True ,
assists baronKills bountyLevel champLevel championName \
0 7 0 0 15 Jax
1 5 0 0 16 Diana
2 8 0 0 15 Lux
3 8 1 0 16 Kalista
4 16 0 0 15 Pantheon
5 12 0 9 18 Malphite
6 10 0 21 18 Shyvana
7 9 0 3 17 Syndra
8 14 0 0 16 Samira
9 13 0 1 14 Thresh
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3838 19449 3838
1 1333 24149 1333
2 280 608 280
3 2976 13316 2976
4 878 3754 878
5 3142 3142 3142
6 4932 35562 4932
7 3793 8390 3793
8 6380 8921 6380
9 2201 3849 2201
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 9 0 0 False False
1 12 3 2 False False
2 13 0 0 False False
3 9 3 0 False True
4 10 5 0 True False
5 2 2 0 False False
6 1 1 4 False False
7 6 1 0 False False
8 8 0 0 False False
9 11 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 True False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 12633 TOP 0
1 False 11478 JUNGLE 0
2 False 7754 MIDDLE 0
3 False 16018 BOTTOM 0
4 False 11788 UTILITY 0
5 False 14015 TOP 0
6 False 18636 JUNGLE 0
7 False 15188 MIDDLE 0
8 False 11534 BOTTOM 1
9 False 8777 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 1 2033 3153 3111 6632 3071
1 0 1 3157 3916 0 3020 3115
2 0 1 1056 2003 3020 6655 1058
3 0 1 3085 6673 3153 3124 3006
4 0 1 3857 6676 3179 3117 6692
5 0 0 3047 3068 3075 3041 3110
6 0 0 3115 4628 3041 3020 4636
7 0 0 4632 3157 3020 3089 6655
8 1 0 6673 3047 6676 3036 0
9 1 0 3857 3075 6664 1028 3117
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 1033 3340 3 7 2 1
1 4633 3364 0 2 0 1
2 3145 3340 0 1 0 1
3 1038 3340 3 12 5 2
4 1036 3364 1 6 2 1
5 1057 3340 2 12 9 2
6 3089 3340 1 22 21 5
7 3108 3340 3 13 8 3
8 1055 3363 1 4 3 2
9 0 3364 0 2 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 527 20954 3641
1 390 175001 14458
2 274 39153 5367
3 786 4610 2411
4 681 6945 1680
5 1427 60806 16825
6 396 204528 39712
7 1048 181341 32951
8 543 11474 1041
9 306 21910 8876
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 19635 24 1 0
1 23319 135 1 0
2 15229 0 1 0
3 22159 34 1 0
4 20089 0 1 0
5 6235 4 0 1
6 7816 189 0 1
7 6642 16 0 1
8 3058 4 0 1
9 6195 0 0 1
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 1 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 93454 10737 9787
1 31376 1981 12658
2 14692 162 3689
3 203909 19320 6597
4 47530 19335 7928
5 30544 5111 7152
6 49327 2308 22078
7 12321 939 10635
8 99059 8351 16753
9 6128 1525 19687
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 SOLO 4 4 5 14
1 NONE 5 4 13 11
2 SOLO 0 4 2 12
3 CARRY 4 4 5 7
4 SUPPORT 8 14 2 4
5 SUPPORT 5 4 2 12
6 NONE 3 4 10 11
7 CARRY 5 4 5 14
8 CARRY 4 7 2 4
9 SUPPORT 4 14 6 4
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 58 Lobo is my dog False 100 TOP
1 114 AhWoah False 100 JUNGLE
2 41 KiterKaterRJB False 100 MIDDLE
3 305 Joe With The Flo False 100 BOTTOM
4 141 caMaroni False 100 UTILITY
5 148 KinkajouEggs False 200 TOP
6 72 HotCrockets False 200 JUNGLE
7 186 Coolgum15 False 200 MIDDLE
8 91 Dublaiar False 200 BOTTOM
9 353 Hero Øf Time False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 20 2193 134581 15117
1 9 2193 219262 17282
2 19 2193 54167 5851
3 20 2193 208776 21987
4 24 2193 60311 22689
5 31 2193 103244 21937
6 7 2193 265795 42659
7 46 2193 195457 34204
8 3 2193 115128 9393
9 52 2193 32639 11148
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 29732 3978 115 61
1 36248 8873 65 158
2 19342 36 79 241
3 29110 5991 229 112
4 28358 3043 54 65
5 14480 3560 125 782
6 30774 12798 65 206
7 17974 3441 223 347
8 20084 3864 164 7
9 26774 2025 42 125
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 277 1 20173
1 385 1 12884
2 360 1 321
3 316 2 256
4 335 1 5835
5 51 1 11893
6 14 1 11939
7 285 1 1794
8 240 3 4595
9 300 5 4600
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 738 310 2 2
1 843 271 0 1
2 321 423 0 1
3 256 354 0 1
4 1673 340 1 1
5 0 1092 1 3
6 638 879 2 3
7 314 696 2 5
8 0 272 1 5
9 746 891 2 6
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 9 10 0 1
1 9 31 3 5
2 9 12 0 0
3 9 37 3 2
4 9 57 5 5
5 3 23 5 2
6 3 24 1 2
7 3 28 1 1
8 3 16 0 0
9 3 26 0 4
wardsPlaced win
0 6 False
1 4 False
2 8 False
3 16 False
4 26 False
5 11 True
6 10 True
7 12 True
8 9 True
9 14 True ,
assists baronKills bountyLevel champLevel championName \
0 8 0 0 16 DrMundo
1 15 0 0 16 Zac
2 12 0 0 17 Yasuo
3 7 0 0 15 Jhin
4 17 0 0 15 Seraphine
5 8 0 1 17 Fiora
6 7 1 3 18 Urgot
7 11 0 1 18 Kayle
8 9 0 1 15 Ezreal
9 9 0 0 14 Lux
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 1178 1178 1178
1 1314 23947 1314
2 2944 6908 2944
3 3155 9545 3155
4 1533 2030 1533
5 12568 14086 12568
6 3055 25845 3055
7 9396 24171 9396
8 1678 5549 1678
9 762 1257 762
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 0 0 False False
1 6 0 2 False False
2 10 1 0 False True
3 7 2 0 False False
4 6 0 0 False False
5 4 0 0 False False
6 6 0 2 False False
7 12 0 0 False False
8 10 0 1 False False
9 4 7 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False True False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 10868 TOP 0
1 False 11934 JUNGLE 0
2 False 13730 MIDDLE 0
3 False 14137 BOTTOM 0
4 False 9869 UTILITY 0
5 False 11618 TOP 2
6 False 16896 JUNGLE 0
7 False 17687 MIDDLE 0
8 False 11914 BOTTOM 0
9 False 8318 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 2 3068 3047 3075 3065 0
1 0 2 3068 3076 3065 3047 3193
2 0 2 1055 3006 6673 3072 3031
3 0 2 3072 6671 6676 1031 3009
4 0 2 3853 4005 3020 3011 3116
5 2 0 6630 3074 3158 1036 1054
6 2 0 6631 3111 3076 3066 3053
7 2 0 3042 3047 3156 3046 3091
8 0 0 3042 6632 3110 3158 1036
9 1 0 3853 3020 2031 6655 3916
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 1054 3340 1 6 3 1
1 0 3340 0 3 0 1
2 1038 3340 1 10 5 2
3 0 3340 4 13 6 3
4 0 3364 1 4 2 1
5 3123 3340 0 1 0 1
6 3748 3364 2 13 7 3
7 6672 3340 2 14 5 3
8 1036 3340 1 5 2 1
9 1026 3340 1 3 2 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 778 59513 16495
1 675 144020 18137
2 574 10251 2169
3 701 5114 2881
4 695 38113 15561
5 996 3578 1938
6 600 9230 73
7 271 93199 22308
8 475 10858 5906
9 1011 25370 9798
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 13441 2 1 0
1 10395 133 1 0
2 5575 12 1 0
3 6652 0 1 0
4 5559 0 1 0
5 13906 4 0 1
6 13281 164 0 1
7 15344 28 0 1
8 8381 5 0 1
9 6897 0 0 1
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 1 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 1 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 34210 5926 23322
1 20813 1873 26134
2 168928 23054 21712
3 133401 18526 14954
4 2880 1265 11961
5 105056 6350 13883
6 220768 26839 24072
7 118714 26258 17876
8 86212 14236 13898
9 2194 384 7700
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 SOLO 3 12 3 4
1 NONE 3 4 21 11
2 SOLO 3 4 5 14
3 CARRY 7 7 4 4
4 SUPPORT 4 4 7 3
5 SOLO 3 4 3 12
6 NONE 7 6 16 11
7 SOLO 3 12 4 4
8 CARRY 5 4 6 7
9 SUPPORT 3 14 4 4
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 91 Dublaiar False 100 TOP
1 186 Coolgum15 False 100 JUNGLE
2 205 GrandSaltLord False 100 MIDDLE
3 353 Hero Øf Time False 100 BOTTOM
4 135 Alece False 100 UTILITY
5 36 MusterdCat5623 False 200 TOP
6 149 CoolL86 False 200 JUNGLE
7 150 Nights Slaughter False 200 MIDDLE
8 191 Joshmp4 False 200 BOTTOM
9 161 Escanor277 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 15 1991 98824 22421
1 53 1991 178792 22527
2 33 1991 190112 25944
3 35 1991 139720 21731
4 34 1991 41113 16857
5 10 1991 144086 11821
6 42 1991 262605 31401
7 10 1991 228063 57037
8 0 1991 97175 20247
9 39 1991 28363 10981
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 43490 11682 149 281
1 44781 46901 51 557
2 29059 6809 174 111
3 22741 7020 185 124
4 18527 3118 17 243
5 28038 8436 190 140
6 38256 16732 88 776
7 33720 12015 191 224
8 22840 2692 150 138
9 14671 1449 15 283
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 237 1 5100
1 178 5 13959
2 308 1 10933
3 226 4 1204
4 172 4 120
5 175 7 35450
6 202 1 32605
7 473 3 16148
8 316 2 104
9 139 1 798
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 0 6726 0 0
1 2517 8250 1 2
2 720 1770 0 1
3 322 1134 0 2
4 30 1006 2 2
5 3532 248 3 7
6 4488 902 0 5
7 8470 500 4 6
8 104 560 3 4
9 798 73 1 3
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 11 16 0 0
1 11 16 0 0
2 11 28 4 1
3 11 28 2 3
4 11 27 0 1
5 4 16 0 2
6 4 13 0 2
7 4 11 0 0
8 4 17 0 0
9 4 53 7 1
wardsPlaced win
0 10 False
1 8 False
2 11 False
3 10 False
4 13 False
5 9 True
6 1 True
7 6 True
8 11 True
9 34 True ,
assists baronKills bountyLevel champLevel championName \
0 5 0 0 14 Camille
1 1 0 2 13 Chogath
2 1 0 0 14 Jinx
3 1 0 0 12 Caitlyn
4 6 0 0 11 Vi
5 9 0 0 16 Nocturne
6 6 1 0 14 Viego
7 3 0 4 18 Kayle
8 1 0 3 13 Xayah
9 8 0 0 12 Senna
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 0 0 0
1 0 7632 0
2 5222 12662 5222
3 2816 2816 2816
4 1394 1394 1394
5 4178 9433 4178
6 69 26964 69
7 10858 23894 10858
8 2272 11988 2272
9 2702 7008 2702
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 6 1 0 False False
1 4 1 2 False False
2 5 0 1 False False
3 6 0 0 False False
4 6 1 0 False False
5 3 0 0 False False
6 1 0 1 False False
7 4 1 0 False False
8 0 0 0 False True
9 4 4 0 True False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False True False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 7788 TOP 0
1 False 9925 JUNGLE 0
2 False 8850 MIDDLE 0
3 False 8302 BOTTOM 0
4 False 7013 UTILITY 0
5 False 12178 TOP 0
6 False 10547 JUNGLE 0
7 False 15867 MIDDLE 1
8 False 9606 BOTTOM 0
9 False 8072 UTILITY 1
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 2 1055 2033 6632 3077 3047
1 0 2 3047 2031 6662 3083 1033
2 0 2 1055 6672 3006 3085 0
3 0 2 6672 3006 6676 0 0
4 0 2 3857 3190 3047 3801 1006
5 0 0 1011 2033 6631 3053 3026
6 0 0 3047 3153 6632 3044 1037
7 1 0 3115 3006 4633 1082 1029
8 0 0 1055 3508 3086 3006 6671
9 1 0 6672 3864 3094 1036 2055
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 1028 3340 0 2 0 1
1 1029 3364 2 4 2 1
2 0 3340 1 2 2 1
3 1055 3340 1 3 2 1
4 3067 3364 0 1 0 1
5 3047 3364 2 7 4 1
6 1028 3364 1 5 5 1
7 3089 3340 2 12 7 2
8 1036 3340 1 3 3 1
9 3009 3364 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 386 737 737
1 990 75732 4833
2 682 1220 750
3 833 376 236
4 592 792 792
5 785 2858 2528
6 1615 16508 991
7 633 175548 21089
8 0 182 182
9 469 872 176
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 6204 0 1 0
1 5235 117 1 0
2 3119 4 1 0
3 5768 4 1 0
4 6015 0 1 0
5 3162 8 0 0
6 3792 143 0 0
7 1537 41 0 0
8 1531 6 0 0
9 1043 4 0 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 1 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 56079 10353 15879
1 27056 1002 19765
2 99343 11123 10337
3 87212 7395 9546
4 28252 7602 11286
5 112953 18741 17022
6 123408 9461 16378
7 50357 4602 19522
8 108622 8113 6482
9 33457 5969 8159
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 SOLO 4 4 4 12
1 NONE 15 11 3 4
2 SOLO 3 4 2 14
3 CARRY 4 7 3 4
4 SUPPORT 4 4 6 3
5 SOLO 2 12 4 4
6 NONE 4 4 14 11
7 SOLO 3 4 2 12
8 CARRY 3 4 1 7
9 SUPPORT 3 21 3 4
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 355 Rotome False 100 TOP
1 288 MidweekEel False 100 JUNGLE
2 134 Alece False 100 MIDDLE
3 90 Dublaiar False 100 BOTTOM
4 185 Coolgum15 False 100 UTILITY
5 214 Shaunthesheep321 False 200 TOP
6 63 MangaReader16 False 200 JUNGLE
7 174 GwapplesL False 200 MIDDLE
8 27 Lux1250 False 200 BOTTOM
9 242 xCLIFFORDx False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 15 1690 71544 13636
1 39 1690 121344 9271
2 18 1690 118158 12830
3 18 1690 93797 7731
4 28 1690 35214 8394
5 122 1690 115812 21269
6 15 1690 148862 11030
7 6 1690 234769 27761
8 3 1690 108804 8295
9 27 1690 36553 6540
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 23113 5620 130 106
1 25624 7931 28 1419
2 13481 2123 164 63
3 15651 3189 155 54
4 18330 2228 39 82
5 23489 9529 183 312
6 21192 12340 13 264
7 24107 11135 233 279
8 8045 1306 169 10
9 9837 5684 14 80
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 183 1 14728
1 143 1 18554
2 156 1 17595
3 150 2 6208
4 159 4 6169
5 65 1 0
6 46 1 8945
7 122 4 8863
8 0 2 0
9 72 5 2224
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 2546 1029 0 0
1 3434 623 0 0
2 956 24 1 2
3 99 336 1 1
4 0 1027 0 1
5 0 3304 2 2
6 577 1021 1 1
7 2069 3046 4 5
8 0 30 1 1
9 394 634 1 3
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 10 7 3 0
1 10 14 1 1
2 10 7 0 0
3 10 10 0 0
4 10 32 1 4
5 2 10 0 1
6 2 13 4 2
7 2 9 1 0
8 2 14 0 0
9 2 60 6 4
wardsPlaced win
0 5 False
1 6 False
2 6 False
3 7 False
4 11 False
5 3 True
6 1 True
7 5 True
8 9 True
9 25 True ,
assists baronKills bountyLevel champLevel championName \
0 7 0 0 17 Ziggs
1 4 0 0 15 Gwen
2 4 2 0 17 Khazix
3 7 0 0 18 Yasuo
4 9 0 1 15 Lux
5 16 0 0 15 Lulu
6 4 0 6 17 Jhin
7 3 0 0 15 DrMundo
8 2 0 0 17 Ezreal
9 9 0 0 18 Mordekaiser
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 18506 29638 18506
1 6926 11706 6926
2 1329 25021 1329
3 8333 25971 8333
4 2343 6575 2343
5 47 2501 47
6 0 1064 0
7 43 6069 43
8 806 7572 806
9 2337 11575 2337
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 3 2 0 False False
1 5 1 0 False False
2 8 0 3 False False
3 8 5 0 False False
4 5 2 0 False False
5 7 0 0 False False
6 5 0 0 False False
7 10 0 1 False False
8 6 2 0 False False
9 6 0 1 False True
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 14368 BOTTOM 1
1 False 10475 TOP 1
2 False 14209 JUNGLE 2
3 False 15628 MIDDLE 1
4 False 12689 UTILITY 1
5 False 8451 UTILITY 0
6 False 13813 BOTTOM 0
7 False 9557 JUNGLE 0
8 False 13290 MIDDLE 0
9 False 16712 TOP 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 1 0 6653 3158 4628 4637 3165
1 1 0 3191 3115 4633 3108 3047
2 2 0 6692 3009 3142 3508 6676
3 2 0 3140 0 3033 6672 3072
4 1 0 3853 3041 6655 4628 3020
5 0 6 3853 2065 3009 3011 1057
6 0 6 6671 3009 6676 3094 3033
7 0 6 6662 2031 3047 3083 3076
8 0 6 1056 6691 3158 3508 3074
9 0 6 3116 3157 4633 3111 4637
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 0 3340 0 2 0 1
1 1055 3340 0 1 0 1
2 0 3340 3 13 4 2
3 3006 3340 1 9 5 1
4 1058 3340 2 9 5 1
5 3114 3364 0 1 0 1
6 1055 3340 1 8 6 2
7 1011 3340 1 4 3 1
8 1038 3363 1 6 3 1
9 3211 3340 3 10 3 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 781 211720 38296
1 1288 30594 1059
2 835 12416 1697
3 980 16719 1774
4 802 60035 31645
5 561 16971 5442
6 623 19718 2105
7 561 73722 5591
8 661 24121 6172
9 868 205066 30548
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 7084 4 0 0
1 11162 12 0 0
2 15329 158 0 0
3 12142 16 0 0
4 7495 4 0 0
5 13365 0 1 0
6 14160 0 1 0
7 21300 96 1 0
8 8786 12 1 0
9 18653 16 1 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 1 0 3
3 0 0 4
4 0 1 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 14338 362 7361
1 21960 551 8761
2 149974 23784 27808
3 203865 19929 13319
4 2916 1006 4605
5 3149 761 7459
6 175181 9402 10025
7 46310 3290 27923
8 143057 10409 10628
9 20157 3227 24050
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 CARRY 6 4 5 7
1 SOLO 1 14 2 12
2 NONE 18 11 6 4
3 SOLO 6 4 9 14
4 SUPPORT 6 4 7 14
5 SUPPORT 6 4 6 14
6 CARRY 5 7 3 4
7 NONE 9 11 4 4
8 SOLO 3 4 2 12
9 SOLO 5 4 3 12
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 147 JuicyTendency False 100 BOTTOM
1 131 Eize False 100 TOP
2 265 Furia De Rosé False 100 JUNGLE
3 332 Mori Dan False 100 MIDDLE
4 222 shadows868 TTV False 100 UTILITY
5 134 Alece False 200 UTILITY
6 90 Dublaiar False 200 BOTTOM
7 87 PaladinAlwaysYes False 200 JUNGLE
8 355 Rotome False 200 MIDDLE
9 184 Coolgum15 False 200 TOP
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 23 2313 243663 38659
1 0 2313 71071 2459
2 8 2313 176192 26289
3 28 2313 236712 25133
4 44 2313 63680 33380
5 26 2313 21022 7105
6 18 2313 207705 11552
7 12 2313 127296 9136
8 1 2313 180236 16725
9 12 2313 231916 36112
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 14966 2522 244 291
1 20167 4257 94 18
2 44148 22371 9 260
3 26879 5113 216 177
4 12591 910 29 145
5 21373 1897 17 258
6 24536 6912 233 162
7 50509 15315 33 1301
8 19994 1812 216 26
9 45754 16963 229 284
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 107 2 17605
1 136 1 18516
2 282 1 13801
3 343 1 16128
4 154 1 728
5 223 1 901
6 166 2 12804
7 288 1 7264
8 253 1 13057
9 217 1 6692
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 0 521 3 3
1 848 243 5 7
2 808 1009 0 2
3 3429 1417 2 4
4 728 489 1 3
5 901 548 0 0
6 44 350 0 0
7 254 1285 0 0
8 144 579 0 0
9 2336 3050 1 1
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 1 32 2 2
1 1 27 1 1
2 1 15 0 0
3 1 39 5 0
4 1 61 2 2
5 11 36 0 4
6 11 17 0 1
7 11 7 0 1
8 11 24 2 0
9 11 22 0 1
wardsPlaced win
0 14 True
1 8 True
2 7 True
3 18 True
4 26 True
5 17 False
6 10 False
7 3 False
8 9 False
9 12 False ,
assists baronKills bountyLevel champLevel championName \
0 5 0 6 15 Nasus
1 15 0 2 14 Nunu
2 5 0 0 14 Pyke
3 12 0 1 13 Varus
4 19 0 2 13 Lux
5 4 0 0 11 Blitzcrank
6 4 0 0 13 Zac
7 0 0 0 12 Ezreal
8 3 0 0 12 Ashe
9 2 0 0 13 Illaoi
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 4907 4922 4907
1 1337 25789 1337
2 0 0 0
3 3902 5544 3902
4 3588 5528 3588
5 0 0 0
6 255 4971 255
7 706 706 706
8 0 0 0
9 725 7394 725
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 2 1 0 False False
1 1 1 4 False False
2 3 5 0 False False
3 4 1 0 False False
4 4 3 0 False False
5 8 0 0 False True
6 4 0 0 False False
7 5 0 0 False False
8 10 0 0 True False
9 6 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 True False False
1 False True False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 10347 TOP 0
1 True 9836 JUNGLE 0
2 True 12323 MIDDLE 0
3 True 10679 BOTTOM 0
4 True 9283 UTILITY 1
5 True 6152 UTILITY 0
6 True 9426 JUNGLE 0
7 True 6413 MIDDLE 0
8 True 9373 BOTTOM 0
9 True 8481 TOP 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 1 0 2033 6632 3047 3110 3076
1 1 0 3068 2031 3075 1029 3047
2 0 0 1054 3142 3158 3179 3134
3 1 0 2055 3042 3020 1026 3115
4 1 0 3853 6655 3020 4643 3145
5 0 1 3190 2031 3857 3047 3076
6 0 1 3068 2031 3076 3111 3065
7 0 1 4636 3020 3916 2031 1028
8 0 1 1055 2031 6672 3085 3006
9 0 1 6632 3047 3053 1029 0
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 1028 3364 1 7 6 1
1 1028 3364 1 2 2 1
2 6691 3364 2 12 6 2
3 3802 3340 2 8 4 2
4 0 3364 2 4 2 1
5 1011 3364 0 2 0 1
6 1028 3340 1 4 3 1
7 0 3340 0 2 0 1
8 1037 3340 1 4 2 2
9 0 3340 0 2 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 694 29536 4253
1 329 54335 8259
2 904 0 0
3 878 21163 6934
4 554 48402 17059
5 612 8891 2737
6 535 90864 12165
7 778 14314 8238
8 391 2478 1278
9 699 567 470
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 4343 12 0 0
1 5382 122 0 0
2 6040 4 0 0
3 6698 0 0 0
4 3815 0 0 0
5 9365 0 0 0
6 8232 102 0 0
7 3574 0 0 0
8 8245 4 0 0
9 8067 4 0 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 76527 10558 15247
1 20383 974 17629
2 56292 9682 9466
3 82283 14062 6923
4 2593 702 4754
5 5449 2217 8570
6 13682 964 17942
7 30541 1753 8416
8 70148 9537 8564
9 100530 13166 12090
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 SOLO 1 12 2 4
1 NONE 15 11 2 4
2 SOLO 4 4 4 14
3 CARRY 4 7 4 4
4 SUPPORT 6 14 4 4
5 SUPPORT 2 4 5 14
6 NONE 4 4 17 11
7 SOLO 2 14 3 4
8 CARRY 4 7 3 4
9 SOLO 3 4 0 12
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 51 Gordiepapa False 100 TOP
1 107 Seriousnow False 100 JUNGLE
2 125 wendsthefreeelf False 100 MIDDLE
3 142 SilentStrikerTH False 100 BOTTOM
4 168 RayneDrop67 False 100 UTILITY
5 291 Icy1sh False 200 UTILITY
6 184 Coolgum15 False 200 JUNGLE
7 90 Dublaiar False 200 MIDDLE
8 178 The Elite Solari False 200 BOTTOM
9 134 Alece False 200 TOP
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 5 1616 108680 15011
1 27 1616 131049 9454
2 20 1616 61428 13305
3 25 1616 104195 21746
4 33 1616 52758 19524
5 30 1616 19848 5418
6 38 1616 112636 14230
7 0 1616 45175 10312
8 31 1616 84053 11591
9 1 1616 105813 13636
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 19898 3987 139 162
1 23931 17128 16 359
2 16162 3348 122 134
3 14260 3584 151 377
4 8707 594 30 267
5 19429 0 31 75
6 29668 28528 32 421
7 12759 876 95 0
8 17664 1685 154 534
9 20719 5512 144 7
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 65 1 2616
1 12 5 56331
2 111 1 5135
3 149 2 748
4 74 1 1762
5 218 0 5507
6 101 5 8089
7 142 1 320
8 293 3 11427
9 184 1 4715
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 199 308 0 2
1 221 920 1 2
2 3623 655 0 0
3 748 638 2 3
4 1762 137 2 4
5 463 1493 0 0
6 1100 3493 0 0
7 320 769 0 0
8 776 854 0 0
9 0 560 1 1
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 1 5 1 0
1 1 17 1 0
2 1 18 5 3
3 1 19 2 1
4 1 38 3 1
5 5 17 0 3
6 5 17 0 2
7 5 9 0 1
8 5 8 0 1
9 5 9 0 1
wardsPlaced win
0 3 True
1 3 True
2 6 True
3 7 True
4 18 True
5 8 False
6 7 False
7 5 False
8 3 False
9 5 False ,
assists baronKills bountyLevel champLevel championName \
0 0 0 0 14 Nasus
1 4 0 5 15 Kayn
2 8 0 0 15 Zoe
3 8 0 1 15 Yasuo
4 17 0 1 14 Blitzcrank
5 3 0 0 15 Teemo
6 6 0 0 13 Zac
7 3 0 0 13 Ezreal
8 4 0 0 13 Lucian
9 5 0 1 10 Thresh
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 12014 13511 12014
1 0 10778 0
2 2073 5320 2073
3 9305 12255 9305
4 3233 4039 3233
5 2416 2416 2416
6 0 2709 0
7 524 524 524
8 0 137 0
9 1538 1711 1538
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 6 2 0 False False
1 0 0 2 False False
2 2 0 0 True False
3 8 0 1 False True
4 4 0 0 True False
5 8 0 0 False False
6 8 0 0 False False
7 7 0 0 False False
8 11 1 0 False False
9 11 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False True False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 10774 TOP 1
1 False 10979 JUNGLE 0
2 False 11001 MIDDLE 0
3 False 15955 BOTTOM 1
4 False 9310 UTILITY 0
5 False 10310 TOP 0
6 False 8835 JUNGLE 0
7 False 6218 MIDDLE 0
8 False 9999 BOTTOM 0
9 False 6809 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 1 0 3110 6632 3111 3065 0
1 1 0 6630 3111 3042 3044 0
2 0 0 3135 6655 3020 4628 0
3 1 0 3072 3006 6673 3031 3033
4 1 0 3859 3190 3117 3050 3076
5 0 3 3020 3115 3916 6653 1011
6 0 3 3068 2031 3111 3076 3211
7 0 3 4636 3020 3145 0 0
8 0 3 6675 3006 6671 1018 3057
9 0 3 3855 6670 1037 3006 1055
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 0 3364 1 7 3 1
1 1037 3340 1 5 5 1
2 0 3364 2 8 5 2
3 0 3364 5 20 5 3
4 1011 3340 1 5 2 1
5 1026 3340 1 7 2 1
6 3067 3340 0 4 0 1
7 1056 3363 0 1 0 1
8 0 3363 1 6 2 1
9 1055 3340 0 2 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 524 20574 4080
1 0 8287 0
2 852 65724 17871
3 378 9601 2357
4 630 11114 6297
5 471 91100 32103
6 749 85251 13178
7 382 11707 6703
8 353 4025 1188
9 168 5986 2360
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 20109 4 0 0
1 9203 171 0 1
2 8667 8 0 0
3 11458 8 0 0
4 8285 0 0 1
5 7558 0 1 0
6 9240 80 1 0
7 5978 0 1 0
8 5867 0 1 0
9 3920 0 1 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 89341 8831 16223
1 151719 7905 14006
2 12596 1159 6124
3 145093 32333 13482
4 10656 3776 10390
5 32328 5342 17577
6 13435 1189 20742
7 27299 1436 9395
8 86984 20238 15904
9 6543 1215 12003
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 SOLO 3 4 4 12
1 NONE 2 4 13 11
2 SOLO 7 14 4 4
3 CARRY 6 3 5 4
4 SUPPORT 5 7 4 4
5 SOLO 3 12 4 4
6 NONE 3 4 18 11
7 SOLO 3 14 1 4
8 CARRY 5 7 4 4
9 SUPPORT 4 3 3 4
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 61 NeoBigG False 100 TOP
1 146 Moistrusse False 100 JUNGLE
2 88 knifeupthebutt False 100 MIDDLE
3 153 cdog420 False 100 BOTTOM
4 41 luckybobfish False 100 UTILITY
5 207 KingYayYa False 200 TOP
6 184 Coolgum15 False 200 JUNGLE
7 90 Dublaiar False 200 MIDDLE
8 228 LetsPlayLeague False 200 BOTTOM
9 188 Sabernator False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 13 1648 114776 12912
1 11 1648 171254 8168
2 40 1648 85121 22181
3 36 1648 167342 37211
4 45 1648 26174 10291
5 45 1648 123429 37445
6 43 1648 104807 16128
7 0 1648 42640 8768
8 0 1648 93504 21426
9 17 1648 18723 3576
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 36757 6370 133 173
1 23369 14791 30 320
2 17218 5886 137 132
3 26527 5895 157 124
4 18888 2989 29 119
5 25599 4095 149 366
6 34317 23289 37 371
7 16761 0 95 0
8 22122 2815 137 1
9 16121 458 21 60
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 181 1 4860
1 0 1 11247
2 32 2 6801
3 194 1 12646
4 118 2 4403
5 260 1 0
6 253 4 6120
7 209 0 3633
8 285 2 2495
9 190 1 6194
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 0 424 4 4
1 263 160 0 0
2 3150 2426 1 3
3 2519 1586 3 3
4 217 212 1 4
5 0 462 1 1
6 1760 4334 0 0
7 628 1388 0 0
8 0 350 0 0
9 0 196 0 1
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 1 12 2 1
1 1 22 0 1
2 1 13 0 1
3 1 3 0 0
4 1 14 0 0
5 10 8 0 0
6 10 9 0 0
7 10 7 0 1
8 10 20 4 1
9 10 8 0 0
wardsPlaced win
0 5 True
1 9 True
2 6 True
3 3 True
4 7 True
5 5 False
6 6 False
7 4 False
8 10 False
9 6 False ,
assists baronKills bountyLevel champLevel championName \
0 3 0 0 14 Kled
1 5 0 1 13 Ekko
2 1 0 9 13 Yasuo
3 7 0 0 11 Caitlyn
4 7 0 0 11 Nautilus
5 0 0 0 15 Mordekaiser
6 0 0 0 11 JarvanIV
7 0 0 0 12 Irelia
8 1 0 0 11 Tristana
9 6 0 1 11 Swain
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 1248 1248 1248
1 901 7224 901
2 5112 10819 5112
3 2728 5375 2728
4 384 902 384
5 2119 2119 2119
6 0 1477 0
7 4665 5957 4665
8 3178 3178 3178
9 397 397 397
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 3 0 0 False False
1 1 0 2 False False
2 0 0 0 False False
3 7 0 0 False False
4 2 2 0 False False
5 2 0 0 False False
6 5 0 0 False False
7 6 0 0 False False
8 4 0 0 False False
9 2 5 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 6799 TOP 0
1 True 8999 JUNGLE 0
2 True 10458 MIDDLE 0
3 True 7342 BOTTOM 0
4 True 5555 UTILITY 0
5 True 8102 TOP 0
6 True 6564 JUNGLE 0
7 True 7017 MIDDLE 0
8 True 8489 BOTTOM 0
9 True 7306 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 0 3083 1037 0 1001 1054
1 0 0 3020 3089 4636 0 0
2 0 0 3033 6673 3006 1038 1037
3 0 0 6672 3006 3134 1037 0
4 0 0 3860 3111 3068 1029 0
5 0 0 1054 4633 3020 3157 1052
6 0 0 3044 3047 0 0 6630
7 0 0 1055 3153 1001 6670 1053
8 0 0 6672 3006 3094 3123 0
9 0 0 3853 2055 6655 3020 3916
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 0 3340 0 2 0 1
1 0 3340 1 6 5 1
2 0 3340 1 9 9 2
3 1055 3340 0 1 0 1
4 0 3364 0 1 0 1
5 0 3340 1 2 2 1
6 2031 3340 0 2 0 2
7 1018 3340 0 0 0 0
8 0 3340 2 5 2 1
9 1028 3364 1 3 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 754 0 0
1 1066 87947 8664
2 0 9473 1188
3 227 192 52
4 769 3823 2892
5 695 92602 17156
6 406 13137 541
7 372 8200 1426
8 460 19885 1069
9 911 30922 15024
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 19509 0 0 0
1 4070 116 0 0
2 1892 0 0 0
3 6384 8 0 0
4 4273 0 0 0
5 1868 4 0 0
6 4930 97 0 0
7 3312 8 0 0
8 2275 4 0 0
9 1922 0 0 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 59756 11595 10792
1 21432 1565 12419
2 92384 9335 6601
3 79583 5462 6012
4 6008 955 5088
5 19846 2599 12777
6 74129 5671 11106
7 82013 5419 10768
8 59049 5506 6236
9 1681 1139 5384
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 SOLO 3 4 2 12
1 NONE 3 4 13 11
2 SOLO 4 14 4 4
3 CARRY 3 7 2 4
4 SUPPORT 3 14 2 4
5 SOLO 3 4 3 12
6 NONE 2 4 9 11
7 SOLO 2 4 4 14
8 CARRY 3 7 3 4
9 SUPPORT 2 4 2 14
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 245 BIGBONESES False 100 TOP
1 165 skeletonsaint False 100 JUNGLE
2 351 Hero Øf Time False 100 MIDDLE
3 90 Dublaiar False 100 BOTTOM
4 184 Thick2BThighs False 100 UTILITY
5 133 LeanGenie False 200 TOP
6 74 Sipper888 False 200 JUNGLE
7 327 BHOss710 False 200 MIDDLE
8 117 PublicEnemyXO False 200 BOTTOM
9 105 Airstryke0101 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 9 1391 59756 11595
1 13 1391 118632 10439
2 13 1391 106124 11028
3 0 1391 84773 5923
4 28 1391 17460 4064
5 3 1391 114288 20024
6 16 1391 94676 6549
7 4 1391 107679 7364
8 2 1391 82078 6928
9 58 1391 33318 16878
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 30630 1843 128 94
1 16908 10069 33 384
2 9151 3132 154 94
3 12915 2229 122 31
4 9629 1818 33 96
5 14670 5765 173 45
6 16265 4732 17 420
7 14612 1929 143 59
8 8781 2128 143 15
9 7589 3143 22 222
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 76 1 0
1 35 1 9253
2 0 1 4266
3 140 2 4997
4 51 5 7628
5 71 1 1839
6 123 1 7410
7 150 1 17466
8 113 3 3143
9 55 1 714
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 0 328 1 2
1 209 417 0 1
2 504 657 2 3
3 407 518 0 1
4 216 267 0 1
5 269 24 1 1
6 336 228 0 0
7 518 531 1 1
8 352 270 1 1
9 714 283 0 0
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 3 3 0 0
1 3 16 0 2
2 3 9 0 0
3 3 7 0 0
4 3 31 2 2
5 3 12 0 0
6 3 10 0 0
7 3 3 0 0
8 3 10 0 2
9 3 57 7 3
wardsPlaced win
0 2 True
1 5 True
2 6 True
3 6 True
4 14 True
5 7 False
6 5 False
7 2 False
8 4 False
9 23 False ,
assists baronKills bountyLevel champLevel championName \
0 15 0 0 18 Rakan
1 8 1 0 18 MasterYi
2 7 0 1 18 Ekko
3 7 0 0 17 Caitlyn
4 15 0 1 17 Brand
5 6 0 0 17 Renekton
6 6 0 1 18 Kayn
7 14 0 0 16 Azir
8 10 0 0 18 Jhin
9 13 0 0 16 Lux
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 6092 11131 6092
1 3855 43846 3855
2 3951 4092 3951
3 4331 13617 4331
4 908 5679 908
5 8357 12238 8357
6 0 29137 0
7 3463 3463 3463
8 3687 8853 3687
9 3121 4138 3121
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 6 1 0 False False
1 9 0 4 False False
2 10 0 0 False False
3 6 0 0 False False
4 9 3 0 False False
5 10 0 0 False False
6 11 0 1 False False
7 14 2 0 False True
8 7 5 1 False False
9 5 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 14415 TOP 1
1 False 22653 JUNGLE 0
2 False 12776 MIDDLE 1
3 False 15873 BOTTOM 1
4 False 10753 UTILITY 0
5 False 13751 TOP 0
6 False 19022 JUNGLE 0
7 False 11478 MIDDLE 1
8 False 15348 BOTTOM 0
9 False 12478 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 1 1 3193 3075 6673 3047 3181
1 0 1 6691 3006 3033 6676 3072
2 1 1 1082 3020 4636 3100 3108
3 1 1 6672 3006 6676 3094 3033
4 1 1 3853 3020 6653 4629 3916
5 1 3 3026 6630 3047 3071 0
6 1 3 3158 3142 3042 6691 6676
7 1 3 3040 3020 3115 6655 0
8 1 3 3094 6671 3031 3009 6676
9 1 3 3853 3020 3157 3165 3145
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 0 3340 1 3 2 1
1 3153 3340 5 26 10 5
2 4632 3340 0 5 0 1
3 1031 3363 2 8 3 2
4 1028 3364 0 5 0 1
5 3053 3340 1 2 2 1
6 3026 3364 4 18 6 2
7 0 3340 0 4 0 1
8 3123 3363 1 11 7 2
9 6655 3363 1 5 3 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 1107 26561 7865
1 567 5606 314
2 365 128562 12341
3 1291 2108 515
4 728 55787 25090
5 634 4601 1828
6 405 14347 5727
7 452 88209 13736
8 651 11453 2644
9 1131 103662 28824
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 10316 0 0 0
1 14810 162 0 0
2 11917 16 0 0
3 11176 26 0 1
4 7239 0 0 1
5 17389 40 1 0
6 10283 213 1 0
7 11399 4 1 0
8 5795 12 1 0
9 4101 0 1 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 106638 7670 20718
1 230807 41204 29842
2 22683 1984 19450
3 170453 10392 16353
4 1744 395 11898
5 181546 15412 26800
6 296920 33683 30595
7 21207 1930 15675
8 168961 18464 12982
9 3654 533 7993
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 SOLO 4 4 6 21
1 NONE 21 11 6 4
2 SOLO 6 4 2 14
3 CARRY 4 7 5 4
4 SUPPORT 4 14 5 4
5 SOLO 5 4 4 14
6 NONE 18 11 4 4
7 SOLO 6 4 6 14
8 CARRY 3 7 3 4
9 SUPPORT 3 4 4 14
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 245 BIGBONESES False 100 TOP
1 351 Hero Øf Time False 100 JUNGLE
2 165 skeletonsaint False 100 MIDDLE
3 90 Dublaiar False 100 BOTTOM
4 184 Thick2BThighs False 100 UTILITY
5 297 StinkeeStan False 200 TOP
6 113 QuantumStellar False 200 JUNGLE
7 126 valenciagas False 200 MIDDLE
8 123 Muskysocks False 200 BOTTOM
9 210 ArcheaPower False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 24 2381 136620 15536
1 11 2381 267562 49884
2 12 2381 153381 14452
3 10 2381 180129 11493
4 15 2381 58631 26585
5 25 2381 216840 18072
6 12 2381 321710 41613
7 11 2381 115987 16328
8 31 2381 183847 21323
9 65 2381 107932 29973
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 32443 6919 209 91
1 45940 18132 53 183
2 32276 6868 161 204
3 28098 8644 176 49
4 19491 964 27 26
5 47176 8278 194 37
6 43921 18388 50 422
7 28502 1300 132 161
8 20429 4778 189 157
9 13164 1110 66 360
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 282 3 3420
1 379 1 31147
2 376 1 2136
3 228 3 7568
4 317 1 1099
5 396 1 30692
6 437 1 10442
7 539 1 6571
8 310 2 3432
9 197 1 616
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 0 1408 2 2
1 8365 1288 3 3
2 126 908 2 2
3 585 568 3 3
4 1099 353 0 2
5 832 2985 2 3
6 2202 3042 0 0
7 661 1426 1 2
8 214 1651 3 3
9 616 1069 1 4
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 7 30 1 1
1 7 27 0 3
2 7 18 0 3
3 7 19 0 2
4 7 44 3 4
5 11 25 0 1
6 11 10 0 1
7 11 38 2 2
8 11 42 5 6
9 11 64 2 0
wardsPlaced win
0 12 True
1 11 True
2 9 True
3 8 True
4 21 True
5 13 False
6 1 False
7 13 False
8 15 False
9 28 False ,
assists baronKills bountyLevel champLevel championName \
0 23 0 4 17 Shen
1 7 0 9 16 Kayn
2 13 0 0 16 Veigar
3 10 0 0 15 Caitlyn
4 13 0 0 14 Leona
5 3 0 0 16 Volibear
6 7 0 0 14 Ivern
7 3 0 0 14 Talon
8 4 0 0 14 MissFortune
9 8 0 0 13 Soraka
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2419 11785 2419
1 2610 20108 2610
2 13113 17735 13113
3 7307 15154 7307
4 1169 5842 1169
5 3473 4672 3473
6 0 4191 0
7 163 2849 163
8 5024 8186 5024
9 0 386 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 0 0 2 False False
1 4 1 3 False False
2 9 2 0 False False
3 5 0 0 False False
4 3 1 0 False False
5 9 2 0 False False
6 6 0 0 False True
7 12 3 0 True False
8 7 0 0 False False
9 7 5 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 11567 TOP 0
1 False 16671 JUNGLE 0
2 False 13549 MIDDLE 0
3 False 12558 BOTTOM 1
4 False 9000 UTILITY 1
5 False 14065 TOP 0
6 False 9915 JUNGLE 0
7 False 12134 MIDDLE 0
8 False 12286 BOTTOM 0
9 False 7003 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 1 0 3083 3068 3047 3075 1028
1 1 0 6691 3009 6676 3033 3036
2 1 0 3020 3157 3040 6656 1056
3 2 0 6672 3006 3123 6676 3095
4 2 0 3860 3047 3068 3109 3076
5 0 2 1054 6632 3075 3047 3065
6 0 2 6617 3107 3158 1082 6616
7 0 2 6630 6676 3042 3133 0
8 0 2 6672 3031 3006 6676 1036
9 0 2 3853 6617 3158 3067 3801
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 0 3340 1 4 4 1
1 1037 3340 4 19 9 4
2 3108 3364 2 10 3 2
3 1055 3340 1 6 5 2
4 0 3364 1 2 2 1
5 3742 3340 2 9 4 2
6 3114 3340 0 2 0 1
7 3111 3364 2 8 3 2
8 1036 3340 0 2 0 1
9 1011 3364 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 0 46539 16113
1 949 11516 5136
2 457 151970 29366
3 668 1586 1001
4 1071 14352 6143
5 733 53142 9365
6 934 9294 5824
7 795 522 268
8 1001 4922 1038
9 1007 5914 4339
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 6768 9 0 1
1 6013 138 0 1
2 3314 8 0 1
3 3084 12 0 1
4 4014 0 0 1
5 21006 12 1 0
6 7695 150 1 0
7 17687 40 1 0
8 7662 0 1 0
9 5038 0 1 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 42263 11911 17518
1 169229 32761 28557
2 11820 1547 21565
3 136321 15236 12862
4 8745 1895 14064
5 74725 19786 21637
6 4313 2350 12885
7 131666 23641 22507
8 148511 17030 13433
9 2271 405 10906
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 SOLO 6 4 8 14
1 NONE 22 11 6 4
2 SOLO 3 12 6 4
3 CARRY 4 7 4 4
4 SUPPORT 6 14 5 4
5 SOLO 4 4 2 12
6 NONE 14 11 5 4
7 SOLO 4 14 4 4
8 CARRY 6 4 6 7
9 SUPPORT 3 7 3 3
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 54 BaaaadPanda False 100 TOP
1 351 Hero Øf Time False 100 JUNGLE
2 167 NuttyMSP False 100 MIDDLE
3 90 Dublaiar False 100 BOTTOM
4 184 Thick2BThighs False 100 UTILITY
5 190 Pupuy0ukai False 200 TOP
6 102 Stenzel3527 False 200 JUNGLE
7 233 Joeboberson123 False 200 MIDDLE
8 121 TYellow Lambo False 200 BOTTOM
9 89 Vividus False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 41 2194 108593 30006
1 12 2194 197953 41084
2 34 2194 169344 30913
3 17 2194 160123 17841
4 41 2194 31880 8963
5 33 2194 133164 29794
6 66 2194 431397 8975
7 9 2194 135981 24786
8 9 2194 180008 20182
9 50 2194 8186 4745
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 25497 6906 113 218
1 35584 20213 21 351
2 25821 5898 141 87
3 16906 5412 179 71
4 18397 3038 23 68
5 46243 8641 158 208
6 21461 6105 4 198
7 41783 6687 130 183
8 21994 2136 218 172
9 16672 17213 4 176
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 0 1 19791
1 160 1 17206
2 309 1 5554
3 179 3 22216
4 100 5 8782
5 396 1 5296
6 195 5 417788
7 428 1 3792
8 270 3 26574
9 249 5 0
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 1982 1210 2 7
1 3185 1013 1 3
2 0 941 2 7
3 1603 958 2 5
4 924 318 2 5
5 643 3600 1 1
6 800 880 0 0
7 876 1588 0 1
8 2113 898 2 2
9 0 727 0 0
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 3 24 0 3
1 3 22 1 2
2 3 20 3 0
3 3 20 0 3
4 3 48 1 1
5 9 22 2 0
6 9 24 0 0
7 9 22 3 2
8 9 23 0 2
9 9 51 5 1
wardsPlaced win
0 12 True
1 10 True
2 7 True
3 8 True
4 21 True
5 11 False
6 11 False
7 4 False
8 12 False
9 24 False ,
assists baronKills bountyLevel champLevel championName \
0 0 0 0 3 Warwick
1 0 0 0 3 Khazix
2 0 0 0 3 Annie
3 0 0 0 2 Vayne
4 0 0 0 2 Yuumi
5 0 0 0 1 Rumble
6 0 0 0 3 MasterYi
7 0 0 0 4 Ryze
8 0 0 0 2 Caitlyn
9 0 0 0 3 Leona
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 302 302 302
1 0 0 0
2 0 0 0
3 0 0 0
4 0 0 0
5 0 0 0
6 0 0 0
7 0 0 0
8 0 0 0
9 0 0 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 0 0 0 False False
1 0 0 0 False False
2 0 0 0 False False
3 0 0 0 False False
4 0 0 0 False False
5 0 0 0 False False
6 0 0 0 False False
7 0 0 0 False False
8 0 0 0 False False
9 0 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False True
1 False False True
2 False False True
3 False False True
4 False False True
5 False False True
6 False False True
7 False False True
8 False False True
9 False False True
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 1002 TOP 0
1 False 1067 JUNGLE 0
2 False 974 MIDDLE 0
3 False 942 BOTTOM 0
4 False 831 UTILITY 0
5 False 697 AFK 0
6 False 1082 JUNGLE 0
7 False 988 MIDDLE 0
8 False 981 BOTTOM 0
9 False 861 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 0 1055 2003 0 0 0
1 0 0 1039 2031 0 0 0
2 0 0 1056 2003 0 0 0
3 0 0 1055 2003 0 0 0
4 0 0 3850 2003 0 0 0
5 0 0 0 0 0 0 0
6 0 0 1039 2003 0 0 0
7 0 0 3070 2003 0 0 0
8 0 0 1036 0 0 2031 0
9 0 0 3858 0 0 0 0
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 0 3340 0 0 0 0
1 0 3340 0 0 0 0
2 0 3340 0 0 0 0
3 0 3340 0 0 0 0
4 0 3340 0 0 0 0
5 0 0 0 0 0 0
6 0 3340 0 0 0 0
7 0 3340 0 0 0 0
8 0 3340 0 0 0 0
9 0 3340 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 0 1229 0
1 0 1507 21
2 0 1540 378
3 0 0 0
4 0 307 247
5 0 0 0
6 0 751 0
7 0 1042 154
8 0 0 0
9 0 109 57
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 0 0 0 0
1 469 16 0 0
2 154 0 0 0
3 57 0 0 0
4 0 0 0 0
5 0 0 0 0
6 373 16 0 0
7 378 0 0 0
8 94 0 0 0
9 152 0 0 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 2188 0 152
1 6709 212 1302
2 1575 214 496
3 2352 364 309
4 80 80 59
5 0 0 0
6 6012 53 1066
7 1504 143 214
8 2821 179 313
9 387 143 274
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 DUO 0 21 0 4
1 DUO 1 11 0 4
2 DUO 1 14 0 4
3 DUO 1 4 1 7
4 DUO 0 3 0 14
5 DUO 0 12 0 4
6 DUO 1 11 1 4
7 DUO 0 4 0 12
8 DUO 0 7 0 4
9 DUO 0 14 1 4
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 134 Mossk False 100 TOP
1 249 PaleWalker False 100 JUNGLE
2 156 TherapyCactus False 100 MIDDLE
3 164 HungryManMan False 100 BOTTOM
4 207 JustErxn False 100 UTILITY
5 31 Rµmble True 200 AFK
6 351 Hero Øf Time True 200 JUNGLE
7 78 QyoRo True 200 MIDDLE
8 90 Dublaiar True 200 BOTTOM
9 184 Thick2BThighs True 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 0 206 3417 0
1 0 206 8667 233
2 2 206 3239 716
3 0 206 2452 414
4 0 206 387 327
5 0 206 0 0
6 0 206 8067 101
7 0 206 2546 298
8 0 206 2821 179
9 2 206 1205 201
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 152 95 15 0
1 1819 1096 0 2
2 650 0 13 5
3 366 153 13 0
4 59 83 1 3
5 0 0 0 0
6 1439 577 0 53
7 716 37 14 0
8 408 43 13 0
9 476 8 5 2
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 0 1 0
1 0 1 450
2 0 0 124
3 0 1 100
4 0 1 0
5 0 0 0
6 0 1 1303
7 0 1 0
8 0 1 0
9 0 1 707
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 0 0 0 0
1 0 47 0 0
2 124 0 0 0
3 50 0 0 0
4 0 0 0 0
5 0 0 0 0
6 47 0 0 0
7 0 124 0 0
8 0 0 0 0
9 0 50 0 0
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 0 0 0 0
1 0 1 0 0
2 0 1 0 0
3 0 0 0 0
4 0 1 0 0
5 0 0 0 0
6 0 0 0 0
7 0 0 0 0
8 0 1 0 0
9 0 0 0 0
wardsPlaced win
0 1 True
1 1 True
2 1 True
3 1 True
4 1 True
5 0 False
6 0 False
7 0 False
8 1 False
9 0 False ,
assists baronKills bountyLevel champLevel championName \
0 3 0 1 15 Yorick
1 6 0 0 15 Rumble
2 9 0 0 13 AurelionSol
3 3 0 1 15 Samira
4 14 0 0 13 Zyra
5 1 0 0 12 Mordekaiser
6 7 0 2 15 Kayn
7 5 0 0 15 Diana
8 11 0 0 15 Caitlyn
9 15 0 2 15 Senna
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 15888 20052 15888
1 1846 15636 1846
2 174 1191 174
3 6479 12746 6479
4 799 5225 799
5 0 4345 0
6 0 13721 0
7 2427 2427 2427
8 0 641 0
9 0 875 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 6 1 0 False False
1 5 2 2 False False
2 9 2 0 False False
3 4 0 1 False False
4 9 0 0 False False
5 10 1 0 False False
6 8 0 1 False False
7 9 0 0 False True
8 4 0 0 False False
9 2 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 12021 TOP 3
1 False 11788 JUNGLE 0
2 False 8247 MIDDLE 0
3 False 14845 BOTTOM 2
4 False 8548 UTILITY 0
5 False 7853 TOP 0
6 False 13870 JUNGLE 0
7 False 10375 MIDDLE 0
8 False 10862 BOTTOM 0
9 False 8628 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 3 0 8001 6632 2033 3211 3181
1 1 0 3157 4636 3020 3116 1052
2 1 0 3020 2033 2055 3108 3802
3 2 0 1055 6673 3006 6676 3036
4 1 0 3157 6653 3853 3020 1052
5 0 5 1054 3047 4633 1043 1026
6 0 5 6691 6676 3158 6695 1031
7 0 5 3115 3152 3157 3111 0
8 0 5 6672 3006 6676 3123 1036
9 0 5 3864 3047 6632 3094 3133
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 3111 3340 1 5 2 1
1 0 3364 2 9 4 2
2 3116 3363 0 2 0 1
3 3033 3340 3 15 6 3
4 0 3364 0 2 0 1
5 1052 3340 1 5 2 1
6 3133 3340 3 15 5 2
7 0 3340 1 7 3 1
8 1055 3340 0 3 0 1
9 0 3364 1 3 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 578 27294 8361
1 400 123116 16144
2 500 66620 8128
3 734 11710 2836
4 320 42495 11629
5 414 43873 11247
6 359 7111 2620
7 480 103410 17191
8 601 188 0
9 511 1166 243
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 10979 28 0 0
1 5102 135 0 1
2 7539 12 0 1
3 5315 20 0 1
4 3887 4 0 1
5 11279 5 1 0
6 12048 90 1 0
7 9343 8 1 0
8 7252 0 1 0
9 8787 0 1 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 110129 15676 23198
1 21062 1218 17610
2 12022 619 10861
3 113655 19861 15251
4 4641 400 10108
5 15233 2896 11664
6 143283 21733 16714
7 17571 2794 13035
8 135627 9899 11920
9 40544 11958 6520
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 NONE 2 12 4 4
1 NONE 3 4 13 11
2 SOLO 4 14 2 4
3 CARRY 3 4 5 7
4 SUPPORT 5 4 2 14
5 SOLO 2 12 3 4
6 NONE 19 11 5 4
7 SOLO 4 4 6 14
8 CARRY 3 7 3 4
9 SUPPORT 3 3 3 4
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 82 tommylali False 100 TOP
1 166 The Powerful One False 100 JUNGLE
2 222 Anbelievable False 100 MIDDLE
3 68 SmallCone False 100 BOTTOM
4 49 Big Lyre False 100 UTILITY
5 229 slumbeezy2 False 200 TOP
6 351 Hero Øf Time False 200 JUNGLE
7 123 PerfectVirtiouso False 200 MIDDLE
8 90 Dublaiar False 200 BOTTOM
9 184 Thick2BThighs False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 11 1736 141614 24262
1 11 1736 154323 18383
2 22 1736 79009 9113
3 5 1736 129602 23256
4 37 1736 49065 12114
5 4 1736 61279 14719
6 10 1736 166259 26118
7 7 1736 124600 20884
8 14 1736 171036 10277
9 28 1736 43181 12382
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 35834 12945 133 176
1 23771 8507 21 595
2 20283 1647 99 303
3 21405 6999 164 48
4 15355 2020 31 160
5 23544 3227 72 25
6 29051 12287 63 255
7 23216 1105 154 51
8 19323 5560 168 14
9 15683 6163 21 159
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 153 1 4189
1 166 1 10144
2 235 1 366
3 153 2 4237
4 223 1 1929
5 290 1 2173
6 220 1 15864
7 276 1 3618
8 94 2 35220
9 26 4 1470
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 224 1656 5 6
1 1020 1058 1 3
2 366 1882 0 0
3 559 837 3 3
4 84 1360 0 1
5 575 600 0 0
6 1764 287 1 1
7 898 838 0 0
8 378 151 0 0
9 180 375 0 0
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 1 10 2 0
1 1 16 2 2
2 1 32 3 2
3 1 8 0 1
4 1 38 0 1
5 11 16 1 1
6 11 6 0 0
7 11 13 0 1
8 11 6 0 1
9 11 13 0 0
wardsPlaced win
0 5 True
1 3 True
2 10 True
3 3 True
4 17 True
5 6 False
6 5 False
7 7 False
8 4 False
9 7 False ,
assists baronKills bountyLevel champLevel championName \
0 5 0 0 16 Yorick
1 5 0 0 16 Vi
2 1 0 0 16 Katarina
3 2 0 0 14 Tristana
4 6 0 0 13 Blitzcrank
5 4 0 0 16 Darius
6 9 0 1 17 Jax
7 2 0 6 18 Yasuo
8 10 0 0 15 Caitlyn
9 9 0 1 15 Swain
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 4977 9899 4977
1 91 15375 91
2 326 693 326
3 2879 4639 2879
4 0 1155 0
5 7843 13168 7843
6 172 14488 172
7 11878 28081 11878
8 1642 2517 1642
9 1535 4449 1535
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 0 0 False True
1 10 1 2 True False
2 5 0 0 False False
3 12 0 0 False False
4 7 2 0 False False
5 7 1 0 False False
6 6 0 1 False False
7 3 1 1 False False
8 7 0 1 False False
9 5 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False True False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 10500 TOP 0
1 False 17180 JUNGLE 0
2 False 10024 MIDDLE 0
3 False 8756 BOTTOM 0
4 False 5759 UTILITY 0
5 False 11536 TOP 0
6 False 13118 JUNGLE 2
7 False 17455 MIDDLE 0
8 False 10759 BOTTOM 0
9 False 11492 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 2 3078 3075 3047 1055 3044
1 0 2 6692 3071 3053 6333 3158
2 0 2 1082 3157 3152 3020 1026
3 0 2 1055 6672 3006 3046 1018
4 0 2 3855 3009 6664 3076 0
5 1 0 3075 6632 3047 3181 0
6 2 0 2031 3078 3047 3153 3053
7 1 0 3006 3026 6673 3033 3031
8 1 0 6672 3006 6676 3095 0
9 1 0 3853 2420 6653 4629 3191
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 1037 3340 2 5 3 1
1 1038 3364 5 16 3 3
2 4630 3363 2 4 2 1
3 0 3340 0 3 0 1
4 0 3340 0 0 0 0
5 0 3340 1 4 2 2
6 0 3340 2 8 3 2
7 1031 3340 3 14 6 3
8 1055 3340 1 5 2 1
9 3020 3364 3 10 4 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 800 27440 8704
1 490 4851 0
2 800 78905 10941
3 262 22030 1693
4 797 5504 3421
5 438 900 139
6 473 40412 5234
7 617 2508 1444
8 942 721 198
9 529 65168 22813
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 3369 4 1 0
1 10161 132 1 0
2 1758 0 1 0
3 10156 0 1 0
4 4982 0 1 0
5 6614 4 0 1
6 8771 164 0 1
7 7576 39 0 1
8 1143 11 0 0
9 3321 0 0 1
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 91556 12492 26268
1 143923 36963 24157
2 20059 471 13194
3 94078 10420 11879
4 4088 1586 11265
5 144169 15294 20983
6 142619 19449 19396
7 267206 22844 14399
8 89204 9987 15777
9 4576 1080 18614
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 SOLO 5 4 7 14
1 NONE 17 11 5 4
2 SOLO 4 4 4 14
3 CARRY 6 7 4 4
4 SUPPORT 5 14 3 4
5 SOLO 5 6 5 4
6 NONE 14 11 4 4
7 SOLO 3 4 5 14
8 CARRY 4 7 3 4
9 SUPPORT 7 14 4 4
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 149 Títan øf Tøxìc False 100 TOP
1 485 DaddyMinato False 100 JUNGLE
2 64 DarkyKun False 100 MIDDLE
3 153 Ace Of Dragons False 100 BOTTOM
4 179 IceWaterBucket False 100 UTILITY
5 351 Hero Øf Time False 200 TOP
6 79 TurtleKing2000 False 200 JUNGLE
7 203 illegitimateboi False 200 MIDDLE
8 89 Dublaiar False 200 BOTTOM
9 184 Thick2BThighs False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 7 1952 129323 22706
1 42 1952 164001 38227
2 0 1952 109821 12345
3 2 1952 124466 13141
4 21 1952 10826 5736
5 18 1952 157864 20072
6 28 1952 199733 26107
7 28 1952 294458 25932
8 15 1952 94348 11286
9 47 1952 70658 24679
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 33146 7736 165 215
1 37244 10188 32 285
2 16656 2542 166 0
3 22881 3783 147 10
4 17015 1033 7 77
5 29135 6886 190 114
6 29821 11159 27 247
7 22820 6751 248 214
8 17354 2843 134 50
9 22929 7204 53 223
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 261 1 10325
1 345 1 15225
2 157 1 10857
3 364 3 8356
4 209 1 1233
5 242 1 12794
6 149 1 16702
7 123 1 24743
8 219 1 4422
9 166 1 913
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 1510 3509 0 0
1 1264 2925 1 1
2 932 1703 0 0
3 1028 844 1 1
4 728 767 0 0
5 4639 1538 2 3
6 1422 1653 1 1
7 1642 844 5 7
8 1101 433 1 1
9 785 993 0 1
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 9 16 0 0
1 9 13 1 1
2 9 15 0 0
3 9 8 0 0
4 9 22 2 0
5 2 13 1 0
6 2 33 0 7
7 2 31 1 0
8 2 17 0 1
9 2 31 2 0
wardsPlaced win
0 10 False
1 5 False
2 9 False
3 5 False
4 13 False
5 6 True
6 11 True
7 11 True
8 9 True
9 14 True ,
assists baronKills bountyLevel champLevel championName \
0 0 0 2 12 Yorick
1 7 0 5 11 Shaco
2 2 0 5 11 Kayle
3 2 0 1 9 Caitlyn
4 3 0 0 8 Senna
5 0 0 0 9 Gwen
6 1 0 0 9 Khazix
7 1 0 0 10 Lucian
8 1 0 0 8 Rengar
9 1 0 0 8 Taric
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 6804 12522 6804
1 709 7395 709
2 1946 1946 1946
3 2332 2332 2332
4 847 847 847
5 0 0 0
6 0 5513 0
7 895 3839 895
8 971 971 971
9 0 0 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 0 0 0 False False
1 1 3 1 False True
2 2 2 0 False False
3 1 0 0 False False
4 2 0 0 False False
5 3 2 0 False False
6 4 2 0 False False
7 5 1 0 False False
8 3 1 0 False False
9 1 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 7400 TOP 0
1 True 7196 JUNGLE 0
2 True 7320 MIDDLE 0
3 True 5005 BOTTOM 0
4 True 4352 UTILITY 0
5 True 3649 TOP 0
6 True 4598 JUNGLE 0
7 True 5449 MIDDLE 0
8 True 5396 BOTTOM 0
9 True 3671 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 0 3078 3044 3111 0 1054
1 0 0 3006 2055 6631 3134 0
2 0 0 1054 0 3006 3115 1082
3 0 0 6670 3006 0 0 0
4 0 0 3864 3070 3009 1029 6660
5 0 0 2033 4635 1055 2055 3070
6 0 0 3133 3134 2031 1001 2055
7 0 0 1055 0 6671 1001 1042
8 0 0 1055 2055 2031 3047 6691
9 0 0 3859 2055 3067 4642 3158
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 0 3340 1 2 2 1
1 0 3364 1 6 5 1
2 0 3363 1 7 5 3
3 1055 3340 0 1 0 1
4 1033 3340 0 0 0 0
5 1001 3340 0 0 0 0
6 0 3340 0 1 0 1
7 0 3340 0 2 0 1
8 0 3340 0 2 0 1
9 0 3364 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 0 11307 2596
1 212 23354 3000
2 501 26048 4670
3 469 190 50
4 462 185 185
5 451 17534 2369
6 243 5351 172
7 315 1111 436
8 495 4223 643
9 930 3666 1510
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 2308 4 0 0
1 940 72 0 0
2 313 0 0 0
3 1073 0 0 0
4 757 0 0 0
5 3418 4 0 0
6 2579 76 0 0
7 3732 0 0 0
8 1079 0 0 0
9 1080 0 0 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 62319 4252 3640
1 31473 4984 7814
2 16055 1897 6418
3 43600 3790 3213
4 8831 4866 3343
5 19337 1179 7226
6 51274 2335 8932
7 40830 6766 5442
8 32785 4118 8800
9 4806 420 4120
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 SUPPORT 2 4 1 12
1 SUPPORT 10 11 4 14
2 SUPPORT 2 4 2 12
3 SUPPORT 2 7 2 4
4 SUPPORT 2 3 2 4
5 SUPPORT 2 4 2 12
6 SUPPORT 9 11 2 4
7 SUPPORT 3 14 2 4
8 DUO 2 7 1 4
9 SUPPORT 4 14 1 4
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 236 zeskgames False 100 TOP
1 131 Pastis False 100 JUNGLE
2 354 Rotome False 100 MIDDLE
3 89 Dublaiar False 100 BOTTOM
4 136 Judge45 False 100 UTILITY
5 127 StevePlex False 200 TOP
6 275 SoapOreo False 200 JUNGLE
7 214 Caique False 200 MIDDLE
8 206 xZiko63 False 200 BOTTOM
9 202 ChoisBoi False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 3 972 74781 6848
1 17 972 65806 9134
2 1 972 42104 6568
3 13 972 43791 3841
4 19 972 9113 5148
5 2 972 45088 5258
6 2 972 62902 2596
7 1 972 44585 7708
8 2 972 42779 4762
9 14 972 13572 2309
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 7658 2182 116 44
1 8963 3584 13 477
2 7117 1669 105 136
3 4457 1141 94 22
4 4308 1325 3 28
5 10666 1615 64 55
6 12052 5880 6 45
7 9521 1434 109 29
8 10164 2294 106 21
9 5255 1973 25 26
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 0 1 1153
1 12 1 10978
2 51 3 0
3 14 2 0
4 35 3 97
5 67 1 8216
6 61 1 6276
7 92 1 2644
8 71 2 5770
9 27 4 5099
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 0 1709 2 2
1 1150 208 0 0
2 0 386 1 1
3 0 170 1 1
4 97 208 0 1
5 1709 22 0 0
6 88 540 0 0
7 506 346 0 0
8 0 284 0 0
9 378 54 0 0
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 0 5 0 1
1 0 15 4 2
2 0 6 2 1
3 0 7 0 1
4 0 26 0 3
5 4 13 4 1
6 4 9 3 1
7 4 12 1 1
8 4 10 3 0
9 4 13 3 0
wardsPlaced win
0 4 True
1 4 True
2 6 True
3 5 True
4 11 True
5 6 False
6 4 False
7 6 False
8 6 False
9 7 False ,
assists baronKills bountyLevel champLevel championName \
0 2 0 2 17 Nasus
1 4 0 0 13 Rengar
2 1 0 0 14 Azir
3 2 0 0 16 Ezreal
4 5 0 0 14 Sett
5 13 0 0 16 DrMundo
6 19 0 10 17 Skarner
7 15 0 3 18 Tryndamere
8 14 0 1 15 Caitlyn
9 17 0 0 15 Lux
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 10502 10502 10502
1 0 9653 0
2 1156 1156 1156
3 1936 3593 1936
4 1613 2110 1613
5 3307 15749 3307
6 575 25470 575
7 14216 22466 14216
8 1181 5310 1181
9 740 2165 740
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 4 2 0 False True
1 12 0 2 False False
2 10 0 0 False False
3 4 1 0 False False
4 9 2 0 False False
5 5 1 1 False False
6 3 1 1 False False
7 3 3 1 False False
8 3 0 0 False False
9 6 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False True False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 15261 TOP 0
1 True 9730 JUNGLE 0
2 True 9343 MIDDLE 0
3 True 14054 BOTTOM 0
4 True 7666 UTILITY 0
5 True 11778 TOP 0
6 True 14493 JUNGLE 1
7 True 17492 MIDDLE 0
8 True 10486 BOTTOM 0
9 True 10014 UTILITY 1
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 0 2 3075 6632 3047 3742 3065
1 0 2 6691 3036 1031 3047 3057
2 0 2 6653 3115 3020 3916 0
3 0 2 3158 6632 3042 6694 6609
4 0 2 3857 6631 3009 3066 1031
5 0 0 1054 6662 3076 3047 3053
6 1 0 6664 1033 3111 3742 3075
7 2 0 6631 3046 3158 3033 6694
8 0 0 6672 3006 3123 6676 1018
9 1 0 3853 3020 6655 3165 1026
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 3044 3340 2 9 6 1
1 1028 3364 1 3 2 1
2 0 3340 0 1 0 1
3 0 3363 1 6 4 1
4 1028 3364 0 1 0 1
5 3742 3340 1 6 6 2
6 4401 3364 1 11 10 2
7 6675 3363 3 12 4 3
8 1055 3340 1 5 4 1
9 4630 3364 1 5 2 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 1208 29051 10757
1 450 28376 2084
2 689 112074 6963
3 1186 21161 6093
4 791 0 0
5 755 85233 20649
6 814 65599 5565
7 1021 0 0
8 1077 228 228
9 514 79258 17368
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 16999 2 0 0
1 5863 110 0 0
2 8403 19 0 0
3 5562 0 0 0
4 8633 0 0 0
5 10055 42 0 0
6 3745 160 0 0
7 7984 51 0 0
8 2634 4 0 0
9 3324 7 0 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 178431 28068 29120
1 82506 13025 24742
2 15848 711 12585
3 162886 16726 15160
4 23221 6761 14178
5 75555 9280 28936
6 98474 10623 20022
7 246243 32956 26016
8 100562 12133 11830
9 6250 508 10025
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 SOLO 5 4 8 6
1 NONE 14 11 3 4
2 SOLO 5 4 6 21
3 CARRY 4 4 5 7
4 SUPPORT 1 3 6 4
5 SOLO 4 4 2 12
6 NONE 23 11 7 6
7 SOLO 6 4 11 14
8 CARRY 4 7 2 4
9 SUPPORT 5 4 6 14
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 165 kratos59kratos59 False 100 TOP
1 28 SirBoooger False 100 JUNGLE
2 134 MopedTed26 False 100 MIDDLE
3 428 FancyPants ˉ False 100 BOTTOM
4 98 Bramstii False 100 UTILITY
5 354 Rotome False 200 TOP
6 268 DragonDeezBallz False 200 JUNGLE
7 166 LaptopGamer False 200 MIDDLE
8 89 Dublaiar False 200 BOTTOM
9 67 masterlu3 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 22 2163 209122 38825
1 9 2163 118746 15681
2 6 2163 127994 7746
3 4 2163 194229 22930
4 11 2163 33915 10641
5 22 2163 163793 29930
6 55 2163 179488 20022
7 19 2163 257320 35868
8 23 2163 105419 13548
9 42 2163 86178 18545
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 49377 6859 199 155
1 31840 11184 26 180
2 22120 831 155 131
3 22636 7778 248 114
4 23875 162 37 34
5 39904 15657 139 1126
6 24305 9595 23 941
7 35406 13224 218 317
8 15631 6022 131 34
9 13960 1446 56 286
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 194 1 1640
1 384 1 7864
2 398 1 72
3 112 3 10181
4 280 1 10693
5 137 1 3005
6 94 1 15415
7 150 1 11076
8 113 3 4628
9 135 1 669
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 0 3257 3 3
1 572 1234 0 0
2 72 1131 0 0
3 110 1913 0 1
4 3879 1063 1 1
5 0 913 0 1
6 3833 537 1 1
7 2912 1405 4 5
8 1186 1166 2 2
9 669 610 0 2
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 7 28 2 0
1 7 22 0 7
2 7 17 0 3
3 7 26 1 1
4 7 56 2 4
5 5 14 1 1
6 5 22 1 7
7 5 28 3 1
8 5 15 0 2
9 5 53 2 2
wardsPlaced win
0 12 False
1 0 False
2 11 False
3 10 False
4 30 False
5 8 True
6 1 True
7 14 True
8 9 True
9 26 True ,
assists baronKills bountyLevel champLevel championName \
0 3 0 3 17 Gwen
1 9 0 0 14 Kayn
2 10 0 0 15 Orianna
3 8 0 2 16 Swain
4 19 0 0 14 Sett
5 6 0 0 16 Nasus
6 7 0 1 12 FiddleSticks
7 8 0 0 15 Viego
8 8 0 0 14 Caitlyn
9 13 0 3 15 Lux
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 5886 15180 5886
1 186 14991 186
2 4317 4593 4317
3 3519 4417 3519
4 5556 5556 5556
5 6011 6011 6011
6 122 4521 122
7 0 3572 0
8 2702 8266 2702
9 1981 5236 1981
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 2 1 0 False False
1 14 0 2 False False
2 7 2 0 False False
3 6 0 0 False True
4 8 0 0 True False
5 7 1 0 False False
6 4 0 0 False False
7 10 1 1 False False
8 13 0 1 False False
9 10 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False True False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 13644 TOP 0
1 False 9569 JUNGLE 1
2 False 10460 MIDDLE 0
3 False 17589 BOTTOM 0
4 False 9834 UTILITY 1
5 False 11424 TOP 0
6 False 9438 JUNGLE 0
7 False 15977 MIDDLE 0
8 False 9671 BOTTOM 0
9 False 10147 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 1 0 3157 3020 3115 4633 1056
1 1 0 6691 3117 6676 3134 0
2 1 0 2033 6655 0 3020 3040
3 1 0 1058 3157 3020 4637 6653
4 2 0 3857 3047 3053 1037 3076
5 0 2 6632 2033 3111 3065 3075
6 0 2 3152 2031 3020 3191 1052
7 0 2 3123 3153 6673 3006 3508
8 0 2 6672 3006 6676 3123 1042
9 0 2 3853 6655 3020 4628 3191
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 3100 3364 2 9 6 2
1 0 3340 1 5 2 1
2 1052 3340 0 2 0 1
3 3165 3340 6 23 8 3
4 6630 3340 1 4 2 1
5 3066 3340 0 2 0 1
6 0 3330 1 6 3 1
7 3031 3340 5 18 8 2
8 1055 3340 1 4 2 1
9 0 3340 1 6 3 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 1052 80828 11451
1 424 6201 1792
2 854 109116 10388
3 518 136719 35733
4 363 0 0
5 788 79579 9990
6 784 93249 6470
7 590 10222 3893
8 262 516 446
9 300 77225 28462
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 10258 62 0 0
1 10610 82 0 0
2 5445 12 0 1
3 11286 18 0 1
4 13989 0 0 0
5 14451 0 1 0
6 6140 112 1 0
7 20177 24 1 0
8 11654 8 1 0
9 8322 0 1 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 44179 3936 20338
1 89572 13238 21715
2 12173 854 8907
3 20187 2998 19039
4 46517 14724 20522
5 81585 12253 20208
6 5812 170 13897
7 124381 37020 15976
8 81153 9085 8928
9 6252 1342 7436
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 NONE 6 14 3 4
1 NONE 4 4 14 11
2 SOLO 4 4 6 21
3 CARRY 5 4 6 3
4 SUPPORT 4 14 9 4
5 SOLO 4 12 5 4
6 NONE 8 11 3 4
7 SOLO 4 4 2 12
8 CARRY 5 7 4 4
9 SUPPORT 6 14 6 4
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 209 Forgive Desire False 100 TOP
1 73 1upusDominus False 100 JUNGLE
2 237 Star Cluster False 100 MIDDLE
3 78 tmlll False 100 BOTTOM
4 142 Chingwidal False 100 UTILITY
5 160 Dusx Of The Day False 200 TOP
6 137 SlothoftheAbyss False 200 JUNGLE
7 354 Rotome False 200 MIDDLE
8 89 Dublaiar False 200 BOTTOM
9 48 nataxxx False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 11 1861 162098 22035
1 7 1861 102930 15728
2 12 1861 126724 11243
3 48 1861 168216 39772
4 19 1861 60341 20705
5 16 1861 173190 22244
6 28 1861 105388 7083
7 19 1861 142538 41132
8 18 1861 85604 10192
9 83 1861 84245 30573
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 30875 9538 138 194
1 32587 11129 21 218
2 14398 1 178 360
3 30797 11317 150 272
4 35543 4276 47 62
5 40513 3303 207 120
6 20385 10144 2 505
7 39663 7888 156 76
8 23712 4968 113 47
9 17283 562 59 275
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 65 1 37090
1 419 1 7157
2 211 1 5435
3 201 1 11309
4 213 1 13824
5 251 1 12025
6 125 1 6326
7 380 1 7934
8 331 2 3934
9 278 1 768
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 6646 278 2 3
1 697 262 0 1
2 0 44 1 4
3 1039 471 2 3
4 5980 1031 2 3
5 0 5853 2 2
6 442 347 0 0
7 218 3508 0 0
8 659 3130 1 1
9 768 1524 0 1
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 3 9 1 0
1 3 15 0 1
2 3 22 3 0
3 3 15 0 1
4 3 20 0 1
5 9 25 1 0
6 9 22 0 1
7 9 26 7 1
8 9 16 0 2
9 9 40 1 3
wardsPlaced win
0 5 True
1 4 True
2 11 True
3 8 True
4 11 True
5 10 False
6 1 False
7 6 False
8 8 False
9 19 False ,
assists baronKills bountyLevel champLevel championName \
0 19 0 3 18 Riven
1 20 1 3 18 Karthus
2 18 0 1 18 Viego
3 12 0 0 18 Caitlyn
4 29 0 2 18 Braum
5 9 0 0 18 LeeSin
6 8 0 0 18 Camille
7 12 0 0 18 Malphite
8 6 1 0 17 Tristana
9 14 0 0 15 Lulu
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 6462 11752 6462
1 1420 26300 1420
2 4439 11519 4439
3 1642 8110 1642
4 1181 2542 1181
5 1799 34216 1799
6 9413 21834 9413
7 6607 6607 6607
8 2554 18169 2554
9 1172 3931 1172
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 10 4 0 False False
1 12 2 2 False False
2 11 1 0 False False
3 12 0 0 False False
4 5 1 0 False False
5 8 0 2 False False
6 14 1 0 False True
7 11 0 0 False False
8 9 1 2 False False
9 5 4 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False True False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 17411 TOP 0
1 False 19867 JUNGLE 0
2 False 17111 MIDDLE 1
3 False 17161 BOTTOM 0
4 False 11332 UTILITY 0
5 False 18380 JUNGLE 0
6 False 17075 TOP 2
7 False 19976 MIDDLE 0
8 False 12912 BOTTOM 1
9 False 9630 UTILITY 1
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 1 4 3158 6630 2420 3071 3053
1 0 4 3157 6653 3041 3020 3165
2 1 4 3057 3153 6672 3006 3036
3 0 4 6672 3006 3094 3095 3033
4 1 4 3857 3190 3050 3076 3111
5 0 1 6692 3047 3026 3074 3156
6 3 1 3748 6632 3053 3047 3153
7 0 1 4629 3157 3135 3020 3089
8 1 1 6672 3046 3006 3033 1037
9 1 1 0 3158 3853 6617 4643
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 6609 3363 2 7 3 1
1 4637 3364 6 17 3 3
2 3031 3340 3 7 2 2
3 3026 3363 4 13 5 3
4 3109 3364 1 3 2 1
5 4401 3340 3 17 8 2
6 1057 3340 1 9 2 2
7 4636 3340 6 20 5 3
8 1018 3340 0 4 0 1
9 3222 3364 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 405 858 570
1 689 247084 58249
2 534 9381 5150
3 576 11120 3389
4 937 18621 11909
5 851 52260 4389
6 333 2298 2298
7 803 137649 54220
8 585 32182 1419
9 1484 31234 5134
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 11162 18 0 1
1 17739 108 0 0
2 12383 40 0 1
3 18716 13 0 0
4 9731 0 0 1
5 16405 193 1 0
6 26307 18 1 0
7 17188 16 1 0
8 13261 36 1 0
9 8604 0 1 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 242589 28535 26280
1 10090 1245 22230
2 229581 30144 27313
3 155129 19346 13092
4 10890 3735 20783
5 193417 26138 30448
6 180963 20863 41777
7 57845 5335 23010
8 116664 12155 13766
9 5284 449 9938
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 NONE 5 4 4 12
1 NONE 7 3 22 11
2 SOLO 5 4 3 12
3 CARRY 5 7 5 4
4 SUPPORT 6 14 3 4
5 NONE 4 4 21 11
6 SOLO 6 12 10 14
7 SOLO 8 14 5 4
8 CARRY 6 4 7 7
9 SUPPORT 3 14 4 4
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 199 Lammyidk False 100 TOP
1 75 Desukato False 100 JUNGLE
2 354 Rotome False 100 MIDDLE
3 89 Dublaiar False 100 BOTTOM
4 193 MoistureCreature False 100 UTILITY
5 438 BULLY HUNTER 420 False 200 JUNGLE
6 374 Phxs3 False 200 TOP
7 403 ALLAH JR False 200 MIDDLE
8 316 Wickedhawk False 200 BOTTOM
9 235 takaDo False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 42 2571 261379 29771
1 36 2571 267086 61929
2 19 2571 254534 38053
3 18 2571 186099 25875
4 73 2571 40114 18027
5 37 2571 257342 32457
6 23 2571 225466 31870
7 50 2571 201586 61814
8 6 2571 184369 15880
9 45 2571 36970 6035
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 40418 8422 248 199
1 42930 12135 99 507
2 44290 8431 237 125
3 33254 7666 219 117
4 34195 4208 29 289
5 50126 21246 42 277
6 71753 16284 206 151
7 42060 4023 175 762
8 28467 7666 177 42
9 19683 6653 37 429
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 313 1 17931
1 459 1 9909
2 402 2 15571
3 475 3 19849
4 184 5 10602
5 350 1 11664
6 598 1 42205
7 499 1 6091
8 318 4 35522
9 177 5 451
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 666 2975 2 6
1 2433 2960 1 1
2 2758 4594 2 3
3 3140 1445 0 0
4 2382 3680 1 4
5 1929 3271 2 2
6 8708 3668 3 4
7 2258 1861 2 2
8 2305 1439 1 1
9 451 1140 0 1
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 9 38 4 2
1 9 20 2 5
2 9 30 1 0
3 9 22 0 1
4 9 74 1 4
5 6 29 0 3
6 6 22 1 2
7 6 15 0 1
8 6 22 1 3
9 6 109 3 4
wardsPlaced win
0 10 True
1 3 True
2 10 True
3 10 True
4 34 True
5 10 False
6 12 False
7 9 False
8 11 False
9 50 False ,
assists baronKills bountyLevel champLevel championName \
0 10 1 1 18 Chogath
1 10 1 2 18 Graves
2 3 0 1 18 Pantheon
3 12 0 0 18 Ezreal
4 13 0 2 18 Brand
5 8 0 0 18 Lucian
6 5 0 0 17 Viego
7 3 0 0 18 Veigar
8 4 0 0 18 Caitlyn
9 9 0 0 17 Xerath
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 5844 13966 5844
1 0 38926 0
2 3168 6161 3168
3 9145 18855 9145
4 6530 22164 6530
5 4682 9650 4682
6 2167 22069 2167
7 2224 9762 2224
8 398 2325 398
9 425 524 425
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 2 1 False False
1 4 1 3 False False
2 8 0 0 False False
3 4 4 0 False False
4 3 0 0 False False
5 6 0 0 False False
6 10 2 2 True False
7 5 3 0 False True
8 7 0 0 False False
9 10 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 True False False
4 False True False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 15065 TOP 0
1 False 15665 JUNGLE 1
2 False 11643 MIDDLE 1
3 False 17910 BOTTOM 2
4 False 14911 UTILITY 1
5 False 17994 TOP 1
6 False 14925 JUNGLE 0
7 False 14988 MIDDLE 0
8 False 11401 BOTTOM 0
9 False 10002 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 1 1 3083 3193 3047 6662 3075
1 1 1 6691 6676 3047 3179 3156
2 3 1 3071 6692 3111 3123 3133
3 2 1 3078 3074 3158 3042 6609
4 2 1 3158 3089 3860 6653 3116
5 1 5 3042 6672 3181 3006 3036
6 0 5 6672 3006 3153 3053 6333
7 0 5 3135 6656 3157 3089 3020
8 0 5 6672 3006 3094 3095 1036
9 0 5 3853 6655 3020 4628 3916
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 0 3340 1 4 2 1
1 3133 3364 3 8 3 1
2 1031 3340 1 5 2 1
3 3110 3363 2 12 8 3
4 3041 3364 3 9 3 2
5 3153 3340 1 5 3 2
6 0 3364 1 8 4 1
7 0 3363 2 7 4 2
8 1055 3340 1 3 2 2
9 1028 3364 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 804 144881 11639
1 611 12284 1609
2 442 2461 792
3 1451 20039 8228
4 1770 183721 31342
5 662 10036 1568
6 568 19313 2488
7 1297 231277 22126
8 493 4387 583
9 731 99079 18225
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 8723 40 0 1
1 8109 171 0 1
2 6774 8 0 1
3 11994 28 0 1
4 12440 20 0 0
5 9176 16 1 0
6 16422 160 1 0
7 8490 11 1 0
8 9082 0 1 0
9 12517 0 1 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 41386 1971 32380
1 223114 19483 17558
2 118888 10622 15448
3 177659 23629 11656
4 8895 382 5643
5 256538 32378 13577
6 171597 14355 27622
7 15311 594 15378
8 119691 5011 15809
9 2805 492 11617
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 SOLO 5 4 4 12
1 NONE 4 4 16 11
2 SOLO 2 14 4 4
3 CARRY 6 7 5 4
4 SUPPORT 4 14 6 4
5 SOLO 4 4 6 21
6 NONE 3 4 13 11
7 SOLO 4 4 1 12
8 CARRY 4 7 2 4
9 SUPPORT 7 21 1 4
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 294 ASooong False 100 TOP
1 223 sjiforgot False 100 JUNGLE
2 221 Fairy Lied False 100 MIDDLE
3 279 MingGou False 100 BOTTOM
4 338 JiangZeMin1926 False 100 UTILITY
5 67 xXxMommaLoverxXx False 200 TOP
6 160 Chemopig False 200 JUNGLE
7 354 Rotome False 200 MIDDLE
8 89 Dublaiar False 200 BOTTOM
9 193 MoistureCreature False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 67 2274 198698 15962
1 20 2274 256304 22045
2 15 2274 122033 12098
3 6 2274 204780 32617
4 19 2274 196852 32714
5 0 2274 284240 36235
6 15 2274 214270 19431
7 38 2274 247245 22765
8 10 2274 141452 6812
9 22 2274 101884 18718
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 46997 8093 212 1952
1 27907 12585 74 532
2 22844 4653 154 20
3 24868 5728 212 231
4 18249 1430 132 207
5 25973 3203 313 5
6 45681 15638 61 266
7 24598 3878 249 164
8 25004 7372 188 40
9 24312 2457 69 151
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 240 1 12431
1 161 1 20904
2 274 1 683
3 209 2 7081
4 105 1 4236
5 230 1 17664
6 428 1 23359
7 204 1 657
8 188 3 17374
9 301 1 0
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 2350 5892 3 3
1 951 2239 0 0
2 683 621 3 4
3 760 1218 1 6
4 989 165 4 6
5 2287 3220 3 3
6 2586 1636 1 2
7 45 729 0 1
8 1216 112 0 0
9 0 177 0 0
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 4 27 2 3
1 4 37 1 8
2 4 20 0 2
3 4 53 4 5
4 4 52 0 0
5 11 20 0 2
6 11 23 5 3
7 11 27 3 2
8 11 18 0 1
9 11 61 1 6
wardsPlaced win
0 13 True
1 4 True
2 10 True
3 13 True
4 30 True
5 13 False
6 3 False
7 12 False
8 10 False
9 26 False ,
assists baronKills bountyLevel champLevel championName \
0 11 0 4 18 Darius
1 14 0 1 15 LeeSin
2 8 0 3 16 Veigar
3 9 0 0 15 Caitlyn
4 22 0 0 16 Xerath
5 5 0 0 16 Illaoi
6 9 1 0 17 Talon
7 7 0 0 18 Kayle
8 10 0 0 14 Draven
9 18 0 0 16 Zilean
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 4697 15388 4697
1 2421 9590 2421
2 5196 6253 5196
3 4683 7109 4683
4 2440 5553 2440
5 2653 7523 2653
6 118 11380 118
7 5893 18468 5893
8 2698 8400 2698
9 1318 2266 1318
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 0 0 False True
1 7 1 1 False False
2 9 0 0 False False
3 5 0 1 False False
4 8 1 0 False False
5 14 0 0 False False
6 12 2 0 False False
7 4 1 1 False False
8 11 0 1 False False
9 7 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 18899 TOP 0
1 False 11964 JUNGLE 0
2 False 11881 MIDDLE 0
3 False 12019 BOTTOM 0
4 False 11173 UTILITY 2
5 False 10551 TOP 0
6 False 13288 JUNGLE 0
7 False 21195 MIDDLE 0
8 False 9533 BOTTOM 0
9 False 9297 UTILITY 0
inhibitorTakedowns inhibitorsLost item0 item1 item2 item3 item4 \
0 1 0 6631 4401 3047 3742 3075
1 2 0 3211 2031 3117 6692 3071
2 1 0 3070 6656 3158 3742 3083
3 1 0 6672 3006 6676 3094 3123
4 2 0 3853 6655 3020 4628 1058
5 0 2 3071 6632 3047 3075 0
6 0 2 6693 6694 3042 3158 3123
7 0 2 3089 3006 3115 4633 3165
8 0 2 1055 6673 3006 6676 1018
9 0 2 3853 3158 2065 3011 3067
item5 item6 killingSprees kills largestKillingSpree largestMultiKill \
0 3026 3340 4 19 8 2
1 3067 3340 1 8 4 1
2 0 3363 2 7 3 2
3 1055 3340 2 10 7 2
4 1058 3364 0 4 0 1
5 0 3340 0 3 0 1
6 3133 3364 2 10 3 1
7 3135 3340 2 19 16 3
8 1036 3340 0 1 0 1
9 3108 3340 0 2 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 606 7108 887
1 1288 30767 2964
2 622 124728 25558
3 738 902 218
4 599 109534 35699
5 330 1119 278
6 264 8365 0
7 923 195944 34661
8 327 0 0
9 514 32999 6519
magicDamageTaken neutralMinionsKilled nexusLost nexusTakedowns \
0 11333 12 0 0
1 11436 92 0 1
2 10660 0 0 1
3 4061 12 0 1
4 4943 4 0 0
5 14654 0 1 0
6 14117 136 1 0
7 15044 23 1 0
8 14864 28 1 0
9 9644 0 1 0
objectivesStolen objectivesStolenAssists participantId \
0 0 0 1
1 0 0 2
2 0 0 3
3 0 0 4
4 0 0 5
5 0 0 6
6 0 0 7
7 0 0 8
8 0 0 9
9 0 0 10
physicalDamageDealt physicalDamageDealtToChampions physicalDamageTaken \
0 169693 35230 31549
1 80801 19182 19442
2 8732 401 19108
3 109404 12780 10678
4 2612 434 12409
5 156581 23783 28709
6 151715 23658 23508
7 55363 5825 12188
8 105554 11145 20939
9 3873 652 14685
role summoner1Casts summoner1Id summoner2Casts summoner2Id \
0 NONE 5 4 8 6
1 NONE 5 4 16 11
2 SOLO 8 6 4 12
3 CARRY 3 7 2 4
4 SUPPORT 5 4 7 21
5 SOLO 4 4 2 12
6 NONE 17 11 6 4
7 SOLO 4 4 3 12
8 CARRY 6 7 5 4
9 SUPPORT 6 14 4 4
summonerLevel summonerName teamEarlySurrendered teamId teamPosition \
0 137 DracoSimia False 100 TOP
1 148 Cription False 100 JUNGLE
2 99 EvoScotty False 100 MIDDLE
3 88 Dublaiar False 100 BOTTOM
4 184 Coolgum15 False 100 UTILITY
5 69 TTV BrdrJmpr69 False 200 TOP
6 65 ricemx False 200 JUNGLE
7 157 SouljaBoiTellem False 200 MIDDLE
8 24 10inchpunish3r False 200 BOTTOM
9 226 Tomberry Deadly False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 50 2060 194009 43393
1 26 2060 119993 23081
2 68 2060 135956 25960
3 9 2060 117278 14098
4 34 2060 112146 36134
5 2 2060 164115 24061
6 10 2060 168608 25088
7 14 2060 257405 43167
8 13 2060 109743 11249
9 16 2060 41413 8084
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 44872 12261 194 529
1 31868 6184 31 328
2 30697 1509 158 183
3 15153 4074 129 39
4 18157 1203 75 178
5 48664 12620 165 23
6 38515 10963 25 249
7 28773 14363 279 322
8 37015 4996 109 122
9 24695 11360 23 143
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 274 1 17207
1 305 1 8424
2 352 1 2495
3 169 2 6971
4 206 1 0
5 504 1 6415
6 380 1 8527
7 135 5 6098
8 329 3 4189
9 181 3 4540
trueDamageDealtToChampions trueDamageTaken turretKills turretTakedowns \
0 7275 1989 3 3
1 934 989 2 3
2 0 929 2 5
3 1099 413 0 4
4 0 804 1 3
5 0 5300 1 2
6 1429 890 0 1
7 2680 1540 4 4
8 104 1211 0 3
9 912 366 0 3
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 5 15 0 0
1 5 33 2 1
2 5 9 0 0
3 5 20 0 2
4 5 53 1 3
5 8 10 0 1
6 8 13 4 0
7 8 18 1 0
8 8 8 0 2
9 8 66 1 1
wardsPlaced win
0 10 True
1 9 True
2 3 True
3 10 True
4 18 True
5 5 False
6 4 False
7 10 False
8 3 False
9 32 False ,
assists baronKills bountyLevel champLevel championName \
0 15 0 0 18 Yone
1 20 0 5 17 Zac
2 12 0 4 18 Pantheon
3 11 0 0 15 Jhin
4 17 0 7 16 Lux
5 7 1 0 17 DrMundo
6 7 1 0 16 Elise
7 8 0 0 17 Yasuo
8 7 0 0 16 Draven
9 7 0 0 13 Leona
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 8899 18560 8899
1 1370 9852 1370
2 3874 10898 3874
3 2696 8367 2696
4 2865 6553 2865
5 6103 16923 6103
6 159 17840 159
7 3706 14697 3706
8 5072 30824 5072
9 737 1300 737
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 4 0 0 False False
1 4 1 2 False False
2 6 2 0 False True
3 7 0 0 False False
4 6 1 0 False False
5 5 1 1 False False
6 7 5 3 False False
7 11 3 0 False False
8 5 0 0 False False
9 6 4 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False True False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 16686 TOP 0
1 False 13008 JUNGLE 0
2 False 15764 MIDDLE 0
3 False 10960 BOTTOM 0
4 False 13316 UTILITY 2
5 False 12267 TOP 0
6 False 12136 JUNGLE 0
7 False 16122 MIDDLE 0
8 False 18663 BOTTOM 1
9 False 8643 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 3035 3047 6673 3033 3031 3072 3340
1 1 3068 3143 3075 3047 3105 1029 3364
2 1 6692 3074 3047 3071 3053 0 3340
3 1 6671 3009 3036 3094 0 1055 3340
4 1 3853 6655 4643 3158 4629 3011 3364
5 2 3065 3068 3047 3075 1011 1028 3340
6 2 3157 3165 4636 1082 3020 4632 3364
7 2 3139 3143 6673 3031 3006 1053 3340
8 2 3033 6673 3009 3031 6676 3072 3363
9 2 3860 3190 3047 3075 3024 1028 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 5 4 1
1 1 6 5 3
2 3 13 5 2
3 1 3 2 1
4 1 7 7 2
5 1 2 2 1
6 1 6 2 1
7 1 7 5 2
8 1 11 11 3
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 1026 53590 6232
1 795 126788 13608
2 322 4068 1710
3 975 8367 542
4 364 104503 29200
5 946 71426 13620
6 662 102098 12583
7 590 13384 2046
8 1299 566 362
9 993 6396 2336
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 9056 48 0 0
1 9721 116 0 0
2 7148 20 0 0
3 4863 20 0 0
4 1895 16 0 0
5 14842 16 1 0
6 10240 119 1 0
7 11100 24 1 0
8 10485 48 1 0
9 7410 0 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 238815
1 0 2 18521
2 0 3 161596
3 0 4 106019
4 0 5 9616
5 0 6 71905
6 0 7 21227
7 0 8 223885
8 0 9 244422
9 0 10 3744
physicalDamageDealtToChampions physicalDamageTaken role \
0 16576 11840 SOLO
1 1070 23595 NONE
2 27652 18064 SOLO
3 10120 14525 CARRY
4 1467 8661 SUPPORT
5 3090 25135 SOLO
6 846 19549 NONE
7 23306 24092 SOLO
8 20932 12399 CARRY
9 1070 7983 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 4 12 263
1 5 4 21 11 183
2 6 4 9 14 352
3 6 7 4 4 87
4 8 14 5 4 193
5 1 12 3 4 52
6 4 4 15 11 345
7 5 4 7 14 354
8 4 4 6 7 277
9 2 4 3 14 167
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 StalwartHide False 100 TOP 21
1 Coolgum15 False 100 JUNGLE 47
2 Rotome False 100 MIDDLE 32
3 Dublaiar False 100 BOTTOM 19
4 lofr False 100 UTILITY 73
5 Bobby Tokoto False 200 TOP 14
6 iStayKrazy False 200 JUNGLE 24
7 Solar Divinity False 200 MIDDLE 25
8 Khano False 200 BOTTOM 12
9 Tiramiisu False 200 UTILITY 25
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 2338 296922 27326
1 2338 157934 16592
2 2338 170261 30982
3 2338 115007 10707
4 2338 117480 31520
5 2338 144812 16711
6 2338 131852 14575
7 2338 240517 26770
8 2338 248876 22885
9 2338 15245 3710
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 21324 2847 260 157
1 35365 39270 49 619
2 26807 8212 190 78
3 19824 5475 114 164
4 10701 597 66 404
5 42237 17174 197 250
6 31601 14736 28 103
7 37737 10897 249 175
8 24153 7034 201 93
9 16263 1530 24 35
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 134 1 4516
1 133 5 12624
2 186 1 4595
3 159 3 620
4 129 1 3360
5 191 1 1480
6 205 1 8527
7 402 1 3248
8 190 4 3887
9 122 1 5104
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 4516 428 3 5
1 1914 2048 1 5
2 1620 1594 1 5
3 44 435 0 5
4 853 144 2 5
5 0 2259 3 7
6 1145 1811 0 7
7 1418 2544 0 7
8 1589 1268 2 7
9 304 870 0 7
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 28 0 2 16 True
1 17 1 7 1 True
2 25 2 2 10 True
3 22 0 1 13 True
4 80 1 7 26 True
5 35 1 1 11 False
6 27 5 2 6 False
7 24 3 3 15 False
8 25 0 1 10 False
9 45 4 2 17 False ,
assists baronKills bountyLevel champLevel championName \
0 4 0 1 15 Nasus
1 5 0 1 13 Shaco
2 4 0 1 14 Ekko
3 3 0 14 14 Jhin
4 18 0 1 13 Morgana
5 1 0 0 14 Kayle
6 3 0 1 13 Rammus
7 3 0 0 13 Pantheon
8 2 0 0 12 Samira
9 2 0 0 12 Zyra
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 14430 21980 14430
1 3232 23060 3232
2 1281 3718 1281
3 7637 13081 7637
4 706 5101 706
5 4886 5961 4886
6 0 4393 0
7 3066 3066 3066
8 0 0 0
9 0 114 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 0 0 False False
1 3 0 2 False False
2 1 1 0 False True
3 0 0 1 True False
4 0 6 0 True False
5 5 0 0 False False
6 3 0 1 False False
7 8 1 0 False False
8 8 0 0 False False
9 7 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False True False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 10933 TOP 2
1 False 8824 JUNGLE 1
2 False 11700 MIDDLE 0
3 False 13824 BOTTOM 1
4 False 8720 UTILITY 0
5 False 9462 TOP 0
6 False 8941 JUNGLE 0
7 False 8387 MIDDLE 0
8 False 6141 BOTTOM 0
9 False 6173 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1054 6632 3158 3110 3211 0 3340
1 0 3006 2031 6691 3057 3133 1018 3340
2 0 3100 3152 3041 3020 1058 0 3340
3 0 1037 6671 3006 3508 3036 1038 3340
4 0 4643 3853 2031 3108 3117 3157 3364
5 4 3006 1056 3115 4633 3057 3113 3340
6 4 3047 6662 2031 3075 1011 1033 3340
7 4 6692 2033 3111 3071 0 0 3363
8 4 6673 3047 3134 0 0 1055 3340
9 4 3853 2420 3020 6653 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 2 0 1
1 0 2 0 1
2 1 12 11 3
3 1 14 14 2
4 0 1 0 1
5 1 3 3 1
6 0 2 0 1
7 1 2 2 1
8 0 0 0 0
9 0 2 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 665 7572 1831
1 751 34075 4027
2 1546 114383 21473
3 0 2561 2301
4 0 27318 11005
5 692 90606 7955
6 805 62634 3615
7 742 5606 475
8 436 4342 186
9 627 30535 8893
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 6373 24 0 0
1 5395 114 0 0
2 4000 12 0 0
3 3239 16 0 0
4 3714 4 0 0
5 6988 20 1 0
6 9364 87 1 0
7 10744 0 1 0
8 8830 0 1 0
9 7233 0 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 156800
1 0 2 73559
2 0 3 18326
3 0 4 144167
4 0 5 3924
5 0 6 41545
6 0 7 23481
7 0 8 92709
8 0 9 41626
9 0 10 3344
physicalDamageDealtToChampions physicalDamageTaken role \
0 7815 17962 SOLO
1 5096 13906 NONE
2 2589 10327 DUO
3 15708 4087 DUO
4 1198 4193 SUPPORT
5 4148 15194 SOLO
6 1215 10620 NONE
7 13293 11093 SOLO
8 1227 8068 CARRY
9 1048 5044 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 6 3 12 259
1 17 11 4 4 62
2 3 4 4 14 265
3 2 7 2 4 293
4 5 3 4 4 294
5 4 4 2 12 113
6 4 4 16 11 263
7 4 4 2 12 352
8 5 7 3 4 87
9 3 4 4 14 183
summonerName teamEarlySurrendered teamId teamPosition \
0 Your Turret False 100 TOP
1 UserNameBrand False 100 JUNGLE
2 REQUlS False 100 MIDDLE
3 Hero Doge False 100 BOTTOM
4 CynicalSynapsis False 100 UTILITY
5 Lougeemlin False 200 TOP
6 StalwartHide False 200 JUNGLE
7 Rotome False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 Coolgum15 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 10 1696 164373 9647
1 21 1696 125190 9769
2 24 1696 134798 24580
3 31 1696 149723 18159
4 56 1696 31242 12203
5 4 1696 143894 12103
6 27 1696 97867 5714
7 17 1696 98316 13768
8 0 1696 46976 1413
9 22 1696 36424 10526
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 24706 1955 179 682
1 19603 7996 12 775
2 14593 4518 164 230
3 7327 4485 169 80
4 8437 2500 9 107
5 22745 6117 183 200
6 20174 5822 47 948
7 22161 3871 155 36
8 17037 3299 102 1
9 12378 1207 23 160
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 121 1 0
1 78 1 17555
2 46 1 2088
3 0 2 2995
4 0 1 0
5 159 3 11741
6 99 5 11751
7 258 1 0
8 188 3 1008
9 129 1 2544
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 370 5 2
1 646 302 1 2
2 518 266 1 2
3 150 0 3 2
4 0 530 1 2
5 0 562 0 11
6 884 190 0 11
7 0 324 1 11
8 0 138 0 11
9 584 100 0 11
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 13 0 0 7 True
1 18 0 0 9 True
2 19 1 0 7 True
3 13 0 1 8 True
4 81 4 6 33 True
5 12 0 0 8 False
6 14 0 0 8 False
7 10 2 0 5 False
8 9 0 0 7 False
9 23 0 2 13 False ,
assists baronKills bountyLevel champLevel championName \
0 6 0 0 18 Fiora
1 10 0 0 16 XinZhao
2 7 0 3 17 Leblanc
3 9 0 0 15 Ashe
4 10 0 0 13 Thresh
5 9 0 0 18 DrMundo
6 11 0 3 17 Khazix
7 5 1 10 18 Kayle
8 12 0 1 16 Samira
9 15 0 1 16 Zyra
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 9144 9344 9144
1 2601 22042 2601
2 2259 4852 2259
3 499 6176 499
4 330 2111 330
5 7049 11217 7049
6 2189 20175 2189
7 8345 25854 8345
8 2007 4631 2007
9 1064 6897 1064
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 8 2 0 True False
1 7 1 0 False True
2 2 1 1 False False
3 4 1 1 False False
4 6 0 0 False False
5 4 0 0 False False
6 8 0 2 False False
7 3 1 1 False False
8 7 0 0 False False
9 5 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 14469 TOP 1
1 False 14021 JUNGLE 0
2 False 13101 MIDDLE 0
3 False 12587 BOTTOM 0
4 False 8566 UTILITY 0
5 False 15355 TOP 0
6 False 12547 JUNGLE 0
7 False 17783 MIDDLE 1
8 False 12128 BOTTOM 0
9 False 10237 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 3053 3074 3047 3026 6630 0 3340
1 1 3006 3100 6609 4636 3115 1033 3364
2 1 3157 6656 3135 3020 3165 0 3340
3 1 3035 6672 2055 3006 3031 3046 3363
4 1 3860 3190 3050 3117 1057 3066 3364
5 1 3065 6662 3075 3009 4401 3077 3340
6 1 6691 2031 3158 6676 3814 1033 3340
7 1 4633 3041 3006 3115 3089 0 3363
8 1 6673 3047 6676 3035 1018 1055 3340
9 1 3853 3157 1011 3020 6653 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 3 0 1
1 3 9 3 1
2 2 6 3 1
3 2 5 2 2
4 1 4 2 1
5 2 5 2 1
6 1 4 3 2
7 1 11 10 2
8 0 3 0 1
9 1 4 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 663 2409 989
1 598 78655 7647
2 909 123804 16850
3 921 2413 2213
4 711 11262 5514
5 634 81810 20858
6 660 9043 838
7 1260 209535 20775
8 657 11526 1423
9 514 64330 26417
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 22417 10 1 0
1 15564 165 1 0
2 11526 4 1 1
3 10428 20 1 0
4 12584 1 1 0
5 9512 4 0 0
6 6702 168 0 0
7 7475 41 0 0
8 6754 8 0 0
9 5553 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 201089
1 0 2 117942
2 0 3 18341
3 0 4 132241
4 0 5 4436
5 0 6 130019
6 0 7 159635
7 0 8 51695
8 0 9 97136
9 0 10 3942
physicalDamageDealtToChampions physicalDamageTaken role \
0 19691 18784 SOLO
1 14415 22647 NONE
2 1824 10318 SOLO
3 14846 6017 CARRY
4 502 5673 SUPPORT
5 8556 25348 SOLO
6 13383 24640 NONE
7 3723 15218 SOLO
8 5057 12205 CARRY
9 802 6759 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 3 12 241
1 5 4 16 11 236
2 4 4 4 14 225
3 5 7 4 4 84
4 3 4 3 14 92
5 6 6 4 12 263
6 20 11 5 4 271
7 4 4 4 12 352
8 6 7 4 4 87
9 5 4 6 14 183
summonerName teamEarlySurrendered teamId teamPosition \
0 ONNNIII CHAAANNN False 100 TOP
1 ChaosRepulsor False 100 JUNGLE
2 isobasso False 100 MIDDLE
3 DaFlamingPanda False 100 BOTTOM
4 The Spicy Noodle False 100 UTILITY
5 StalwartHide False 200 TOP
6 SugoiOverlord False 200 JUNGLE
7 Rotome False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 Coolgum15 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 11 2108 227089 31116
1 25 2108 210493 23560
2 25 2108 157880 19054
3 42 2108 147218 18405
4 29 2108 19912 6611
5 23 2108 222568 29414
6 6 2108 177968 15313
7 8 2108 302525 25280
8 0 2108 128983 6577
9 64 2108 82882 28200
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 42157 14957 284 209
1 39060 20259 37 562
2 22105 4458 231 55
3 16700 2926 218 648
4 18887 1627 40 91
5 43635 15746 264 1420
6 33093 14144 17 186
7 24275 15220 258 372
8 20446 4406 180 3
9 12973 1008 48 243
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 334 3 23589
1 236 1 13896
2 53 1 15735
3 112 4 12563
4 152 3 4213
5 153 1 10738
6 268 1 9289
7 83 5 41295
8 221 3 20320
9 166 1 14610
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 10435 955 3 8
1 1498 848 2 8
2 380 260 1 8
3 1345 254 0 8
4 594 630 0 8
5 0 8775 2 6
6 1091 1750 2 6
7 781 1581 3 6
8 96 1486 1 6
9 980 660 0 6
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 28 2 0 12 False
1 29 1 1 9 False
2 40 1 2 13 False
3 21 2 1 8 False
4 61 0 6 25 False
5 20 0 1 12 True
6 21 0 2 7 True
7 27 1 5 7 True
8 20 0 1 12 True
9 58 1 5 24 True ,
assists baronKills bountyLevel champLevel championName \
0 3 0 0 16 Volibear
1 4 0 0 13 Khazix
2 3 0 0 18 Kayle
3 5 0 2 15 Jhin
4 2 0 1 14 Xerath
5 5 1 1 18 Singed
6 11 1 0 17 Rumble
7 7 0 2 18 Galio
8 9 0 0 16 Ashe
9 5 0 1 15 Pyke
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 7036 11216 7036
1 172 9254 172
2 2903 4043 2903
3 1535 2924 1535
4 477 1490 477
5 736 17334 736
6 778 43382 778
7 893 6145 893
8 5110 11465 5110
9 544 2969 544
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 1 0 False False
1 5 1 2 False False
2 4 1 0 False False
3 4 0 0 False False
4 7 0 0 False False
5 2 0 0 False False
6 1 5 4 False False
7 0 0 0 False False
8 6 0 0 False True
9 5 2 0 True False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False True False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 12122 TOP 0
1 True 9681 JUNGLE 0
2 True 13416 MIDDLE 0
3 True 11600 BOTTOM 0
4 True 9630 UTILITY 0
5 True 13131 TOP 0
6 True 13330 JUNGLE 0
7 True 11809 MIDDLE 0
8 True 15285 BOTTOM 0
9 True 14342 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3108 6632 3158 3115 3110 3067 3340
1 0 2003 6691 3158 6676 1037 0 3340
2 0 3041 3006 0 3115 4633 3089 3363
3 0 6671 3009 6676 3094 3123 1055 3340
4 0 3853 2420 3020 4628 3108 6655 3340
5 0 3916 1082 3742 4637 6653 3111 3364
6 0 3020 3108 3157 4636 3067 4637 3364
7 0 3152 3157 3165 1011 3047 1052 3340
8 0 3153 6671 3006 3046 3085 1038 3340
9 0 6693 3142 3117 3179 6695 3857 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 1 0 1
1 1 2 2 1
2 0 3 0 1
3 1 3 2 1
4 0 5 0 1
5 1 5 4 1
6 0 1 0 1
7 1 2 2 1
8 2 7 2 1
9 3 12 6 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 515 95626 5245
1 1310 7587 152
2 943 130036 5361
3 528 3235 659
4 418 84594 21400
5 1100 147417 11404
6 1922 192168 14096
7 0 147697 16051
8 409 6023 4327
9 675 0 0
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 18039 24 0 0
1 6232 136 0 0
2 14214 26 0 0
3 5908 4 0 0
4 3281 1 0 0
5 5506 16 0 0
6 8093 188 0 0
7 2330 14 0 0
8 9618 8 0 0
9 11490 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 83577
1 0 2 103280
2 0 3 51056
3 0 4 112464
4 0 5 1286
5 0 6 9349
6 0 7 26702
7 0 8 6354
8 0 9 151243
9 0 10 39682
physicalDamageDealtToChampions physicalDamageTaken role \
0 6525 8495 DUO
1 6097 14285 NONE
2 2007 7276 DUO
3 7932 9521 CARRY
4 506 8907 SUPPORT
5 441 13233 SOLO
6 446 17489 NONE
7 54 7752 SOLO
8 13048 9860 CARRY
9 11736 12763 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 4 12 263
1 2 4 19 11 163
2 4 4 3 12 352
3 5 7 4 4 87
4 5 4 5 14 183
5 7 14 5 6 186
6 17 11 3 4 196
7 4 4 4 12 37
8 4 4 4 7 78
9 5 4 5 14 281
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 StalwartHide False 100 TOP 16
1 Dorito Taco False 100 JUNGLE 1
2 Rotome False 100 MIDDLE 5
3 Dublaiar False 100 BOTTOM 24
4 Coolgum15 False 100 UTILITY 25
5 Randolph LS False 200 TOP 16
6 Draw Me Closer False 200 JUNGLE 9
7 TALOOK False 200 MIDDLE 24
8 2002 hundayi False 200 BOTTOM 42
9 TR Ankara 06 False 200 UTILITY 29
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 2161 199642 11771
1 2161 123591 6627
2 2161 195181 7794
3 2161 118137 8591
4 2161 86719 22745
5 2161 157958 13038
6 2161 235951 15793
7 2161 158282 16105
8 2161 167270 17376
9 2161 50677 14676
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 28473 3802 229 500
1 21741 10154 21 167
2 22629 7063 270 246
3 15783 4080 180 106
4 12915 824 64 179
5 18850 2909 199 92
6 25614 11604 51 496
7 10227 1285 205 77
8 20012 2181 220 686
9 25076 7824 58 139
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 271 1 20438
1 201 1 12724
2 191 4 14087
3 101 2 2437
4 176 1 838
5 52 1 1192
6 54 1 17080
7 0 1 4230
8 201 2 10003
9 165 1 10995
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 1938 2 4
1 378 1224 0 4
2 424 1139 1 4
3 0 353 1 4
4 838 727 0 4
5 1192 110 0 4
6 1250 32 2 4
7 0 143 0 4
8 0 533 2 4
9 2940 821 0 4
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 17 1 1 12 False
1 22 1 3 9 False
2 12 1 1 8 False
3 18 0 6 10 False
4 42 0 5 26 False
5 29 0 7 5 True
6 43 5 5 13 True
7 21 0 1 11 True
8 22 0 1 12 True
9 76 4 9 37 True ,
assists baronKills bountyLevel champLevel championName \
0 10 0 0 18 Olaf
1 15 0 0 18 Zac
2 18 0 0 18 Zoe
3 14 0 1 18 Varus
4 20 0 1 18 Lux
5 24 0 0 18 Shen
6 20 2 5 18 LeeSin
7 12 0 4 18 Veigar
8 15 0 0 18 Samira
9 19 0 0 18 Morgana
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 6368 26357 6368
1 1113 19168 1113
2 1626 10904 1626
3 7365 12489 7365
4 1986 3836 1986
5 8389 14735 8389
6 3967 37884 3967
7 9057 56737 9057
8 206 19655 206
9 0 8467 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 11 1 0 False True
1 12 1 2 False False
2 6 1 0 False False
3 9 2 0 False False
4 6 1 0 False False
5 12 5 0 False False
6 9 0 5 False False
7 4 2 0 False False
8 9 0 2 False False
9 6 20 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 True False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 19616 TOP 1
1 False 18002 JUNGLE 0
2 False 19514 MIDDLE 0
3 False 22243 BOTTOM 0
4 False 15442 UTILITY 0
5 False 23032 TOP 0
6 False 21642 JUNGLE 1
7 False 25048 MIDDLE 2
8 False 18037 BOTTOM 0
9 False 15102 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 3 3065 3047 3143 6630 3053 3075 3364
1 3 3068 3143 3065 3001 3075 3111 3340
2 3 3157 6655 3089 3041 3158 3135 3340
3 3 6693 3158 3142 6694 3042 6676 3363
4 3 3853 6655 3157 3020 3102 3135 3363
5 1 3748 3065 3001 3111 6662 3075 3340
6 1 3111 3026 6692 3071 6333 3053 3340
7 1 3165 6656 3157 3742 3089 3135 3363
8 1 6673 3047 6676 3033 3026 3036 3340
9 1 3853 4005 3157 4643 4637 3117 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 9 5 1
1 0 4 0 1
2 2 8 4 1
3 2 11 5 1
4 3 8 3 1
5 1 8 3 1
6 2 12 5 2
7 3 14 4 2
8 1 4 2 2
9 1 6 2 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 899 3417 368
1 632 236591 21082
2 1035 242784 42220
3 774 16920 8024
4 885 101839 43453
5 561 93278 19369
6 629 79417 6825
7 1322 460988 50621
8 991 26073 2366
9 971 47770 19426
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 37125 27 1 0
1 29254 169 1 0
2 12119 16 1 0
3 14927 46 1 0
4 7589 17 1 0
5 34199 51 0 0
6 32603 143 0 1
7 18686 39 0 0
8 19536 60 0 0
9 14850 8 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 220248
1 0 2 28846
2 0 3 26024
3 0 4 338779
4 0 5 5585
5 0 6 216022
6 0 7 200285
7 0 8 25923
8 0 9 190671
9 0 10 4892
physicalDamageDealtToChampions physicalDamageTaken role \
0 19433 28675 SOLO
1 1178 50800 NONE
2 2110 14099 SOLO
3 66902 19405 CARRY
4 615 8710 SUPPORT
5 26576 34728 SOLO
6 34914 33367 NONE
7 1510 19802 SOLO
8 13456 26650 CARRY
9 1054 14344 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 10 6 3 12 103
1 8 4 24 11 164
2 8 12 12 4 141
3 9 4 13 7 169
4 8 14 7 4 101
5 13 14 9 12 174
6 5 4 32 11 73
7 8 4 5 12 352
8 8 7 4 4 87
9 7 4 6 14 62
summonerName teamEarlySurrendered teamId teamPosition \
0 Kiiwi False 100 TOP
1 xXgoon69Xx False 100 JUNGLE
2 ErnieTEETS False 100 MIDDLE
3 Alex Summers False 100 BOTTOM
4 TypeElectric False 100 UTILITY
5 FistedWontons False 200 TOP
6 ninjaguy2511 False 200 JUNGLE
7 Rotome False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 IOnlyPlayYuumiM8 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 26 3514 264023 28493
1 55 3514 290943 27259
2 58 3514 312855 50868
3 84 3514 384449 79957
4 96 3514 115243 49246
5 61 3514 346576 54601
6 18 3514 305432 45394
7 71 3514 498010 55915
8 3 3514 220396 17209
9 80 3514 55821 22671
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 69811 15071 216 728
1 92183 94613 86 696
2 27944 7931 262 236
3 36174 14053 306 788
4 17099 1302 38 316
5 79316 13824 271 1552
6 75889 32940 109 198
7 43179 15289 351 246
8 50605 15859 190 38
9 31970 8715 31 122
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 529 1 40357
1 451 5 25505
2 353 3 44046
3 404 4 28750
4 243 1 7817
5 547 1 37276
6 388 1 25730
7 225 1 11098
8 390 3 3651
9 284 1 3158
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 8691 4010 3 10
1 4998 12129 0 10
2 6536 1725 0 10
3 5030 1841 5 10
4 5177 798 0 10
5 8656 10388 4 9
6 3654 9919 2 9
7 3783 4689 4 9
8 1386 4418 0 9
9 2190 2774 0 9
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 47 1 8 14 False
1 79 1 6 23 False
2 38 1 3 18 False
3 93 2 6 21 False
4 101 1 7 55 False
5 67 5 5 26 True
6 30 0 3 14 True
7 31 3 5 11 True
8 39 0 4 22 True
9 132 18 10 71 True ,
assists baronKills bountyLevel champLevel championName \
0 1 0 1 14 Fiora
1 2 1 1 13 Khazix
2 6 0 1 16 Malzahar
3 5 0 2 14 Tristana
4 6 0 0 12 Thresh
5 2 0 0 13 Renekton
6 7 0 0 13 Lillia
7 5 0 0 15 Veigar
8 1 0 3 12 Ezreal
9 9 0 0 12 Yuumi
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 4752 9417 4752
1 1986 34335 1986
2 5910 9449 5910
3 9688 17602 9688
4 569 1302 569
5 1035 3268 1035
6 0 9435 0
7 782 4800 782
8 0 600 0
9 0 80 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 1 0 0 False True
1 5 5 3 False False
2 5 0 0 False False
3 1 1 0 False False
4 3 3 0 False False
5 8 1 0 False False
6 5 3 1 False False
7 2 1 0 False False
8 1 0 0 False False
9 3 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 10103 TOP 1
1 False 8558 JUNGLE 0
2 False 12757 MIDDLE 0
3 False 10267 BOTTOM 2
4 False 7023 UTILITY 0
5 False 6663 TOP 0
6 False 8615 JUNGLE 0
7 False 11247 MIDDLE 0
8 False 8964 BOTTOM 0
9 False 5304 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3076 3047 6673 3133 1053 1031 3340
1 0 6691 3134 1036 1028 0 3158 3364
2 0 3041 6655 3040 1058 3020 1058 3340
3 0 6672 1055 3006 3095 1037 2055 3340
4 0 3068 1057 3857 1028 3111 0 3364
5 3 1055 6631 2055 1053 3047 1042 3340
6 3 3020 2031 6653 3191 3108 2055 3364
7 3 3020 6656 2421 3089 2033 3108 3363
8 3 6632 3158 3004 1036 0 1055 3340
9 3 3851 6617 3114 1052 1052 0 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 1 8 7 2
1 0 2 0 1
2 1 5 3 1
3 1 3 2 1
4 0 1 0 1
5 0 0 0 0
6 1 3 2 1
7 1 8 8 1
8 1 4 3 2
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 1393 1448 603
1 493 5926 498
2 470 152956 23066
3 1267 22232 2109
4 758 9870 4796
5 569 2370 410
6 474 97643 11635
7 1529 128494 16310
8 1180 4857 1755
9 955 8413 3914
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 6678 18 0 0
1 8940 115 0 1
2 6417 8 0 0
3 5105 0 0 0
4 8995 4 0 0
5 5710 12 1 0
6 10583 100 1 0
7 8189 4 1 0
8 7340 4 1 0
9 1142 0 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 70549
1 0 2 94542
2 0 3 11890
3 1 4 85200
4 0 5 3669
5 0 6 78300
6 0 7 10692
7 0 8 14116
8 0 9 69846
9 0 10 4
physicalDamageDealtToChampions physicalDamageTaken role \
0 6855 8154 NONE
1 7438 12041 NONE
2 0 2745 SOLO
3 16494 3554 CARRY
4 442 4566 SUPPORT
5 3708 12556 DUO
6 658 15841 NONE
7 728 8178 DUO
8 4753 11735 CARRY
9 0 3596 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 14 2 4 149
1 16 11 4 4 205
2 4 12 4 4 343
3 3 7 3 4 131
4 3 4 2 14 213
5 3 4 3 12 289
6 4 4 15 11 414
7 4 4 1 12 352
8 4 7 2 4 87
9 3 14 1 3 98
summonerName teamEarlySurrendered teamId teamPosition \
0 Karñia False 100 TOP
1 Ley Dud False 100 JUNGLE
2 22Tango False 100 MIDDLE
3 LebronIsLove False 100 BOTTOM
4 BagfootBandit False 100 UTILITY
5 CaptainMetal False 200 TOP
6 Audileminialex1 False 200 JUNGLE
7 Rotome False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 BabygirlMoon False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 8 1599 99365 9628
1 2 1599 117414 8058
2 45 1599 176161 23066
3 4 1599 116262 20679
4 21 1599 20377 5473
5 7 1599 91276 4118
6 19 1599 144499 16410
7 31 1599 147960 17038
8 0 1599 75639 6509
9 7 1599 8757 4254
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 16329 7025 123 132
1 21511 10474 16 76
2 9706 24 212 310
3 9242 4209 172 11
4 14865 917 32 70
5 20705 2889 132 52
6 27256 7307 55 363
7 16869 2523 193 136
8 19710 3527 139 39
9 4934 11385 2 23
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 42 5 27368
1 137 1 16946
2 178 1 11315
3 39 2 8829
4 85 4 6837
5 191 1 10605
6 159 1 36163
7 49 1 5349
8 33 2 936
9 96 5 340
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 2169 1496 1 0
1 121 530 4 0
2 0 543 2 0
3 2075 582 4 0
4 234 1304 0 0
5 0 2437 0 11
6 4117 830 0 11
7 0 501 0 11
8 0 634 0 11
9 340 196 0 11
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 16 0 1 8 True
1 27 5 2 7 True
2 13 0 1 8 True
3 12 2 3 4 True
4 50 3 3 24 True
5 16 3 0 7 False
6 21 5 5 4 False
7 8 1 0 7 False
8 11 0 0 9 False
9 15 0 1 9 False ,
assists baronKills bountyLevel champLevel championName \
0 3 0 1 17 Gangplank
1 7 1 2 16 Vi
2 8 0 6 17 Ahri
3 9 0 1 16 Ezreal
4 13 1 0 14 Senna
5 4 0 0 13 Khazix
6 2 0 0 16 Fiora
7 4 0 0 15 Talon
8 4 0 0 14 Jhin
9 5 0 0 13 Lux
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 6806 10402 6806
1 1826 24362 1826
2 3998 11322 3998
3 4851 26202 4851
4 4147 9559 4147
5 0 9252 0
6 4097 5870 4097
7 0 909 0
8 0 2345 0
9 0 674 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 9 1 0 False False
1 3 6 1 False False
2 2 1 2 False False
3 3 0 0 False False
4 4 5 1 False False
5 8 2 1 False False
6 7 0 0 False True
7 8 5 0 False False
8 4 0 0 False False
9 8 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False True False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 12601 TOP 1
1 False 12914 JUNGLE 1
2 False 15980 MIDDLE 0
3 False 12661 BOTTOM 1
4 False 9938 UTILITY 0
5 False 8935 JUNGLE 0
6 False 13683 TOP 0
7 False 10440 MIDDLE 0
8 False 8608 BOTTOM 0
9 False 6786 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3078 3047 2033 3053 6609 2055 3363
1 0 0 3078 3047 3071 6333 0 3364
2 0 1056 6656 3157 4629 3089 3158 3340
3 0 1055 6632 3110 3042 3158 1053 3363
4 0 3864 6632 3004 0 3009 0 3364
5 3 3158 2031 6691 6695 3133 1036 3364
6 3 6609 3047 0 3508 6673 3074 3340
7 3 3074 6630 3133 3067 3111 0 3364
8 3 6671 3009 3134 1018 0 1055 3340
9 3 3853 6655 3020 3145 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 3 2 1
1 2 8 5 2
2 3 17 9 1
3 1 6 4 1
4 0 1 0 1
5 0 3 0 1
6 3 11 6 2
7 0 3 0 1
8 1 3 2 1
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 306 5823 3093
1 796 7354 0
2 1287 88332 26281
3 761 17923 6358
4 789 0 0
5 553 8788 642
6 912 2168 938
7 385 0 0
8 1105 11557 656
9 491 26891 15769
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 1021 19 0 0
1 4246 133 0 0
2 3779 16 0 0
3 7362 8 0 0
4 4436 12 0 0
5 8985 106 1 0
6 8535 16 1 0
7 7632 4 1 0
8 6964 4 1 0
9 6266 0 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 162088
1 0 2 136550
2 0 3 15518
3 0 4 128903
4 0 5 29848
5 0 6 100631
6 0 7 129824
7 0 8 126463
8 0 9 104491
9 0 10 1690
physicalDamageDealtToChampions physicalDamageTaken role \
0 12656 20078 SOLO
1 12542 16989 NONE
2 1290 13441 DUO
3 18669 11346 DUO
4 5821 8229 SUPPORT
5 6895 19939 NONE
6 17884 25177 SOLO
7 10775 17764 SOLO
8 6697 9077 CARRY
9 424 8294 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 5 4 4 12 235
1 20 11 4 4 148
2 6 14 4 4 272
3 3 4 4 7 158
4 7 7 4 4 60
5 4 4 17 11 352
6 5 4 8 14 24
7 6 14 5 4 237
8 3 7 3 4 87
9 4 4 2 14 134
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 iHaxx False 100 TOP 7
1 ToastyTaco1 False 100 JUNGLE 23
2 Pan The Panda False 100 MIDDLE 34
3 Miggles False 100 BOTTOM 1
4 ZeigElric False 100 UTILITY 30
5 Rotome False 200 JUNGLE 4
6 RyeBreadPitt False 200 TOP 6
7 Libra In Orbit False 200 MIDDLE 3
8 Dublaiar False 200 BOTTOM 23
9 Alece False 200 UTILITY 57
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1933 187675 18289
1 1933 158685 13046
2 1933 146011 33718
3 1933 149730 25288
4 1933 29848 5821
5 1933 116756 8376
6 1933 137654 24484
7 1933 127938 12251
8 1933 133600 7405
9 1933 28794 16406
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 24016 5967 193 308
1 23084 8063 35 339
2 18573 4752 193 88
3 20182 5399 189 44
4 13653 9875 14 83
5 32007 13067 30 89
6 35743 14167 165 101
7 29009 5671 191 208
8 16296 4312 129 181
9 15031 858 14 197
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 241 1 19763
1 88 1 14780
2 91 1 42161
3 81 2 2904
4 134 5 0
5 264 1 7338
6 268 2 5661
7 218 1 1475
8 141 3 17551
9 192 1 212
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 2539 2915 2 1
1 504 1848 0 1
2 6145 1352 2 1
3 260 1473 3 1
4 0 987 3 1
5 838 3082 0 11
6 5661 2030 1 11
7 1475 3611 0 11
8 51 254 0 11
9 212 469 0 11
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 29 3 1 11 True
1 33 6 4 9 True
2 29 3 3 11 True
3 12 0 2 6 True
4 55 5 3 24 True
5 22 2 3 6 False
6 20 0 4 10 False
7 22 5 3 9 False
8 8 0 0 7 False
9 29 0 1 17 False ,
assists baronKills bountyLevel champLevel championName \
0 2 0 0 13 Teemo
1 1 0 0 13 DrMundo
2 4 0 0 14 Kayle
3 2 0 0 12 Jhin
4 7 0 0 11 Seraphine
5 6 1 2 16 Akali
6 4 0 0 14 MasterYi
7 7 0 1 13 Leona
8 1 0 9 16 Kayn
9 9 0 1 14 Lucian
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3639 3639 3639
1 0 7075 0
2 577 4446 577
3 0 426 0
4 0 456 0
5 3263 10015 3263
6 6154 27479 6154
7 903 2051 903
8 2780 26677 2780
9 7060 17518 7060
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 10 0 0 False False
1 5 0 1 False True
2 4 2 0 True False
3 2 0 0 False False
4 6 0 0 False False
5 3 0 0 False False
6 5 0 0 False False
7 0 0 0 False False
8 0 2 1 False False
9 1 1 1 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 7944 TOP 0
1 False 10034 JUNGLE 0
2 False 8449 MIDDLE 0
3 False 6866 BOTTOM 0
4 False 5786 UTILITY 0
5 False 13139 TOP 2
6 False 10159 MIDDLE 0
7 False 7327 UTILITY 0
8 False 13282 JUNGLE 0
9 False 11587 BOTTOM 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 2 3068 3115 3020 0 0 0 3340
1 2 6662 3801 3047 3075 1011 3067 3364
2 2 1054 3006 1082 3115 4633 0 3363
3 2 6671 3009 3035 2031 0 1055 3363
4 2 3853 4005 3158 3916 1052 0 3364
5 0 3157 4637 1054 1082 4633 3020 3340
6 0 6672 2031 3006 3153 3123 3086 3340
7 0 3857 3190 3158 1011 3076 0 3364
8 0 6693 6676 3158 6695 3133 3067 3364
9 0 6672 1036 3153 1055 3006 3070 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 0 1 0 1
1 1 6 3 1
2 0 1 0 1
3 0 1 0 1
4 0 0 0 0
5 4 12 5 2
6 1 3 2 2
7 0 1 0 1
8 1 9 9 1
9 0 2 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 478 58612 9033
1 922 64510 9997
2 974 51459 6672
3 883 2126 0
4 516 21540 5975
5 896 92294 23878
6 561 183 0
7 0 7346 1808
8 0 13646 3398
9 1448 4382 857
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 7667 8 1 0
1 10932 121 1 0
2 6032 4 1 0
3 3703 1 1 0
4 3418 0 1 0
5 10856 4 0 0
6 8350 8 0 0
7 4138 0 0 0
8 7532 203 0 0
9 3907 5 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 24766
1 0 2 42105
2 0 3 30187
3 0 4 58428
4 0 5 2336
5 0 6 12765
6 0 7 97259
7 0 8 9991
8 0 9 198526
9 0 10 117801
physicalDamageDealtToChampions physicalDamageTaken role \
0 1860 13067 NONE
1 4494 19650 NONE
2 2761 10762 SOLO
3 5105 5343 CARRY
4 697 6330 SUPPORT
5 1139 11228 SOLO
6 7932 9588 SOLO
7 1433 5962 SUPPORT
8 18032 17367 NONE
9 9580 8524 CARRY
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 1 4 0 12 25
1 4 4 16 11 24
2 3 4 2 12 352
3 3 7 2 4 87
4 5 4 4 14 134
5 5 14 3 12 185
6 3 4 2 14 22
7 2 4 2 3 49
8 2 4 18 11 39
9 2 4 3 7 23
summonerName teamEarlySurrendered teamId teamPosition \
0 TheVoidNeedsFood False 100 TOP
1 RyeBreadPitt False 100 JUNGLE
2 Rotome False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 Alece False 100 UTILITY
5 mugggetsu False 200 TOP
6 EladioCarrionn False 200 MIDDLE
7 IsJustPoppy False 200 UTILITY
8 Murdererr False 200 JUNGLE
9 BenjaDAs False 200 BOTTOM
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 16 1662 94948 10894
1 12 1662 116646 15536
2 6 1662 83979 9434
3 15 1662 60555 5105
4 18 1662 24588 7385
5 1 1662 112033 27274
6 1 1662 118322 9620
7 18 1662 22088 3241
8 7 1662 229993 21990
9 0 1662 131093 10917
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 22388 223 142 270
1 32366 14581 14 952
2 17413 3941 183 170
3 9212 2725 122 62
4 10513 293 18 145
5 23158 6641 157 53
6 18192 3995 150 22
7 10101 2233 43 29
8 24899 16157 21 379
9 12859 3259 214 2
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 355 1 11570
1 192 1 10030
2 108 5 2331
3 68 3 0
4 169 3 712
5 125 1 6973
6 176 1 20880
7 0 4 4750
8 0 1 17820
9 40 3 8908
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 1652 1 10
1 1044 1782 0 10
2 0 617 0 10
3 0 166 0 10
4 712 764 0 10
5 2256 1074 1 1
6 1688 254 3 1
7 0 0 0 1
8 559 0 2 1
9 478 428 4 1
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 12 0 1 7 False
1 15 0 2 0 False
2 18 2 1 9 False
3 8 0 0 6 False
4 25 0 0 16 False
5 13 0 0 8 True
6 4 0 0 3 True
7 39 0 5 16 True
8 27 2 4 6 True
9 19 1 0 10 True ,
assists baronKills bountyLevel champLevel championName \
0 2 0 9 13 Sylas
1 7 0 3 13 Kayn
2 5 0 2 13 Ziggs
3 2 0 0 12 Vayne
4 14 0 1 10 Nami
5 1 0 0 10 Rumble
6 1 0 0 11 Darius
7 4 0 0 11 Ryze
8 2 0 1 11 Ezreal
9 4 0 0 10 Yuumi
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 0 3017 0
1 0 17502 0
2 30122 32639 30122
3 3259 3259 3259
4 559 957 559
5 0 7499 0
6 635 1519 635
7 0 3516 0
8 0 1069 0
9 0 0 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 0 4 0 False False
1 3 1 1 False False
2 0 1 0 False False
3 5 0 0 True False
4 2 1 0 False True
5 7 2 2 False False
6 5 1 0 False False
7 6 4 0 False False
8 6 0 0 False False
9 3 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False True False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 8627 TOP 0
1 True 8472 JUNGLE 0
2 True 10027 MIDDLE 0
3 True 9620 BOTTOM 0
4 True 6547 UTILITY 0
5 True 6595 JUNGLE 0
6 True 6366 TOP 0
7 True 6117 MIDDLE 0
8 True 5796 BOTTOM 0
9 True 5355 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3158 6656 0 3157 0 0 3340
1 0 3158 2031 3134 1036 6693 1028 3364
2 0 1056 6655 3020 3040 0 0 3340
3 0 1055 6672 2055 3046 3006 1053 3363
4 0 3853 4005 3158 2055 1052 3114 3364
5 0 4633 2031 3108 3020 2055 1052 3364
6 0 1055 6631 3111 3067 1036 2055 3340
7 0 3070 6656 3111 0 0 2055 3364
8 0 3057 3158 3133 3067 3044 1055 3340
9 0 3853 6617 3114 1052 1052 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 9 9 2
1 1 4 3 1
2 1 2 2 1
3 3 10 4 2
4 0 2 0 1
5 0 3 0 1
6 0 1 0 1
7 0 1 0 1
8 0 1 0 1
9 1 2 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 0 49924 15820
1 457 6935 1335
2 0 105558 11103
3 580 430 269
4 862 7089 4505
5 644 50195 5960
6 333 0 0
7 525 58889 6555
8 246 3572 1480
9 574 9130 5794
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 3369 4 0 0
1 6552 128 0 0
2 2567 4 0 0
3 3960 0 0 0
4 4338 0 0 0
5 10638 88 0 0
6 11076 9 0 0
7 5920 0 0 0
8 3208 0 0 0
9 3967 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 10990
1 0 2 110690
2 0 3 9821
3 0 4 54608
4 0 5 3321
5 0 6 12778
6 0 7 73364
7 0 8 7156
8 0 9 34381
9 0 10 1627
physicalDamageDealtToChampions physicalDamageTaken role \
0 67 9364 SOLO
1 9432 12623 NONE
2 259 2227 SOLO
3 9196 8134 CARRY
4 712 3346 SUPPORT
5 273 11188 NONE
6 7928 4953 SOLO
7 689 8406 SOLO
8 2776 5569 CARRY
9 1226 2893 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 12 3 4 229
1 14 11 3 4 281
2 1 21 3 4 237
3 2 4 2 7 193
4 4 14 3 4 173
5 2 4 11 11 352
6 3 4 4 14 263
7 2 12 4 4 239
8 2 7 1 4 87
9 3 4 4 14 134
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 Q killed you False 100 TOP 22
1 BennnyyyG False 100 JUNGLE 5
2 Albaricoque False 100 MIDDLE 9
3 BobDoodlePants False 100 BOTTOM 7
4 jerryfoot82 False 100 UTILITY 16
5 Rotome False 200 JUNGLE 7
6 StalwartHide False 200 TOP 16
7 BF109G False 200 MIDDLE 22
8 Dublaiar False 200 BOTTOM 0
9 Alece False 200 UTILITY 10
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1287 66993 16773
1 1287 132206 11243
2 1287 146778 11363
3 1287 63638 12685
4 1287 10820 5627
5 1287 70581 6805
6 1287 75300 9864
7 1287 66089 7289
8 1287 40448 4256
9 1287 15393 7606
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 14365 3836 121 244
1 19746 8714 21 277
2 4795 0 164 182
3 12418 2979 133 42
4 8299 6472 6 82
5 22599 6076 15 273
6 16955 2463 127 104
7 15648 805 120 52
8 9838 886 88 0
9 7769 6240 12 28
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 0 1 6078
1 61 1 14580
2 0 0 31398
3 142 2 8599
4 51 5 410
5 174 1 7607
6 91 1 1936
7 185 1 44
8 109 2 2495
9 43 5 4636
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 885 1631 0 0
1 474 570 0 0
2 0 0 6 0
3 3219 322 1 0
4 410 614 0 0
5 572 772 0 7
6 1936 926 0 7
7 44 1321 0 7
8 0 1060 0 7
9 586 908 0 7
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 17 4 1 10 True
1 20 1 4 2 True
2 18 1 0 7 True
3 10 1 0 6 True
4 33 2 3 14 True
5 9 3 2 4 False
6 13 2 1 8 False
7 17 6 1 8 False
8 6 0 0 4 False
9 14 0 3 4 False ,
assists baronKills bountyLevel champLevel championName \
0 15 0 1 18 Malphite
1 5 0 4 18 MasterYi
2 17 0 1 16 Sett
3 17 0 1 16 Jhin
4 20 0 4 16 Nami
5 5 0 0 18 Aatrox
6 13 1 0 16 LeeSin
7 13 0 0 17 Sylas
8 9 0 0 16 Ezreal
9 18 0 0 15 Rakan
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3557 4967 3557
1 107 19146 107
2 3934 6945 3934
3 4400 11364 4400
4 1103 2075 1103
5 3194 8487 3194
6 368 12486 368
7 3887 11441 3887
8 1247 16442 1247
9 1678 2497 1678
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 4 0 0 False False
1 10 1 1 False False
2 13 0 2 False True
3 5 0 0 False False
4 3 0 0 False False
5 10 0 0 False False
6 9 2 2 False False
7 10 2 0 False False
8 9 0 1 False False
9 8 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False True False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 13050 TOP 0
1 True 20523 JUNGLE 0
2 True 13032 MIDDLE 0
3 True 12062 BOTTOM 1
4 True 9947 UTILITY 0
5 True 13544 TOP 0
6 True 12465 JUNGLE 0
7 True 15103 MIDDLE 1
8 True 12683 BOTTOM 0
9 True 9681 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 1057 3047 3068 3075 3110 3066 3340
1 1 6691 6675 6676 3006 3508 3031 3364
2 1 3047 6631 3153 3053 3077 0 3340
3 1 6671 3009 3036 6676 2015 1055 3340
4 1 3853 3158 4005 3011 1004 0 3364
5 1 6630 3074 3071 1028 3067 3158 3363
6 1 6630 3071 6333 3047 3076 0 3340
7 1 6656 3157 4629 3089 0 3020 3363
8 1 3158 6632 3042 6694 3077 0 3340
9 1 3860 2065 3050 3158 3107 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 5 3 1
1 6 25 7 4
2 1 8 2 1
3 1 3 2 2
4 1 5 4 1
5 1 5 2 1
6 2 8 4 2
7 4 14 6 2
8 1 5 3 1
9 1 3 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 982 110976 30848
1 612 4489 118
2 296 1020 440
3 1034 5918 2172
4 1198 27232 18184
5 379 0 0
6 886 32323 4354
7 590 103686 36288
8 1014 27576 11626
9 1020 22350 11631
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 8897 8 0 0
1 17676 132 0 0
2 18814 18 0 0
3 11153 4 0 0
4 7653 0 0 0
5 22773 19 0 0
6 9097 111 0 0
7 8775 4 0 0
8 5695 22 0 0
9 7260 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 57476
1 0 2 208839
2 0 3 120953
3 0 4 144343
4 0 5 1501
5 0 6 193563
6 0 7 88828
7 0 8 10619
8 0 9 136355
9 0 10 12408
physicalDamageDealtToChampions physicalDamageTaken role \
0 5998 21938 SOLO
1 41886 24842 NONE
2 23975 24490 SOLO
3 15570 11240 CARRY
4 455 7955 SUPPORT
5 21986 27212 SOLO
6 14442 26109 NONE
7 1154 29831 SOLO
8 15518 20617 CARRY
9 1178 17210 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 6 4 7 12 294
1 5 4 18 11 24
2 6 4 5 12 53
3 4 7 2 4 86
4 3 4 1 3 36
5 5 4 2 12 374
6 18 11 4 4 259
7 2 12 6 4 71
8 6 7 5 4 246
9 6 14 5 4 108
summonerName teamEarlySurrendered teamId teamPosition \
0 XzavierXD27 False 100 TOP
1 RyeBreadPitt False 100 JUNGLE
2 re1iccc False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 laineybon False 100 UTILITY
5 Anarchys Change False 200 TOP
6 V00Ð00 False 200 JUNGLE
7 Manozz False 200 MIDDLE
8 Aruzain False 200 BOTTOM
9 Chain Daddy False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 55 2301 171627 36846
1 14 2301 243864 55004
2 47 2301 133632 28647
3 32 2301 152112 17890
4 57 2301 28733 18639
5 41 2301 193997 22070
6 29 2301 130290 19536
7 39 2301 119797 38191
8 3 2301 169972 27144
9 54 2301 41076 14028
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 31438 4601 191 1264
1 43089 15670 63 240
2 44447 3627 147 321
3 22746 6388 186 104
4 15730 15688 13 250
5 51582 14473 190 311
6 39794 9691 23 423
7 43030 13770 115 314
8 30196 4721 193 56
9 27540 4600 39 131
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 159 1 3175
1 416 1 30535
2 444 1 11659
3 194 2 1851
4 126 5 0
5 361 1 434
6 346 1 9138
7 296 1 5491
8 334 3 6040
9 277 6 6317
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 603 1 5
1 12998 570 0 5
2 4231 1142 1 5
3 147 352 2 5
4 0 122 2 5
5 84 1596 3 7
6 740 4587 0 7
7 748 4423 1 7
8 0 3883 0 7
9 1218 3068 1 7
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 24 0 2 13 True
1 20 1 1 1 True
2 17 0 2 9 True
3 14 0 3 7 True
4 40 0 5 17 True
5 17 0 0 9 False
6 22 2 0 12 False
7 20 2 0 12 False
8 21 0 2 12 False
9 53 0 3 28 False ,
assists baronKills bountyLevel champLevel championName \
0 1 0 0 16 Irelia
1 2 0 0 14 Kayn
2 0 0 0 13 Heimerdinger
3 1 0 0 13 Jhin
4 2 0 0 11 Nami
5 3 0 9 17 Renekton
6 3 0 2 16 Viego
7 4 0 1 17 Xerath
8 0 0 1 13 Tristana
9 7 0 0 12 Lux
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 5801 7529 5801
1 0 25063 0
2 0 0 0
3 1003 1331 1003
4 474 474 474
5 3355 5019 3355
6 0 24257 0
7 2898 5524 2898
8 4483 12729 4483
9 1074 5756 1074
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 8 1 0 False True
1 5 1 0 False False
2 5 0 0 False False
3 1 0 0 False False
4 5 0 0 False False
5 3 1 0 False False
6 3 0 5 False False
7 3 0 0 False False
8 1 0 0 False False
9 6 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False True False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 13800 TOP 0
1 True 9209 JUNGLE 0
2 True 7911 MIDDLE 0
3 True 9446 BOTTOM 0
4 True 5939 UTILITY 0
5 True 14787 TOP 1
6 True 10833 JUNGLE 0
7 True 12093 MIDDLE 0
8 True 9078 BOTTOM 0
9 True 7156 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 3153 2033 3042 3078 3158 1057 3340
1 1 6691 2031 3042 3117 3134 0 3340
2 1 1056 6655 3020 1058 1052 1052 3340
3 1 6671 3009 6676 1036 1036 1055 3340
4 1 3853 4005 3158 3916 4642 0 3340
5 0 6630 3071 3047 6333 3076 0 3340
6 0 2031 3153 3006 6673 3134 0 3364
7 0 2420 6655 1082 4628 3191 3020 3340
8 0 3006 6672 3046 1042 0 1055 3340
9 0 3853 3158 3108 4005 1058 2055 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 7 3 1
1 0 3 0 1
2 1 3 2 1
3 1 2 2 1
4 0 0 0 0
5 1 10 9 3
6 2 5 2 2
7 2 6 2 1
8 1 3 2 1
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 689 27234 7319
1 682 8106 1288
2 741 76605 8973
3 1454 2035 1408
4 1175 9864 4275
5 659 6070 1511
6 849 14757 1281
7 1205 157423 21423
8 1495 19233 575
9 573 20764 5739
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 4404 4 0 0
1 8137 116 0 0
2 11061 0 0 0
3 3362 0 0 0
4 4351 0 0 0
5 8972 26 0 0
6 6821 171 0 0
7 5479 0 0 0
8 1315 4 0 0
9 3612 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 166205
1 0 2 113022
2 0 3 4397
3 0 4 112320
4 0 5 1711
5 0 6 174103
6 0 7 125101
7 0 8 12296
8 0 9 71202
9 0 10 6891
physicalDamageDealtToChampions physicalDamageTaken role \
0 16583 22558 SOLO
1 9005 14637 NONE
2 190 3794 SOLO
3 5936 7093 CARRY
4 388 4737 SUPPORT
5 16294 18286 SOLO
6 8782 20602 NONE
7 167 7581 SOLO
8 3860 6331 CARRY
9 1470 8753 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 6 4 3 12 24
1 16 11 3 4 254
2 4 4 3 14 134
3 4 7 3 4 86
4 3 4 0 3 36
5 5 4 2 12 241
6 18 11 3 4 149
7 6 21 5 4 139
8 2 4 1 3 61
9 5 14 4 4 29
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 RyeBreadPitt False 100 TOP 20
1 R31nz False 100 JUNGLE 9
2 Alece False 100 MIDDLE 9
3 Dublaiar False 100 BOTTOM 23
4 laineybon False 100 UTILITY 23
5 Camggez False 200 TOP 17
6 Holdeeni False 200 JUNGLE 13
7 Pykel Jackson False 200 MIDDLE 14
8 bisnacksual False 200 BOTTOM 1
9 Bugsnax False 200 UTILITY 43
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1837 196798 23903
1 1837 143661 11227
2 1837 81631 9792
3 1837 114441 7431
4 1837 11575 4664
5 1837 188224 17805
6 1837 151827 11029
7 1837 169720 21590
8 1837 103100 4534
9 1837 29772 7629
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 27786 5180 247 125
1 23037 10135 18 209
2 15029 10 125 193
3 10492 3626 196 65
4 9278 3047 5 144
5 27833 11925 211 82
6 27844 13944 4 203
7 13730 2321 221 187
8 7693 1698 124 10
9 12621 2276 16 190
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 245 1 3359
1 178 1 22532
2 191 1 628
3 37 2 86
4 127 4 0
5 74 1 8050
6 97 1 11968
7 143 1 0
8 35 1 12665
9 134 4 2116
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 824 2 6
1 933 262 1 6
2 628 174 0 6
3 86 36 0 6
4 0 189 0 6
5 0 574 2 3
6 966 420 0 3
7 0 669 1 3
8 99 46 2 3
9 420 255 1 3
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 19 1 1 10 False
1 18 1 0 8 False
2 6 0 0 4 False
3 12 0 0 8 False
4 23 0 1 13 False
5 18 1 2 6 True
6 11 1 2 1 True
7 11 0 0 8 True
8 16 0 1 9 True
9 48 3 2 17 True ,
assists baronKills bountyLevel champLevel championName \
0 3 0 0 16 Mordekaiser
1 5 0 1 15 Sejuani
2 1 0 0 15 Heimerdinger
3 3 0 0 14 Jhin
4 6 0 0 13 Nami
5 10 0 4 17 TwistedFate
6 12 1 0 16 DrMundo
7 9 0 1 17 Nasus
8 4 0 0 15 Azir
9 6 0 0 13 Lux
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2343 7027 2343
1 0 7295 0
2 744 5360 744
3 671 671 671
4 0 0 0
5 5200 15598 5200
6 755 32795 755
7 9700 27165 9700
8 6067 16215 6067
9 1048 1369 1048
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 8 1 0 False False
1 9 4 2 False False
2 7 0 0 False False
3 3 0 0 False False
4 4 0 0 False False
5 3 1 0 False False
6 3 1 3 False True
7 2 1 0 True False
8 3 1 0 False False
9 5 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 12937 TOP 0
1 False 10669 JUNGLE 0
2 False 9063 MIDDLE 0
3 False 10448 BOTTOM 0
4 False 6534 UTILITY 0
5 False 13105 MIDDLE 1
6 False 12905 JUNGLE 2
7 False 14357 TOP 0
8 False 12741 BOTTOM 0
9 False 8154 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 3 3020 3157 0 3165 4633 4637 3363
1 3 1028 3068 3083 3111 1057 3066 3364
2 3 1056 4628 6655 3020 4632 0 3340
3 3 6671 3009 6676 3035 1018 1055 3340
4 3 3853 3158 4005 3011 0 0 3364
5 0 3157 6656 3100 1056 3158 1052 3340
6 0 6662 2031 3111 3065 3742 0 3340
7 0 3193 1027 3082 3065 6632 3111 3340
8 0 3115 1056 4633 3191 3020 3089 3363
9 0 3853 6655 2420 3020 3145 1058 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 1 6 4 3
1 0 4 0 1
2 1 3 3 1
3 0 2 0 1
4 0 1 0 1
5 1 6 4 1
6 2 8 4 1
7 2 7 4 2
8 2 8 6 1
9 0 2 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 505 124679 26575
1 518 50429 7933
2 482 114912 22179
3 1222 6551 855
4 708 15104 6022
5 973 144187 18830
6 1001 88067 18355
7 1331 15788 3168
8 807 87477 13211
9 706 34471 9121
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 18500 12 1 0
1 18912 100 1 2
2 11421 2 1 0
3 8304 0 1 0
4 6642 0 1 0
5 14441 8 0 0
6 18907 116 0 0
7 17814 12 0 0
8 8021 12 0 0
9 6435 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 20220
1 0 2 70232
2 0 3 8966
3 0 4 110917
4 0 5 1848
5 0 6 21988
6 0 7 60250
7 0 8 148941
8 0 9 18309
9 0 10 3545
physicalDamageDealtToChampions physicalDamageTaken role \
0 3746 14908 NONE
1 10916 21697 NONE
2 553 5203 SOLO
3 7186 4450 CARRY
4 89 5350 SUPPORT
5 1598 4544 SOLO
6 10296 22690 NONE
7 16885 17220 SOLO
8 623 8677 CARRY
9 560 4487 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 3 12 23
1 19 11 5 4 244
2 4 4 5 14 134
3 1 7 1 4 86
4 3 4 2 3 36
5 5 14 4 4 115
6 18 11 3 4 192
7 3 12 3 4 94
8 4 7 2 4 40
9 3 14 3 4 125
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 RyeBreadPitt False 100 TOP 8
1 jor197411 False 100 JUNGLE 32
2 Alece False 100 MIDDLE 16
3 Dublaiar False 100 BOTTOM 15
4 laineybon False 100 UTILITY 20
5 0Heero False 200 MIDDLE 49
6 Your Fran False 200 JUNGLE 28
7 Syntos False 200 TOP 15
8 Tuuwuna False 200 BOTTOM 8
9 XxXiDeViLxXx False 200 UTILITY 31
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1990 153236 32231
1 1990 129514 20216
2 1990 127814 24062
3 1990 117572 8144
4 1990 16953 6111
5 1990 169564 21909
6 1990 165452 30054
7 1990 169290 20054
8 1990 110234 14316
9 1990 51423 10763
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 34648 10382 190 46
1 42491 8802 32 379
2 17316 742 148 182
3 13064 2735 203 117
4 12317 9249 7 138
5 19276 4951 180 243
6 43218 27137 47 1593
7 37026 7404 185 168
8 17229 5913 182 96
9 11200 1340 19 287
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 301 1 8336
1 239 5 8852
2 292 1 3935
3 119 1 102
4 143 5 0
5 90 1 3388
6 72 1 17135
7 96 1 4560
8 50 3 4447
9 173 1 13406
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1909 1238 1 11
1 1366 1881 0 11
2 1330 690 0 11
3 102 309 1 11
4 0 325 0 11
5 1480 290 3 2
6 1402 1619 0 2
7 0 1991 5 2
8 481 529 2 2
9 1081 276 0 2
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 22 1 3 12 False
1 27 4 2 12 False
2 12 0 1 7 False
3 13 0 1 7 False
4 21 0 2 10 False
5 19 1 1 11 True
6 34 1 4 12 True
7 15 2 0 6 True
8 22 1 1 11 True
9 42 0 0 27 True ,
assists baronKills bountyLevel champLevel championName \
0 3 0 9 16 Mordekaiser
1 7 0 5 14 Nasus
2 2 0 3 12 Draven
3 3 0 1 10 Ezreal
4 6 0 0 9 Morgana
5 0 0 0 6 Gwen
6 1 0 0 11 MasterYi
7 1 0 0 13 Azir
8 0 0 0 11 Vayne
9 7 0 0 10 Lux
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 11322 24593 11322
1 4421 12837 4421
2 6568 6568 6568
3 2148 4380 2148
4 3480 3480 3480
5 0 0 0
6 204 19512 204
7 2376 2376 2376
8 3886 4056 3886
9 677 1821 677
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 1 0 0 False False
1 1 2 1 False False
2 2 2 0 False False
3 4 0 0 False False
4 3 0 0 False False
5 2 0 0 False True
6 9 2 2 False False
7 4 1 0 False False
8 5 2 0 False False
9 3 5 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 13565 TOP 1
1 False 10129 JUNGLE 0
2 False 8407 MIDDLE 0
3 False 6280 BOTTOM 0
4 False 6495 UTILITY 0
5 False 4241 TOP 0
6 False 6745 JUNGLE 0
7 False 7120 MIDDLE 0
8 False 8994 BOTTOM 0
9 False 5869 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1056 4633 3047 3116 4629 1026 3340
1 0 6632 2031 3158 3110 1028 0 3340
2 0 1055 3508 3006 6676 0 0 3363
3 0 3508 3158 3133 2003 1036 1055 3340
4 0 3853 6653 3020 2424 3108 1029 3340
5 1 1055 4635 2031 0 0 0 3340
6 1 6691 1042 3006 1053 1042 0 3364
7 1 2003 6655 1056 1043 3020 1052 3340
8 1 3124 1053 3006 6672 1042 0 3340
9 1 3853 6653 3020 0 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 9 9 2
1 2 7 5 2
2 1 3 3 1
3 0 2 0 1
4 1 2 2 1
5 0 1 0 1
6 0 1 0 1
7 1 3 3 1
8 1 6 4 1
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 1223 132203 11897
1 999 31751 2495
2 434 0 0
3 439 3115 1058
4 390 15274 5827
5 358 4063 654
6 276 4742 0
7 1009 61065 9556
8 547 0 0
9 1093 26433 11593
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 4530 10 0 0
1 7714 114 0 0
2 5700 4 0 0
3 3136 0 0 0
4 3458 0 0 0
5 2635 0 1 0
6 6350 95 1 0
7 4317 0 1 0
8 5457 0 1 0
9 3803 0 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 21467
1 0 2 92984
2 0 3 70139
3 0 4 30367
4 0 5 1919
5 0 6 5654
6 0 7 84748
7 0 8 13915
8 0 9 65124
9 0 10 1776
physicalDamageDealtToChampions physicalDamageTaken role \
0 2456 8623 SOLO
1 9075 18476 NONE
2 3580 3122 DUO
3 1271 4374 DUO
4 475 5121 SUPPORT
5 870 2274 NONE
6 4005 14668 NONE
7 494 5839 SOLO
8 10257 4799 CARRY
9 288 3775 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 4 12 21
1 2 4 12 11 28
2 2 4 1 14 27
3 2 7 1 4 85
4 3 4 1 14 181
5 1 12 2 14 25
6 13 11 3 4 23
7 2 14 3 4 83
8 2 4 2 7 13
9 2 4 3 14 168
summonerName teamEarlySurrendered teamId teamPosition \
0 RyeBreadPitt False 100 TOP
1 Bettycrocks69 False 100 JUNGLE
2 hehexdmonkaslul False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 Coolgum15 False 100 UTILITY
5 MAAKIMA False 200 TOP
6 SmokingWires False 200 JUNGLE
7 ClumsiBunni False 200 MIDDLE
8 Harryback98 False 200 BOTTOM
9 AcroPhobiias False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 7 1354 170042 14994
1 9 1354 135732 11834
2 2 1354 70709 3646
3 0 1354 35391 2330
4 32 1354 17404 6513
5 0 1354 14689 2376
6 3 1354 110282 5363
7 9 1354 75397 10466
8 4 1354 81368 13242
9 38 1354 29039 12711
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 15557 9604 206 196
1 28587 8859 35 471
2 9069 2179 147 53
3 7860 1095 74 0
4 9622 1478 9 52
5 5015 527 32 4
6 21414 5882 32 30
7 10373 224 126 160
8 10587 1481 151 4
9 7711 454 25 134
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 6 1 16369
1 32 1 10996
2 37 1 570
3 63 3 1907
4 54 1 210
5 30 1 4970
6 199 1 20790
7 116 1 416
8 144 1 16243
9 64 1 828
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 640 2403 5 2
1 264 2395 2 2
2 66 246 0 2
3 0 349 2 2
4 210 1043 2 2
5 851 106 0 10
6 1357 394 1 10
7 416 216 0 10
8 2985 330 1 10
9 828 132 0 10
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 10 0 1 7 True
1 17 2 1 8 True
2 11 2 1 10 True
3 12 0 2 6 True
4 20 0 3 10 True
5 3 0 0 2 False
6 14 2 3 3 False
7 18 1 4 7 False
8 15 2 1 7 False
9 28 5 4 12 False ,
assists baronKills bountyLevel champLevel championName \
0 5 0 0 14 Riven
1 2 0 2 16 Rengar
2 1 0 2 15 Ryze
3 4 0 0 12 Ezreal
4 6 0 0 13 Senna
5 9 0 6 17 DrMundo
6 9 0 0 16 Shaco
7 8 0 0 16 Zoe
8 4 0 2 14 Samira
9 15 0 0 14 Taric
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 1473 1473 1473
1 0 13386 0
2 0 5659 0
3 185 600 185
4 148 837 148
5 7028 21809 7028
6 413 6628 413
7 2801 2801 2801
8 4855 12380 4855
9 1203 3024 1203
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 2 0 False False
1 8 0 1 False False
2 8 4 0 False False
3 7 0 1 False False
4 5 2 0 False False
5 2 0 1 False False
6 7 2 0 False True
7 6 0 0 False False
8 1 0 0 False False
9 2 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 9306 TOP 0
1 True 12618 JUNGLE 0
2 True 10218 MIDDLE 0
3 True 8040 BOTTOM 0
4 True 7407 UTILITY 0
5 True 15433 TOP 0
6 True 13332 JUNGLE 0
7 True 10206 MIDDLE 1
8 True 11898 BOTTOM 0
9 True 7590 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 6333 2031 1001 3133 3057 6630 3340
1 1 6691 3158 6676 3508 3035 0 3340
2 1 3040 6656 3020 4632 3108 0 3364
3 1 1036 2003 6632 3070 3158 3133 3340
4 1 6632 3123 3864 3009 3133 1036 3364
5 0 3083 3076 3143 3047 6662 4401 3340
6 0 3508 6691 3158 6676 3035 1018 3364
7 0 3108 4628 6655 3020 3191 0 3340
8 0 6673 3047 6676 1038 1053 1055 3340
9 0 3860 3190 3047 3050 1028 1006 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 0 2 0 2
1 2 10 6 1
2 2 5 2 1
3 0 1 0 1
4 0 0 0 0
5 2 8 6 2
6 3 11 4 2
7 2 5 3 1
8 2 11 9 2
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 693 0 0
1 653 43117 2287
2 294 113796 9689
3 396 6053 2800
4 686 903 903
5 698 80422 19900
6 355 62570 8447
7 575 58082 10595
8 1546 9585 2262
9 430 15271 5214
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 14437 4 0 0
1 9832 119 0 0
2 10000 4 0 0
3 6606 4 0 1
4 6893 2 0 0
5 4633 9 0 0
6 4678 164 0 0
7 3141 1 0 0
8 1426 2 0 0
9 3265 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 75683
1 0 2 124560
2 0 3 15802
3 0 4 76690
4 1 5 57826
5 0 6 117734
6 0 7 101579
7 0 8 17222
8 0 9 101111
9 0 10 7351
physicalDamageDealtToChampions physicalDamageTaken role \
0 13212 12454 SOLO
1 19010 22774 NONE
2 849 8988 SOLO
3 6129 10256 CARRY
4 24441 12837 SUPPORT
5 11362 36851 SOLO
6 14087 22713 NONE
7 1237 13685 SOLO
8 13491 13414 CARRY
9 1738 10874 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 5 4 2 12 27
1 5 4 14 11 196
2 2 12 3 4 25
3 5 4 5 7 40
4 5 4 6 14 25
5 5 4 4 12 20
6 17 11 7 14 20
7 4 4 4 14 87
8 1 7 0 4 85
9 1 4 5 3 181
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 TreeeU False 100 TOP 15
1 avxrla False 100 JUNGLE 11
2 123spitfire False 100 MIDDLE 19
3 DrunkenHymie False 100 BOTTOM 0
4 Lil Veigar OP False 100 UTILITY 23
5 RyeBreadPitt False 200 TOP 28
6 RACECARWORM False 200 JUNGLE 32
7 Rintu21 False 200 MIDDLE 24
8 Dublaiar False 200 BOTTOM 0
9 Coolgum15 False 200 UTILITY 30
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1899 75683 13212
1 1899 176186 22132
2 1899 133631 10742
3 1899 85072 8930
4 1899 60205 26286
5 1899 209241 31610
6 1899 175018 26415
7 1899 80306 13993
8 1899 121351 15907
9 1899 28940 6963
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 27823 2419 126 93
1 35140 12398 51 288
2 21211 1716 168 114
3 17417 3363 136 0
4 20221 10610 30 55
5 42336 11878 235 1067
6 27827 8644 16 998
7 17204 2763 145 85
8 15067 3610 163 0
9 14227 9926 36 74
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 252 1 0
1 289 1 8508
2 243 1 4031
3 204 3 2329
4 179 5 1475
5 62 1 11084
6 192 1 10870
7 239 1 5001
8 43 2 10654
9 31 5 6317
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 931 0 7
1 834 2534 0 7
2 204 2222 0 7
3 0 554 0 7
4 942 490 0 7
5 347 852 4 0
6 3880 436 1 0
7 2161 378 1 0
8 154 226 1 0
9 9 88 0 0
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 28 2 0 8 False
1 20 0 2 9 False
2 17 4 3 5 False
3 9 0 0 6 False
4 60 2 5 21 False
5 16 0 0 10 True
6 19 2 2 3 True
7 10 0 3 5 True
8 16 0 0 9 True
9 23 0 2 12 True ,
assists baronKills bountyLevel champLevel championName \
0 1 0 0 10 DrMundo
1 2 0 0 9 Maokai
2 0 0 0 10 Ziggs
3 0 0 3 10 Twitch
4 1 0 2 9 Velkoz
5 0 0 8 13 Mordekaiser
6 3 0 0 9 Rammus
7 0 0 1 11 Viktor
8 1 0 0 9 Jhin
9 1 0 0 8 Morgana
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 625 625 625
1 0 1550 0
2 734 734 734
3 486 486 486
4 177 177 177
5 2444 2444 2444
6 0 3947 0
7 2967 2967 2967
8 551 1637 551
9 59 949 59
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 0 0 False False
1 3 2 0 False False
2 4 0 0 False False
3 0 1 0 False False
4 1 3 0 False False
5 1 1 0 False True
6 1 0 1 False False
7 1 1 0 False False
8 2 0 0 False False
9 1 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 4070 TOP 0
1 True 4591 JUNGLE 0
2 True 4849 MIDDLE 0
3 True 6047 BOTTOM 0
4 True 4357 UTILITY 0
5 True 8627 TOP 0
6 True 4668 JUNGLE 0
7 True 5878 MIDDLE 0
8 True 4958 BOTTOM 0
9 True 4277 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1054 3068 0 0 0 0 3340
1 0 6662 3067 1001 0 0 0 3364
2 0 1056 3802 3020 1026 0 0 3340
3 0 1056 1037 2031 6670 3006 1018 3340
4 0 3851 3802 2422 1026 0 0 3364
5 0 1056 4633 3165 3111 1026 0 3340
6 0 6660 2031 3047 1033 0 0 3340
7 0 3802 3020 3108 1056 0 1026 3340
8 0 6671 3009 0 1055 0 0 3340
9 0 3851 3802 2423 1052 3117 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 0 0 0
1 0 1 0 1
2 0 0 0 0
3 1 3 3 1
4 1 2 2 1
5 1 9 8 2
6 0 0 0 0
7 0 2 0 1
8 0 0 0 0
9 1 2 2 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 409 21528 4725
1 515 28483 3625
2 383 54403 4590
3 0 398 108
4 334 10711 4951
5 225 66500 11818
6 754 33864 996
7 756 51053 6425
8 390 6627 511
9 1020 5781 3524
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 10655 4 0 0
1 6316 56 0 0
2 4234 5 0 0
3 624 0 0 0
4 2103 0 0 0
5 6485 0 0 0
6 3561 72 0 0
7 3193 4 0 0
8 2734 0 0 0
9 2946 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 16494
1 0 2 10081
2 0 3 7957
3 0 4 43400
4 0 5 1168
5 0 6 11902
6 0 7 17046
7 0 8 13902
8 0 9 49924
9 0 10 1475
physicalDamageDealtToChampions physicalDamageTaken role \
0 1330 4239 SUPPORT
1 1036 7337 SUPPORT
2 788 1860 DUO
3 3792 2471 SUPPORT
4 107 1928 SUPPORT
5 2560 6217 SUPPORT
6 594 6472 SUPPORT
7 465 2231 SUPPORT
8 3860 2785 SUPPORT
9 262 1789 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 1 12 2 4 169
1 10 11 2 4 153
2 2 4 2 12 292
3 1 4 2 7 312
4 2 3 1 4 26
5 2 4 2 12 20
6 8 11 1 4 22
7 1 4 1 14 62
8 2 4 3 7 37
9 2 14 1 4 84
summonerName teamEarlySurrendered teamId teamPosition \
0 RoyalxSovietx False 100 TOP
1 Ruahi False 100 JUNGLE
2 ToxicRamenLover False 100 MIDDLE
3 CheechRebel False 100 BOTTOM
4 Croakyyyy False 100 UTILITY
5 RyeBreadPitt False 200 TOP
6 gluetastyYUMYUM False 200 JUNGLE
7 Unknowing Fork False 200 MIDDLE
8 Carbo Carbonis False 200 BOTTOM
9 Dublaiar False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 7 1025 38023 6056
1 22 1025 44858 5028
2 8 1025 62360 5378
3 2 1025 46718 4677
4 9 1025 12410 5540
5 2 1025 79634 15017
6 8 1025 55767 1805
7 5 1025 68355 7120
8 9 1025 56551 4372
9 27 1025 7530 4060
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 15113 4398 65 114
1 14565 5822 10 425
2 6320 0 110 203
3 3095 1195 132 110
4 4032 0 8 78
5 12774 6367 115 23
6 10157 4411 1 240
7 5425 729 123 29
8 6424 2123 113 90
9 5258 551 9 32
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 105 1 0
1 56 1 6294
2 108 0 0
3 0 2 2919
4 12 0 530
5 12 1 1232
6 16 1 4857
7 30 1 3400
8 33 2 0
9 0 1 274
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 219 0 2
1 366 911 0 2
2 0 226 0 2
3 776 0 0 2
4 481 0 0 2
5 638 72 1 0
6 215 124 0 0
7 230 0 1 0
8 0 903 0 0
9 274 523 0 0
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 7 0 0 5 False
1 17 2 4 4 False
2 8 0 0 5 False
3 9 1 0 6 False
4 17 3 2 10 False
5 10 1 0 6 True
6 7 0 0 4 True
7 6 1 0 4 True
8 7 0 1 4 True
9 28 2 5 11 True ,
assists baronKills bountyLevel champLevel championName \
0 2 0 3 14 FiddleSticks
1 12 0 1 12 Zac
2 4 0 0 12 Kayle
3 7 0 1 11 Samira
4 6 0 0 10 Pyke
5 1 0 0 11 Riven
6 2 0 0 11 MasterYi
7 3 0 0 12 Qiyana
8 2 0 0 10 Jhin
9 7 0 0 10 Nami
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3380 5573 3380
1 1250 9959 1250
2 2930 2930 2930
3 2091 5156 2091
4 1221 3896 1221
5 381 381 381
6 1441 8036 1441
7 391 1319 391
8 3926 3926 3926
9 1486 1486 1486
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 2 0 0 False True
1 2 0 2 False False
2 2 0 0 False False
3 3 0 0 False False
4 2 1 0 False False
5 8 1 0 False False
6 2 0 1 False False
7 5 0 0 False False
8 6 3 0 False False
9 5 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 True False False
7 False False False
8 False True False
9 True False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 10010 TOP 0
1 True 8586 JUNGLE 0
2 True 7212 MIDDLE 0
3 True 6688 BOTTOM 0
4 True 6432 UTILITY 0
5 True 4893 TOP 0
6 True 8852 JUNGLE 0
7 True 7327 MIDDLE 0
8 True 6735 BOTTOM 0
9 True 5738 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3047 3157 2033 6653 3082 0 3330
1 0 3111 2031 3068 3075 1029 1029 3340
2 0 1054 1082 3115 3047 0 0 3363
3 0 6673 3047 1036 1036 0 1055 3340
4 0 3855 3047 6691 1036 1036 0 3364
5 0 6692 0 0 0 0 1001 3340
6 0 3006 6691 2031 3153 1042 0 3364
7 0 3111 2031 6693 3134 1037 0 3340
8 0 6671 3134 3009 0 0 1055 3340
9 0 4005 3114 3853 3158 1052 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 11 7 2
1 1 6 4 2
2 1 4 3 1
3 1 3 2 1
4 1 2 2 1
5 0 1 0 1
6 2 5 3 2
7 1 2 2 1
8 0 2 0 1
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 890 68963 13753
1 876 69155 9292
2 883 27739 4063
3 558 4061 874
4 892 0 0
5 234 0 0
6 1057 5941 188
7 388 1811 427
8 307 6367 1392
9 319 10850 4633
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 750 1 0 0
1 2397 81 0 0
2 391 0 0 0
3 2500 0 0 0
4 1532 1 0 0
5 7003 0 0 0
6 5792 117 0 0
7 5377 0 0 0
8 5991 0 0 0
9 5115 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 9426
1 0 2 15857
2 0 3 20091
3 0 4 30803
4 0 5 14375
5 0 6 43858
6 0 7 95066
7 0 8 47901
8 0 9 59641
9 0 10 1769
physicalDamageDealtToChampions physicalDamageTaken role \
0 966 11524 SOLO
1 1749 13213 NONE
2 2407 8189 SOLO
3 3929 8334 CARRY
4 4054 6156 SUPPORT
5 5316 3986 SOLO
6 6595 11825 NONE
7 8395 4649 SOLO
8 9129 7046 CARRY
9 377 4073 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 12 6 14 132
1 2 4 15 11 181
2 2 4 3 12 349
3 4 7 1 4 84
4 3 14 4 4 179
5 3 4 2 14 225
6 2 4 8 11 171
7 3 4 3 14 332
8 3 4 4 7 243
9 4 14 4 4 192
summonerName teamEarlySurrendered teamId teamPosition \
0 ThePizzaMarine False 100 TOP
1 Coolgum15 False 100 JUNGLE
2 Rotome False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 Thick2BThighs False 100 UTILITY
5 Ebawnyy False 200 TOP
6 14siuqraM False 200 JUNGLE
7 mouth pee False 200 MIDDLE
8 ColossalYodas False 200 BOTTOM
9 CrotchBlaster500 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 51 1280 83469 15904
1 33 1280 92047 12142
2 4 1280 51351 6470
3 1 1280 37870 4803
4 11 1280 19505 4604
5 15 1280 44014 5472
6 1 1280 118347 8630
7 17 1280 50055 9165
8 3 1280 66008 10522
9 16 1280 13225 5616
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 12604 4391 131 386
1 16919 20524 26 426
2 9304 2537 117 130
3 11160 3233 85 1
4 7951 1994 24 73
5 11704 601 77 70
6 18532 8391 22 78
7 10584 776 119 67
8 13499 2314 131 105
9 9376 4900 11 139
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 51 1 5079
1 66 4 7035
2 68 5 3520
3 64 2 3005
4 52 1 5130
5 171 1 156
6 69 1 17339
7 110 1 342
8 143 3 0
9 115 4 605
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1184 329 1 1
1 1101 1308 1 1
2 0 723 1 1
3 0 325 1 1
4 550 262 0 1
5 156 714 0 4
6 1846 915 0 4
7 342 556 0 4
8 0 461 1 4
9 605 187 0 4
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 30 0 3 0 True
1 9 0 0 6 True
2 6 1 1 4 True
3 17 0 4 6 True
4 17 1 1 13 True
5 11 1 1 7 False
6 16 0 1 5 False
7 10 0 1 7 False
8 12 3 2 9 False
9 27 1 2 14 False ,
assists baronKills bountyLevel champLevel championName \
0 8 0 1 14 Nasus
1 8 1 4 14 JarvanIV
2 7 0 0 14 Fizz
3 8 0 0 13 Ashe
4 15 0 0 12 Seraphine
5 3 0 0 15 Kled
6 4 0 0 12 Zac
7 3 0 0 14 Veigar
8 8 0 0 13 Jhin
9 4 0 1 12 Xerath
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3594 7673 3594
1 3562 30819 3562
2 4020 7471 4020
3 3069 14179 3069
4 1840 3489 1840
5 3568 3568 3568
6 24 8416 24
7 1179 5242 1179
8 0 3255 0
9 0 2169 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 0 0 True False
1 4 2 1 False True
2 4 0 0 False False
3 7 0 1 False False
4 4 2 0 False False
5 5 0 0 False False
6 7 1 1 False False
7 6 0 1 False False
8 1 0 0 False False
9 5 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 True False False
2 False False False
3 False True False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 9206 TOP 0
1 False 11641 JUNGLE 2
2 False 9582 MIDDLE 0
3 False 9737 BOTTOM 0
4 False 7936 UTILITY 0
5 False 10185 TOP 0
6 False 7012 JUNGLE 0
7 False 10168 MIDDLE 0
8 False 6475 BOTTOM 0
9 False 8420 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 6632 1054 3158 3110 3067 1033 3340
1 0 6630 2421 3111 2031 1038 3053 3364
2 0 3057 3157 2033 4636 3158 3113 3340
3 0 3085 6672 3006 2031 1036 1036 3340
4 0 3853 6617 3158 3504 1026 0 3364
5 2 1055 3748 3068 3047 3044 1028 3340
6 2 3068 2031 3111 3076 1011 0 3340
7 2 1056 6656 3020 3102 1058 0 3340
8 2 6671 3009 1036 1036 0 1055 3340
9 2 3853 3020 6655 4628 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 2 0 1
1 3 8 4 2
2 1 5 2 2
3 2 7 3 2
4 0 2 0 1
5 3 8 4 1
6 0 0 0 0
7 2 9 3 1
8 0 0 0 0
9 2 7 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 622 14735 4535
1 715 7487 433
2 802 38116 7460
3 328 1794 1184
4 733 30493 12077
5 508 9047 4058
6 718 89766 7363
7 736 84439 22283
8 715 3175 530
9 725 40145 20609
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 9415 0 0 0
1 14024 92 0 0
2 10895 0 0 0
3 13757 8 0 0
4 8308 4 0 0
5 8406 8 1 0
6 5798 112 1 0
7 5648 8 1 0
8 4435 0 1 0
9 3507 0 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 82547
1 0 2 90770
2 0 3 19238
3 0 4 80009
4 0 5 4016
5 0 6 104670
6 0 7 17766
7 0 8 10272
8 0 9 71675
9 0 10 1907
physicalDamageDealtToChampions physicalDamageTaken role \
0 11990 20546 SOLO
1 13577 17859 NONE
2 1267 3175 SOLO
3 14911 4496 CARRY
4 1923 5802 SUPPORT
5 22446 28469 SOLO
6 617 19106 NONE
7 603 10220 SOLO
8 6455 6763 CARRY
9 288 6074 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 6 6 3 12 40
1 4 4 16 11 240
2 2 14 1 4 41
3 2 4 4 7 53
4 3 4 5 3 77
5 4 12 7 14 132
6 3 4 17 11 181
7 2 4 2 12 349
8 3 7 3 4 84
9 5 3 3 4 179
summonerName teamEarlySurrendered teamId teamPosition \
0 Xyta False 100 TOP
1 FourLeafedElfMan False 100 JUNGLE
2 Dr Spongy False 100 MIDDLE
3 Pastor Geronimo False 100 BOTTOM
4 sirjames2003 False 100 UTILITY
5 ThePizzaMarine False 200 TOP
6 Coolgum15 False 200 JUNGLE
7 Rotome False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 Thick2BThighs False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 16 1591 98254 17003
1 23 1591 120975 16110
2 7 1591 62021 9106
3 34 1591 92672 18907
4 30 1591 34558 14049
5 12 1591 122049 27620
6 33 1591 117694 8940
7 47 1591 94711 22887
8 26 1591 74851 6986
9 25 1591 44563 20897
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 31108 6941 150 368
1 32036 11913 40 331
2 16070 2726 131 88
3 18466 2090 137 506
4 14175 9672 21 160
5 37880 6788 164 93
6 29129 26046 16 379
7 16536 1632 152 127
8 11198 3990 112 95
9 10001 24 22 116
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 102 1 971
1 121 1 22718
2 109 1 4665
3 206 2 10869
4 114 5 48
5 110 1 8330
6 179 5 10160
7 181 1 0
8 21 2 0
9 106 1 2511
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 477 1145 2 1
1 2099 152 4 1
2 378 2000 1 1
3 2810 212 1 1
4 48 64 0 1
5 1115 1003 1 9
6 958 4224 0 9
7 0 666 0 9
8 0 0 0 9
9 0 419 0 9
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 8 0 0 5 True
1 24 2 5 3 True
2 11 0 0 6 True
3 8 0 0 4 True
4 27 2 3 7 True
5 12 0 0 8 False
6 9 1 0 5 False
7 8 0 0 5 False
8 9 0 0 6 False
9 24 2 2 12 False ,
assists baronKills bountyLevel champLevel championName \
0 2 0 7 13 Nasus
1 4 0 1 11 Zac
2 0 0 2 12 Kayle
3 1 0 1 10 Samira
4 1 0 1 9 Brand
5 0 0 0 10 Mordekaiser
6 1 0 0 10 Diana
7 0 0 0 10 Yone
8 2 0 0 9 Ashe
9 3 0 0 10 Morgana
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 4257 4257 4257
1 0 3555 0
2 4535 5561 4535
3 318 318 318
4 0 1143 0
5 0 0 0
6 0 7257 0
7 1165 2622 1165
8 2939 2939 2939
9 895 895 895
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 0 0 0 False False
1 2 2 0 False False
2 0 1 0 False False
3 3 0 0 False False
4 4 2 1 False False
5 5 0 0 False False
6 2 1 1 False False
7 2 1 0 False False
8 2 0 0 False True
9 3 0 0 True False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 8990 TOP 0
1 True 5260 JUNGLE 0
2 True 6430 MIDDLE 0
3 True 5036 BOTTOM 0
4 True 5107 UTILITY 0
5 True 3892 TOP 0
6 True 5174 JUNGLE 0
7 True 5851 MIDDLE 0
8 True 6055 BOTTOM 0
9 True 6080 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1054 3158 6632 3024 3082 0 3340
1 0 1029 2031 6660 1001 1033 2055 3364
2 0 1056 1082 3006 3115 0 0 3340
3 0 6673 1029 0 0 0 1055 3340
4 0 3853 3020 3108 3802 0 0 3364
5 0 1056 4635 3047 1026 0 0 3340
6 0 4636 2031 3020 0 0 0 3340
7 0 6673 3006 1018 0 0 0 3340
8 0 6672 3006 1055 1018 1042 0 3340
9 0 6653 3853 3020 0 0 0 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 1 7 7 2
1 0 1 0 1
2 1 2 2 1
3 0 1 0 1
4 1 3 2 2
5 0 0 0 0
6 0 0 0 0
7 1 3 2 1
8 1 2 2 1
9 2 4 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 0 12679 2782
1 563 48875 3007
2 0 30372 3308
3 299 2826 137
4 421 15306 6696
5 391 27821 6356
6 798 49139 2166
7 710 5413 942
8 749 609 409
9 753 22566 9584
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 9161 0 0 0
1 4652 77 0 0
2 2346 0 0 0
3 2360 0 0 0
4 2474 4 0 0
5 2397 0 0 0
6 2814 100 0 0
7 3241 0 0 0
8 4736 0 0 0
9 3724 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 72276
1 0 2 13803
2 0 3 19219
3 0 4 28047
4 0 5 1096
5 0 6 9994
6 0 7 17540
7 0 8 41133
8 0 9 51478
9 0 10 3645
physicalDamageDealtToChampions physicalDamageTaken role \
0 11388 6642 DUO
1 587 10684 SUPPORT
2 1962 3814 SUPPORT
3 1315 3187 SUPPORT
4 447 3936 SUPPORT
5 1068 8481 SUPPORT
6 591 7797 SUPPORT
7 3851 6290 DUO
8 6724 2219 SUPPORT
9 1011 3435 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 12 2 4 132
1 2 4 11 11 180
2 2 4 2 12 349
3 2 7 1 4 84
4 3 14 2 4 179
5 1 4 1 12 39
6 2 4 10 11 170
7 2 4 4 14 115
8 2 7 3 4 92
9 1 4 2 3 195
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 ThePizzaMarine False 100 TOP 14
1 Coolgum15 False 100 JUNGLE 13
2 Rotome False 100 MIDDLE 4
3 Dublaiar False 100 BOTTOM 0
4 Thick2BThighs False 100 UTILITY 9
5 MeerNoob False 200 TOP 2
6 Aecxd False 200 JUNGLE 2
7 uhhhhhhhhhhm False 200 MIDDLE 6
8 Fluffykittenn False 200 BOTTOM 23
9 ObenOW False 200 UTILITY 37
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1062 89455 14384
1 1062 70085 4100
2 1062 62382 5270
3 1062 32414 1452
4 1062 16815 7556
5 1062 37815 7425
6 1062 74340 3326
7 1062 53610 6247
8 1062 55782 7678
9 1062 26517 10773
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 16373 4245 148 117
1 16508 16545 3 309
2 6995 1895 126 109
3 5547 1248 86 0
4 6714 853 7 15
5 10982 1286 67 20
6 10680 4304 11 128
7 9839 997 106 44
8 7225 878 114 419
9 7406 1101 19 70
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 0 1 4499
1 43 3 7406
2 0 2 12790
3 53 3 1540
4 74 1 412
5 134 1 0
6 60 1 7660
7 30 1 7063
8 51 3 3693
9 57 1 305
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 214 569 1 1
1 506 1172 0 1
2 0 835 1 1
3 0 0 0 1
4 412 303 0 1
5 0 104 0 2
6 568 68 0 2
7 1453 308 0 2
8 544 270 1 2
9 177 246 0 2
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 7 0 0 5 True
1 12 4 2 4 True
2 6 1 0 3 True
3 6 0 0 5 True
4 26 2 1 15 True
5 8 0 0 5 False
6 18 1 3 3 False
7 12 1 0 6 False
8 6 0 0 4 False
9 6 0 1 3 False ,
assists baronKills bountyLevel champLevel championName \
0 2 0 2 13 TahmKench
1 1 0 2 11 Diana
2 1 0 2 11 Kassadin
3 4 0 2 10 Ezreal
4 4 0 1 10 Seraphine
5 0 0 0 3 Jax
6 0 0 0 9 Khazix
7 2 0 0 12 Qiyana
8 1 0 0 10 Samira
9 5 0 0 9 Nami
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3890 15646 3890
1 424 9217 424
2 837 2453 837
3 133 133 133
4 0 62 0
5 0 0 0
6 0 19190 0
7 0 0 0
8 0 895 0
9 0 514 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 0 1 0 False False
1 1 0 1 False False
2 5 0 0 False False
3 3 0 0 False False
4 2 0 0 False False
5 0 0 0 False False
6 4 1 1 False False
7 3 0 0 False True
8 2 0 0 False False
9 2 2 1 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 True False False
1 False True False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 8266 TOP 0
1 True 7980 JUNGLE 0
2 True 5805 MIDDLE 0
3 True 6678 BOTTOM 0
4 True 4287 UTILITY 0
5 True 2938 TOP 0
6 True 4595 JUNGLE 0
7 True 7191 MIDDLE 0
8 True 7014 BOTTOM 0
9 True 4196 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3068 3075 3047 2055 0 0 3340
1 0 3152 2031 3020 3057 3113 0 3364
2 0 1082 6656 0 0 1029 3070 3340
3 0 3042 2031 3158 1036 0 1083 3340
4 0 3851 2003 2010 6617 1001 0 3340
5 0 2422 0 0 0 0 2033 3340
6 0 6691 0 1001 0 0 0 3364
7 0 6693 6695 0 3070 1001 0 3340
8 0 6673 3047 3134 1037 0 1055 3340
9 0 3851 4642 3067 3158 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 2 2 1
1 2 4 2 2
2 1 2 2 1
3 1 2 2 1
4 0 1 0 1
5 0 0 0 0
6 0 0 0 0
7 2 7 5 1
8 2 4 2 1
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 0 42783 3671
1 1061 82178 4801
2 301 25775 4336
3 590 8230 4113
4 560 5985 2080
5 0 184 144
6 723 4662 76
7 725 3849 1145
8 896 4839 1035
9 983 6893 2136
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 404 0 0 0
1 2414 114 0 0
2 444 3 0 0
3 1707 4 0 0
4 1022 0 0 0
5 457 0 0 0
6 3533 56 0 0
7 6289 4 0 0
8 4650 0 0 0
9 4732 4 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 18522
1 0 2 19743
2 0 3 13216
3 0 4 46319
4 0 5 1299
5 0 6 2620
6 0 7 51974
7 0 8 52112
8 0 9 39580
9 0 10 1933
physicalDamageDealtToChampions physicalDamageTaken role \
0 650 6960 SOLO
1 279 8085 NONE
2 877 9658 SOLO
3 5931 4376 CARRY
4 370 3158 SUPPORT
5 783 445 SOLO
6 2508 12140 NONE
7 13523 5139 SOLO
8 3620 4608 CARRY
9 271 2155 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 1 4 1 14 166
1 1 4 11 11 72
2 2 4 2 12 122
3 2 4 3 7 321
4 1 4 3 3 25
5 0 12 1 4 114
6 12 11 2 4 83
7 5 14 4 4 199
8 1 7 1 4 84
9 2 14 2 4 156
summonerName teamEarlySurrendered teamId teamPosition \
0 remmieee False 100 TOP
1 SacredTurtle146 False 100 JUNGLE
2 FlatEartherrr False 100 MIDDLE
3 CHRISPY12 False 100 BOTTOM
4 angelhic False 100 UTILITY
5 SST7SST7SST7 False 200 TOP
6 nogagreflex144 False 200 JUNGLE
7 boobie milk False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 Glorÿ False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 11 1212 68216 4645
1 5 1212 110654 5159
2 9 1212 41207 5294
3 0 1212 57467 10134
4 11 1212 7285 2451
5 2 1212 2805 928
6 2 1212 69270 2847
7 20 1212 62362 15745
8 2 1212 48867 4970
9 16 1212 9093 2674
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 7780 2450 145 92
1 10914 5878 24 100
2 10879 1546 83 82
3 6192 1069 119 12
4 4386 873 8 68
5 926 186 10 6
6 15780 6558 29 51
7 11779 933 102 96
8 9259 1684 124 33
9 6977 2994 3 123
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 0 1 6911
1 35 1 8733
2 79 1 2215
3 71 2 2918
4 35 2 0
5 0 1 0
6 102 1 12633
7 65 1 6401
8 30 2 4447
9 27 4 266
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 323 415 1 0
1 78 414 2 0
2 80 775 0 0
3 90 108 0 0
4 0 205 0 0
5 0 24 0 3
6 262 106 0 3
7 1076 351 0 3
8 314 0 0 3
9 266 90 0 3
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 13 2 1 5 True
1 7 0 1 2 True
2 11 0 1 6 True
3 8 0 0 6 True
4 9 0 0 6 True
5 1 0 0 1 False
6 21 1 2 2 False
7 7 0 0 5 False
8 6 0 0 4 False
9 21 2 1 9 False ,
assists baronKills bountyLevel champLevel championName \
0 2 0 5 12 Sett
1 4 0 1 9 Ekko
2 1 0 7 10 Yone
3 3 0 0 8 Samira
4 4 0 1 7 Lulu
5 0 0 0 9 Darius
6 0 0 0 8 XinZhao
7 0 0 0 10 Ezreal
8 0 0 0 8 Ashe
9 0 0 0 7 Nautilus
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 5622 5622 5622
1 1136 16614 1136
2 577 1958 577
3 712 2148 712
4 292 934 292
5 0 0 0
6 0 685 0
7 54 384 54
8 620 620 620
9 0 125 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 1 0 0 False False
1 0 0 1 False False
2 0 0 0 False True
3 0 0 1 False False
4 0 1 0 False False
5 7 1 0 False False
6 3 0 0 False False
7 3 0 0 False False
8 1 0 0 False False
9 2 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 7861 TOP 0
1 True 4770 JUNGLE 0
2 True 6372 MIDDLE 0
3 True 3728 BOTTOM 0
4 True 3348 UTILITY 0
5 True 3890 TOP 0
6 True 3555 JUNGLE 0
7 True 4255 MIDDLE 0
8 True 4115 BOTTOM 0
9 True 3257 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 6631 1055 3111 1053 1043 1037 3340
1 0 3152 2031 2422 1082 0 0 3340
2 0 2031 3006 1055 6673 1018 0 3340
3 0 6670 1001 1053 0 0 1055 3340
4 0 3851 4642 1001 3067 0 0 3364
5 0 1054 3047 3051 3067 0 0 3340
6 0 3134 2031 1001 1053 0 0 3340
7 0 1055 3057 2055 3070 3067 3044 3340
8 0 3004 2003 3158 0 0 0 3340
9 0 3105 3855 1028 2010 1001 0 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 2 7 5 2
1 0 1 0 1
2 1 7 7 2
3 0 0 0 0
4 0 1 0 1
5 0 1 0 1
6 0 0 0 0
7 0 0 0 0
8 0 0 0 0
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 474 0 0
1 0 38772 3314
2 0 5326 1025
3 0 1713 109
4 0 2882 606
5 225 0 0
6 577 8798 218
7 442 3243 2280
8 844 702 302
9 760 2746 1286
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 142 0 0 0
1 1789 70 0 0
2 1040 0 0 0
3 957 4 0 0
4 880 0 0 0
5 66 0 0 0
6 1986 57 0 0
7 1573 0 0 0
8 720 0 0 0
9 1865 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 56692
1 0 2 13124
2 0 3 30420
3 0 4 18840
4 0 5 1350
5 0 6 31323
6 0 7 34852
7 0 8 38460
8 0 9 26381
9 0 10 6571
physicalDamageDealtToChampions physicalDamageTaken role \
0 10892 9821 DUO
1 1101 10073 SUPPORT
2 4479 4490 SUPPORT
3 913 2519 SUPPORT
4 332 1890 SUPPORT
5 5262 10577 SUPPORT
6 2000 8470 SUPPORT
7 4534 3941 DUO
8 2709 1429 SUPPORT
9 725 2385 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 4 4 14 306
1 9 11 2 4 114
2 0 4 2 12 49
3 1 7 1 4 84
4 1 14 2 4 156
5 2 12 2 4 34
6 1 4 8 11 41
7 3 4 2 12 323
8 0 4 1 6 38
9 3 4 2 14 217
summonerName teamEarlySurrendered teamId teamPosition \
0 Confetti Cannon False 100 TOP
1 Blink534 False 100 JUNGLE
2 Hughsus False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 Glorÿ False 100 UTILITY
5 PowerTrousers False 200 TOP
6 For Glory Cloud False 200 JUNGLE
7 Xayah Bout It False 200 MIDDLE
8 Milla Maxwell False 200 BOTTOM
9 Sir Erik False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 15 912 64387 14285
1 5 912 61571 4667
2 9 912 36651 6410
3 0 912 22359 1022
4 10 912 4300 1006
5 7 912 36258 5636
6 5 912 48180 2316
7 0 912 43183 6815
8 17 912 32693 3011
9 19 912 16702 2289
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 10436 2436 97 97
1 11862 5020 5 317
2 5530 1308 57 58
3 3754 711 65 0
4 2770 0 2 72
5 13502 960 65 47
6 11007 4628 3 174
7 6217 468 99 9
8 2481 124 86 330
9 4426 0 26 123
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 27 1 7695
1 0 1 9674
2 0 1 905
3 0 2 1805
4 0 0 68
5 170 1 4934
6 64 1 4530
7 70 1 1480
8 27 1 5610
9 42 0 7383
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 3393 472 2 0
1 252 0 0 0
2 905 0 0 0
3 0 277 0 0
4 68 0 0 0
5 374 2858 0 2
6 98 550 0 2
7 0 702 0 2
8 0 331 0 2
9 277 176 0 2
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 5 0 1 3 True
1 9 0 0 3 True
2 6 0 0 4 True
3 8 0 2 4 True
4 14 1 0 8 True
5 8 1 0 4 False
6 6 0 0 4 False
7 4 1 0 3 False
8 3 0 0 2 False
9 15 1 2 7 False ,
assists baronKills bountyLevel champLevel championName \
0 1 0 3 13 Jax
1 2 0 5 11 Khazix
2 1 0 5 13 Vayne
3 6 0 2 10 Sivir
4 7 0 1 9 Malphite
5 0 0 0 11 Darius
6 0 0 0 9 Graves
7 1 0 0 11 Yone
8 1 0 0 9 Jhin
9 3 0 0 8 Soraka
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 1880 1920 1880
1 61 11071 61
2 7215 10448 7215
3 1503 1503 1503
4 1532 1532 1532
5 2119 17760 2119
6 0 0 0
7 0 0 0
8 0 0 0
9 0 2877 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 1 0 0 False False
1 1 0 2 False False
2 1 0 0 False True
3 1 0 0 False False
4 0 1 0 False False
5 5 1 0 False False
6 6 0 0 False False
7 4 0 0 False False
8 2 0 0 False False
9 6 3 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 True False False
2 False True False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 7989 TOP 0
1 True 7809 JUNGLE 0
2 True 9606 MIDDLE 0
3 True 6143 BOTTOM 0
4 True 5147 UTILITY 0
5 True 6211 TOP 0
6 True 5487 JUNGLE 0
7 True 4529 MIDDLE 0
8 True 5209 BOTTOM 0
9 True 4298 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 2033 3078 1043 1036 0 3111 3340
1 0 2031 6691 3158 3134 1037 1018 3364
2 0 1055 1055 6672 3006 3046 0 3340
3 0 2055 3004 3134 1001 1036 1055 3340
4 0 3859 3145 1001 1028 1026 1052 3364
5 0 6631 1055 3047 1037 0 0 3340
6 0 2031 3006 6673 1036 0 0 3340
7 0 1036 3006 1053 1018 1042 1036 3340
8 0 6671 3009 0 0 0 1055 3340
9 0 3853 3158 4642 3067 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 4 3 1
1 2 8 5 1
2 2 8 5 2
3 1 2 2 1
4 0 1 0 1
5 0 1 0 1
6 0 1 0 1
7 0 1 0 1
8 0 1 0 1
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 662 13289 2461
1 485 5535 566
2 617 0 0
3 342 0 0
4 0 8757 4940
5 532 0 0
6 376 6117 256
7 418 5222 1337
8 483 1539 268
9 475 10536 3206
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 15 8 0 1
1 1430 92 0 0
2 1503 0 0 0
3 1669 0 0 0
4 1190 0 0 0
5 2534 15 0 0
6 3213 84 0 0
7 316 0 0 0
8 2291 0 0 0
9 1998 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 50431
1 0 2 70857
2 0 3 77459
3 0 4 49768
4 0 5 3984
5 0 6 71834
6 0 7 54906
7 0 8 31843
8 0 9 40823
9 0 10 2375
physicalDamageDealtToChampions physicalDamageTaken role \
0 5465 6890 SUPPORT
1 7458 12639 SUPPORT
2 12792 8689 SUPPORT
3 6061 2643 SUPPORT
4 1041 2560 SUPPORT
5 5074 9911 DUO
6 4610 11414 SUPPORT
7 4098 9290 SUPPORT
8 4163 5510 DUO
9 304 6436 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 4 2 12 213
1 1 4 9 11 294
2 2 4 3 7 67
3 0 4 1 7 87
4 2 14 0 4 219
5 3 4 3 6 306
6 10 11 3 4 114
7 3 4 1 12 49
8 1 7 1 4 84
9 3 14 3 4 156
summonerName teamEarlySurrendered teamId teamPosition \
0 Kiss Lollipop False 100 TOP
1 JamesLee41 False 100 JUNGLE
2 whadafck False 100 MIDDLE
3 BloodwingAK False 100 BOTTOM
4 Aeronychus False 100 UTILITY
5 Confetti Cannon False 200 TOP
6 Blink534 False 200 JUNGLE
7 Hughsus False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 Glorÿ False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 5 1152 69163 8031
1 3 1152 86481 8208
2 7 1152 90584 16579
3 0 1152 49933 6226
4 16 1152 17052 6249
5 9 1152 78491 5461
6 9 1152 67552 5097
7 7 1152 45055 6426
8 14 1152 44967 4431
9 16 1152 17943 3942
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 7503 1643 127 59
1 14205 9630 4 152
2 11198 4178 153 62
3 4364 934 103 0
4 4000 0 29 138
5 12603 1509 128 38
6 15686 3390 7 166
7 11613 569 68 54
8 8377 1193 109 44
9 9145 4117 10 129
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 30 1 5443
1 16 1 10089
2 30 1 13124
3 12 1 164
4 0 0 4310
5 119 1 6657
6 140 1 6529
7 96 1 7990
8 35 2 2605
9 106 5 5032
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 104 597 1 0
1 184 136 0 0
2 3787 1004 2 0
3 164 52 0 0
4 268 250 1 0
5 387 157 0 4
6 231 1059 0 4
7 990 2006 0 4
8 0 574 0 4
9 432 710 0 4
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 12 0 2 6 True
1 11 0 3 1 True
2 9 0 0 6 True
3 4 1 0 3 True
4 22 1 5 7 True
5 7 1 0 3 False
6 10 0 0 4 False
7 7 0 0 5 False
8 9 0 1 5 False
9 23 3 1 15 False ,
assists baronKills bountyLevel champLevel championName \
0 4 0 0 16 Tryndamere
1 5 0 0 18 Diana
2 7 0 0 16 Ekko
3 5 0 0 16 Samira
4 14 0 0 14 Thresh
5 6 0 4 17 Sett
6 21 0 1 16 Zac
7 11 1 0 17 Yone
8 10 1 0 16 Ezreal
9 19 0 0 15 Morgana
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 6796 19578 6796
1 1427 35020 1427
2 2057 3361 2057
3 3641 8337 3641
4 1450 2777 1450
5 8141 10827 8141
6 1108 12699 1108
7 1338 9844 1338
8 2225 18979 2225
9 1146 6408 1146
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 11 0 0 False False
1 4 1 2 False False
2 6 1 0 False False
3 8 0 1 True False
4 6 2 1 False True
5 6 1 0 False False
6 3 0 0 False False
7 11 0 0 False False
8 3 3 1 False False
9 11 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 11079 TOP 0
1 False 17757 JUNGLE 0
2 False 10829 MIDDLE 0
3 False 14561 BOTTOM 0
4 False 9850 UTILITY 0
5 False 16435 TOP 1
6 False 12906 JUNGLE 0
7 False 11329 MIDDLE 0
8 False 13503 BOTTOM 1
9 False 9922 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 2 3006 1054 6672 6675 1037 1018 3340
1 2 3135 3157 4636 3115 3020 3089 3364
2 2 3100 3152 2033 3191 1082 3020 3340
3 2 3033 6673 3006 6676 3036 1031 3340
4 2 3857 3050 3190 3117 3075 1028 3364
5 0 6630 3053 3158 3071 3077 1011 3340
6 0 3068 3065 3047 3076 3001 0 3363
7 0 1055 6673 3072 3006 1038 0 3340
8 0 3508 3158 6691 3074 3133 0 3340
9 0 3853 4005 3117 3157 3165 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 4 3 1
1 3 12 7 2
2 2 5 2 2
3 2 9 4 2
4 2 4 2 1
5 3 14 5 4
6 1 5 3 2
7 0 3 0 1
8 2 10 6 2
9 1 3 2 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 257 0 0
1 811 279603 25647
2 1091 93591 20652
3 726 9960 3182
4 907 21991 10005
5 972 1280 1280
6 1210 115697 21771
7 384 19903 3929
8 915 17847 7753
9 454 31486 10028
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 8661 44 1 0
1 10546 247 1 0
2 10518 8 1 0
3 9472 4 1 0
4 9245 4 1 0
5 18673 8 0 0
6 15141 104 0 0
7 11248 8 0 0
8 6601 20 0 0
9 11806 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 163750
1 0 2 45386
2 0 3 17908
3 0 4 130648
4 0 5 11318
5 0 6 142300
6 0 7 18479
7 0 8 103479
8 0 9 115835
9 0 10 2668
physicalDamageDealtToChampions physicalDamageTaken role \
0 14809 22490 SOLO
1 3087 15729 NONE
2 2519 13291 SOLO
3 22798 12330 CARRY
4 2182 8828 SUPPORT
5 24899 28872 SOLO
6 1622 24371 NONE
7 8830 14088 SOLO
8 10014 7323 CARRY
9 439 9188 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 6 3 4 190
1 15 11 3 4 98
2 4 14 4 4 98
3 6 3 5 4 150
4 5 14 4 4 125
5 4 4 3 12 182
6 3 4 22 11 180
7 4 4 4 14 177
8 4 7 3 4 178
9 1 14 5 4 83
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 TheHyperSkillz False 100 TOP 5
1 MwistaFista False 100 JUNGLE 13
2 GARC1AS False 100 MIDDLE 31
3 Bong Bon Jovi False 100 BOTTOM 5
4 Ryanorfeed False 100 UTILITY 49
5 Mèliòdas False 200 TOP 40
6 Coolgum15 False 200 JUNGLE 58
7 Antpunisher False 200 MIDDLE 17
8 Thick2BThighs False 200 BOTTOM 0
9 Dublaiar False 200 UTILITY 45
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 2080 178192 15615
1 2080 337707 29777
2 2080 112845 24517
3 2080 156282 28308
4 2080 38496 13098
5 2080 165728 39122
6 2080 142791 25597
7 2080 142330 14342
8 2080 136775 17799
9 2080 34280 10593
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 34763 6469 138 108
1 28009 11858 68 310
2 28504 6652 139 335
3 22682 4349 221 49
4 23318 3041 40 121
5 48959 8687 203 173
6 44218 41573 31 496
7 25822 4368 162 109
8 14081 3835 155 17
9 21651 2559 30 69
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 313 1 14441
1 199 1 12718
2 217 1 1345
3 260 1 15673
4 193 5 5186
5 272 1 22147
6 138 5 8614
7 385 1 18947
8 118 3 3093
9 288 1 126
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 806 3610 2 6
1 1042 1733 1 6
2 1345 4694 1 6
3 2326 879 2 6
4 911 5244 1 6
5 12942 1413 3 7
6 2204 4705 1 7
7 1582 484 0 7
8 32 156 1 7
9 126 656 0 7
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 20 0 2 12 False
1 27 1 1 2 False
2 27 3 0 10 False
3 22 0 2 12 False
4 38 2 2 19 False
5 22 1 1 12 True
6 10 0 1 6 True
7 6 0 0 4 True
8 29 4 3 13 True
9 44 0 6 17 True ,
assists baronKills bountyLevel champLevel championName \
0 4 1 0 15 LeeSin
1 14 0 0 15 Zac
2 11 0 0 16 Malzahar
3 7 0 4 14 Samira
4 18 0 0 14 Thresh
5 4 0 0 16 Camille
6 2 0 0 12 Kayn
7 3 0 0 14 Talon
8 5 0 2 13 Jhin
9 8 0 1 13 Xerath
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3988 6166 3988
1 2069 12315 2069
2 2800 11403 2800
3 2711 9943 2711
4 1508 2491 1508
5 4203 4203 4203
6 0 8852 0
7 0 0 0
8 1797 5601 1797
9 1672 2901 1672
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 8 0 0 False False
1 1 2 2 False False
2 2 0 0 False False
3 7 1 0 False False
4 7 1 0 False False
5 5 1 0 True False
6 4 1 1 False True
7 8 1 0 False False
8 5 0 1 False False
9 7 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False True False
9 True False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 9635 TOP 0
1 True 9903 JUNGLE 0
2 True 13523 MIDDLE 1
3 True 12028 BOTTOM 0
4 True 7940 UTILITY 0
5 True 11774 TOP 0
6 True 7150 JUNGLE 0
7 True 8898 MIDDLE 0
8 True 11671 BOTTOM 0
9 True 9638 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 6630 1055 3053 3047 1036 0 3340
1 0 3047 3068 3075 0 0 0 3364
2 0 3116 6653 3040 3020 1026 1011 3340
3 0 6673 3006 6676 1038 1055 0 3340
4 0 3190 3117 3857 2055 3050 1029 3364
5 1 3111 3078 3074 1037 1031 3044 3340
6 1 6693 1036 3111 1018 1036 1028 3340
7 1 3158 6693 6695 3134 1036 1028 3340
8 1 1055 6671 3009 6676 3086 2015 3340
9 1 3853 6655 3020 4628 3916 0 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 2 5 2 2
1 0 1 0 1
2 1 11 11 3
3 3 11 4 3
4 0 1 0 1
5 1 9 6 2
6 0 1 0 1
7 1 4 2 1
8 2 5 2 2
9 2 6 3 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 430 25012 2206
1 944 99929 7354
2 1004 147404 27775
3 453 7474 3648
4 385 10475 3846
5 1135 1181 1181
6 1248 6699 0
7 859 0 0
8 939 2976 684
9 854 61449 23717
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 3681 4 0 0
1 5819 124 0 0
2 2781 0 0 0
3 6970 16 0 0
4 8951 0 0 0
5 9264 0 0 0
6 9174 96 0 0
7 12056 8 0 0
8 8353 19 0 0
9 7729 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 49075
1 0 2 19524
2 0 3 13462
3 0 4 66336
4 0 5 3991
5 0 6 100726
6 0 7 89411
7 0 8 93723
8 0 9 105992
9 0 10 3157
physicalDamageDealtToChampions physicalDamageTaken role \
0 7738 14869 SOLO
1 959 15738 NONE
2 1366 9434 SOLO
3 13630 11947 CARRY
4 296 7750 SUPPORT
5 11672 12850 SOLO
6 2429 13180 NONE
7 9892 8634 SOLO
8 9043 7605 CARRY
9 406 4283 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 12 5 14 85
1 3 4 18 11 180
2 4 4 3 12 95
3 3 7 3 4 178
4 2 14 2 4 83
5 2 12 2 4 202
6 9 11 3 4 67
7 4 4 4 14 180
8 3 4 3 7 140
9 4 4 5 21 124
summonerName teamEarlySurrendered teamId teamPosition \
0 StrugglingMuffin False 100 TOP
1 Coolgum15 False 100 JUNGLE
2 fetsnorlax False 100 MIDDLE
3 Thick2BThighs False 100 BOTTOM
4 Dublaiar False 100 UTILITY
5 ANTIVAX DADDY420 False 200 TOP
6 5cc False 200 JUNGLE
7 qwerto False 200 MIDDLE
8 Jaegerin False 200 BOTTOM
9 10tactreB False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 9 1800 77121 10593
1 28 1800 129379 9247
2 47 1800 160866 29141
3 2 1800 76212 17784
4 24 1800 18666 4345
5 17 1800 116729 14882
6 8 1800 100398 3147
7 2 1800 94239 10408
8 6 1800 118602 9769
9 31 1800 68654 24476
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 22223 3970 111 134
1 23594 33892 23 429
2 12610 1650 212 341
3 19378 4504 89 22
4 19224 1209 32 55
5 23585 3918 201 97
6 22440 9773 15 190
7 20951 1861 147 140
8 16079 3791 155 45
9 12231 240 36 160
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 187 1 3034
1 27 5 9925
2 30 1 0
3 196 2 2400
4 135 4 4198
5 181 1 14822
6 107 1 4287
7 259 1 516
8 182 2 9633
9 257 1 4047
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 649 3672 2 3
1 933 2035 1 3
2 0 395 1 3
3 504 460 3 3
4 202 2522 0 3
5 2028 1471 0 7
6 717 86 0 7
7 516 260 0 7
8 41 120 1 7
9 352 218 1 7
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 7 0 0 8 True
1 21 2 2 6 True
2 13 0 1 8 True
3 18 1 1 9 True
4 28 2 3 11 True
5 19 1 1 9 False
6 16 1 0 9 False
7 22 1 2 9 False
8 4 0 0 2 False
9 29 0 1 14 False ,
assists baronKills bountyLevel champLevel championName \
0 0 0 1 12 Heimerdinger
1 7 0 1 11 Shyvana
2 5 0 5 12 Irelia
3 6 0 6 10 Vayne
4 7 0 1 8 Soraka
5 1 0 0 10 Garen
6 3 0 0 8 Kayn
7 1 0 0 10 Viego
8 0 0 0 9 Jhin
9 5 0 0 9 Thresh
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2295 2295 2295
1 0 12141 0
2 2407 7309 2407
3 1392 4917 1392
4 0 119 0
5 178 5978 178
6 0 9775 0
7 1755 1755 1755
8 2726 3861 2726
9 109 109 109
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 2 0 0 False False
1 5 0 2 False False
2 1 0 0 False True
3 2 0 0 False False
4 3 1 0 False False
5 3 0 0 False False
6 5 0 0 False False
7 5 0 0 False False
8 3 0 0 False False
9 3 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False True False
3 True False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 6279 TOP 0
1 True 6925 JUNGLE 0
2 True 9024 MIDDLE 0
3 True 7228 BOTTOM 0
4 True 4007 UTILITY 0
5 True 4966 TOP 0
6 True 4756 JUNGLE 0
7 True 4715 MIDDLE 0
8 True 6905 BOTTOM 0
9 True 4175 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3070 6653 3020 1052 0 0 3340
1 0 3020 2031 4636 1042 0 0 3364
2 0 1055 3153 3047 6670 1036 0 3340
3 0 1055 6672 3006 0 0 0 3513
4 0 6617 1001 0 3851 0 0 3364
5 0 1054 2031 3051 3067 3006 1037 3340
6 0 6630 1001 1029 2031 0 0 3340
7 0 1037 3123 1001 1053 1043 1055 3340
8 0 3009 6671 1055 3134 3123 0 3340
9 0 3855 1033 2055 3117 1029 3067 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 2 0 1
1 0 3 0 1
2 2 7 5 1
3 1 6 6 3
4 0 1 0 1
5 1 3 3 1
6 0 1 0 1
7 0 1 0 1
8 1 7 7 2
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 405 57426 10927
1 247 62875 8189
2 255 8176 3331
3 209 0 0
4 334 4664 1956
5 793 0 0
6 660 4067 0
7 419 1101 699
8 787 3791 837
9 474 4980 2737
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 199 0 0 0
1 2182 99 0 1
2 1058 8 0 0
3 723 8 0 0
4 949 0 0 0
5 8922 0 0 0
6 3197 60 0 0
7 6520 0 0 0
8 2558 0 0 0
9 4062 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 12745
1 0 2 23574
2 0 3 68083
3 0 4 36638
4 0 5 356
5 0 6 41616
6 0 7 42627
7 0 8 41095
8 0 9 50045
9 0 10 2344
physicalDamageDealtToChampions physicalDamageTaken role \
0 1575 5565 SUPPORT
1 1166 15412 SUPPORT
2 10382 9122 DUO
3 6271 6098 SUPPORT
4 109 2604 SUPPORT
5 3730 5689 SUPPORT
6 3507 12457 SUPPORT
7 3508 5555 SUPPORT
8 6788 3876 DUO
9 709 3274 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 12 1 4 45
1 11 11 4 6 87
2 2 4 4 14 431
3 3 7 3 4 117
4 1 14 0 4 86
5 3 4 4 14 177
6 9 11 1 4 83
7 3 4 3 14 35
8 3 7 2 4 178
9 2 4 3 14 180
summonerName teamEarlySurrendered teamId teamPosition \
0 Face Your Fears False 100 TOP
1 IgnisLuna False 100 JUNGLE
2 Daisuke423 False 100 MIDDLE
3 Gank Please False 100 BOTTOM
4 CoralCoffeee False 100 UTILITY
5 PinkPocket False 200 TOP
6 Dublaiar False 200 JUNGLE
7 naxpsq False 200 MIDDLE
8 Thick2BThighs False 200 BOTTOM
9 Coolgum15 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 18 1069 75896 12503
1 3 1069 97523 9562
2 11 1069 78534 14125
3 8 1069 46039 8062
4 18 1069 5233 2278
5 7 1069 49858 5166
6 6 1069 54858 3781
7 5 1069 42592 4603
8 5 1069 53837 7626
9 19 1069 9311 3822
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 6160 276 108 210
1 18729 5118 29 162
2 10649 3485 123 40
3 7307 2746 78 12
4 3553 5931 5 85
5 15020 569 69 171
6 16251 5226 10 167
7 12342 1756 70 38
8 6796 1842 100 65
9 8325 113 19 57
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 48 1 5725
1 102 1 11074
2 14 1 2275
3 20 2 9401
4 42 5 212
5 62 1 8241
6 90 1 8164
7 71 1 396
8 55 2 0
9 35 2 1986
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 395 1 1
1 206 1133 0 1
2 412 468 1 1
3 1791 485 0 1
4 212 0 0 1
5 1436 408 0 2
6 274 596 0 2
7 396 266 0 2
8 0 361 1 2
9 376 989 0 2
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 7 0 0 5 True
1 7 0 1 1 True
2 8 0 0 5 True
3 7 0 0 3 True
4 13 1 1 6 True
5 4 0 0 4 False
6 5 0 0 3 False
7 5 0 0 3 False
8 7 0 0 5 False
9 10 1 0 7 False ,
assists baronKills bountyLevel champLevel championName \
0 1 0 0 12 Nasus
1 4 0 0 10 Rammus
2 3 0 0 10 Ekko
3 5 0 0 9 Alistar
4 1 0 0 11 MissFortune
5 6 0 2 12 Malphite
6 9 0 10 14 Kayn
7 5 0 2 12 Pantheon
8 6 0 2 12 Tristana
9 11 0 1 10 Morgana
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 4452 7712 4452
1 76 10754 76
2 573 3150 573
3 200 3897 200
4 1804 4465 1804
5 4173 6186 4173
6 871 12870 871
7 1083 2827 1083
8 9893 15363 9893
9 845 2746 845
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 3 0 0 False False
1 6 1 0 False False
2 7 0 0 False False
3 8 2 0 False False
4 6 3 1 False False
5 1 1 0 False False
6 0 1 1 False False
7 6 0 0 False True
8 1 0 1 False False
9 2 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False True False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 8006 TOP 0
1 True 6680 JUNGLE 0
2 True 5226 MIDDLE 0
3 True 5114 BOTTOM 0
4 True 6554 BOTTOM 0
5 True 7455 TOP 0
6 True 11675 JUNGLE 0
7 True 8977 MIDDLE 0
8 True 10324 BOTTOM 0
9 True 6155 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1054 6632 3158 3067 3082 1029 3340
1 0 6664 3076 3009 1011 0 0 3364
2 0 3152 3020 1042 2033 0 0 3340
3 0 3860 3190 3117 1031 0 0 3364
4 0 3070 6671 3047 1036 0 0 3340
5 0 2033 2055 6662 3075 3047 0 3340
6 0 3158 3071 6630 3134 1037 0 3364
7 0 1055 3158 6631 3748 0 0 3340
8 0 1055 6672 3006 3046 3035 0 3340
9 0 2423 3853 2010 6653 3020 3191 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 2 0 1
1 1 3 3 2
2 0 2 0 1
3 0 1 0 1
4 0 2 0 1
5 1 3 2 2
6 1 10 10 3
7 4 11 4 3
8 2 5 3 2
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 677 13652 3457
1 484 36908 6480
2 290 38104 9359
3 488 12795 5233
4 689 2985 825
5 600 43837 9606
6 0 6758 0
7 483 3725 1019
8 738 16154 1384
9 488 12954 7444
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 8069 4 0 0
1 1807 56 0 0
2 2107 0 0 0
3 4104 0 0 0
4 3521 4 0 0
5 4456 4 0 0
6 8036 147 0 0
7 7784 12 0 0
8 4603 8 0 0
9 3314 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 62173
1 0 2 13963
2 0 3 7254
3 0 4 5141
4 0 5 60605
5 0 6 22838
6 0 7 146737
7 0 8 64220
8 0 9 83386
9 0 10 1329
physicalDamageDealtToChampions physicalDamageTaken role \
0 5279 8713 SOLO
1 2181 15805 NONE
2 715 12360 SOLO
3 1211 15206 SUPPORT
4 4847 7742 CARRY
5 2499 5988 DUO
6 15010 15291 NONE
7 16629 9856 DUO
8 10026 5093 CARRY
9 653 3368 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 4 2 12 19
1 5 6 14 11 16
2 3 14 3 4 83
3 5 14 3 4 186
4 2 4 3 7 29
5 1 12 2 4 123
6 3 4 11 11 11
7 4 14 3 4 103
8 3 4 3 7 20
9 1 4 2 3 38
summonerName teamEarlySurrendered teamId teamPosition \
0 RyeBreadPitt False 100 TOP
1 IDespiseYouAll False 100 JUNGLE
2 Dublaiar False 100 MIDDLE
3 barebonesboyan False 100 UTILITY
4 Rengashiro False 100 BOTTOM
5 Actuallee907 False 200 TOP
6 Sanchonies False 200 JUNGLE
7 cryptonn False 200 MIDDLE
8 PrincessMelanee False 200 BOTTOM
9 chenaquito False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 14 1341 75826 8736
1 30 1341 62286 9061
2 14 1341 45580 10297
3 41 1341 27499 7211
4 4 1341 65475 5673
5 29 1341 72025 12105
6 23 1341 163887 15890
7 24 1341 69364 18068
8 1 1341 106782 13009
9 34 1341 14284 8097
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 17152 1579 138 96
1 18592 4702 9 416
2 15025 1361 63 192
3 19882 5647 27 99
4 11684 1161 133 89
5 10445 2759 117 584
6 23824 15854 42 401
7 18215 2033 82 85
8 9856 5034 155 11
9 6841 1412 4 52
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 81 1 0
1 123 4 11414
2 163 1 222
3 191 5 9562
4 130 2 1885
5 21 1 5349
6 0 1 10391
7 181 1 1417
8 27 2 7242
9 35 1 0
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 369 2 6
1 400 979 0 6
2 222 558 0 6
3 766 571 0 6
4 0 420 0 6
5 0 0 0 2
6 880 496 1 2
7 420 574 0 2
8 1598 160 3 2
9 0 158 0 2
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 8 0 0 5 False
1 10 1 2 1 False
2 9 0 0 6 False
3 25 2 1 10 False
4 18 3 1 9 False
5 12 3 0 7 True
6 8 1 0 2 True
7 10 0 1 5 True
8 5 0 0 4 True
9 31 1 2 13 True ,
assists baronKills bountyLevel champLevel championName \
0 3 0 0 10 Ezreal
1 3 0 0 9 XinZhao
2 0 0 0 10 Katarina
3 2 0 0 8 Akali
4 4 0 0 9 Karma
5 2 0 6 13 Irelia
6 4 0 1 10 Khazix
7 5 0 0 10 Ekko
8 2 0 2 9 Tristana
9 7 0 0 9 Soraka
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2597 3464 2597
1 0 6723 0
2 577 2845 577
3 0 0 0
4 1128 2380 1128
5 3417 3417 3417
6 1031 9350 1031
7 413 7364 413
8 2233 2233 2233
9 788 6519 788
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 2 1 0 False False
1 4 1 1 False False
2 1 0 0 False False
3 6 1 0 False True
4 2 0 0 False False
5 2 0 0 False False
6 3 2 1 False False
7 3 0 1 False False
8 2 2 0 False False
9 3 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 True False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 7160 BOTTOM 0
1 True 6038 JUNGLE 0
2 True 5014 MIDDLE 0
3 True 4469 TOP 0
4 True 5218 UTILITY 0
5 True 9912 TOP 0
6 True 5493 JUNGLE 0
7 True 5966 MIDDLE 0
8 True 5567 BOTTOM 0
9 True 4340 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1055 3158 3508 3070 3134 3133 3364
1 0 2031 6673 3006 1036 1036 0 3364
2 0 1082 2031 3020 1028 3145 1026 3340
3 0 1054 4633 2055 0 0 0 3340
4 0 3851 2065 0 3158 1004 0 3340
5 0 1055 3153 3047 6673 6677 1018 3340
6 0 6691 2031 0 0 1001 2055 3364
7 0 3152 3020 1043 2033 0 0 3340
8 0 6672 1055 2033 1001 0 0 3340
9 0 3851 1001 6617 2055 1006 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 5 4 1
1 1 4 2 2
2 1 2 2 1
3 0 1 0 1
4 0 1 0 1
5 2 9 6 2
6 0 1 0 1
7 1 3 3 2
8 1 2 2 1
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 996 8908 4875
1 423 5334 743
2 771 37466 4263
3 281 19278 5361
4 883 19867 2984
5 403 11982 3638
6 434 6076 127
7 624 38912 4270
8 645 10241 146
9 348 9132 2169
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 2490 0 0 0
1 3239 42 0 0
2 1705 0 0 0
3 1520 0 0 0
4 1626 0 0 0
5 6154 8 0 0
6 5164 76 0 0
7 3658 8 0 0
8 2409 0 0 0
9 1904 8 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 43659
1 0 2 29686
2 0 3 3469
3 0 4 5703
4 0 5 3727
5 0 6 79873
6 0 7 56538
7 0 8 7585
8 0 9 26770
9 0 10 4080
physicalDamageDealtToChampions physicalDamageTaken role \
0 7417 4726 DUO
1 6207 9446 SUPPORT
2 155 3171 SUPPORT
3 1011 7703 SUPPORT
4 520 3098 SUPPORT
5 9878 9872 DUO
6 3032 11257 SUPPORT
7 853 6802 SUPPORT
8 3303 4086 SUPPORT
9 161 2677 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 2 7 196
1 2 4 7 11 86
2 1 4 0 14 40
3 2 12 2 14 76
4 3 14 1 4 180
5 4 14 3 4 48
6 3 4 10 11 48
7 2 14 2 4 83
8 2 7 3 4 44
9 2 4 0 14 96
summonerName teamEarlySurrendered teamId teamPosition \
0 DemonCrew False 100 BOTTOM
1 ProfPon False 100 JUNGLE
2 xGreySwag False 100 MIDDLE
3 TankMan665 False 100 TOP
4 Zsoik False 100 UTILITY
5 uridabeast5 False 200 TOP
6 Monsieurpaupaul False 200 JUNGLE
7 Dublaiar False 200 MIDDLE
8 unrealread False 200 BOTTOM
9 atarana False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 0 1149 52568 12293
1 9 1149 43627 7009
2 0 1149 48344 4419
3 0 1149 25129 6520
4 8 1149 23891 3801
5 9 1149 92867 13729
6 0 1149 67824 3219
7 6 1149 49042 5387
8 0 1149 47780 3547
9 14 1149 15492 2331
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 7314 1507 108 0
1 12719 4311 11 168
2 5156 585 86 0
3 9391 592 55 25
4 4778 158 27 119
5 16175 4293 136 48
6 16421 7699 7 42
7 10503 848 79 144
8 6807 983 86 11
9 4582 7047 3 110
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 32 2 0
1 87 1 8607
2 30 1 7408
3 116 1 148
4 48 1 295
5 33 1 1012
6 60 1 5209
7 46 1 2544
8 48 2 10768
9 38 5 2280
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 96 0 3
1 58 34 0 3
2 0 280 0 3
3 148 168 0 3
4 295 54 1 3
5 212 148 1 1
6 60 0 0 1
7 264 42 0 1
8 96 311 2 1
9 0 0 0 1
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 13 1 1 4 False
1 7 1 2 2 False
2 6 0 0 4 False
3 5 2 0 4 False
4 16 0 2 9 False
5 7 0 0 5 True
6 6 3 1 2 True
7 8 0 0 6 True
8 9 2 1 5 True
9 8 2 0 5 True ,
assists baronKills bountyLevel champLevel championName \
0 4 0 5 13 Nocturne
1 5 0 5 13 XinZhao
2 12 0 4 13 Ekko
3 6 0 0 12 Samira
4 15 0 2 10 Thresh
5 1 0 0 11 TahmKench
6 0 0 0 10 MasterYi
7 1 0 0 11 Vladimir
8 1 0 1 11 Jhin
9 4 0 0 10 Brand
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 5706 18738 5706
1 828 20319 828
2 1783 2043 1783
3 4004 5639 4004
4 1707 1707 1707
5 0 0 0
6 0 6446 0
7 0 0 0
8 2541 3016 2541
9 698 1238 698
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 1 2 0 False True
1 2 7 3 True False
2 0 0 0 True False
3 3 1 0 False False
4 1 0 0 False False
5 6 1 0 False False
6 9 0 1 False False
7 5 0 0 False False
8 3 2 0 False False
9 8 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False True False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 9004 TOP 0
1 True 9517 JUNGLE 0
2 True 8101 MIDDLE 0
3 True 9186 BOTTOM 0
4 True 6246 UTILITY 0
5 True 5189 TOP 0
6 True 5906 JUNGLE 0
7 True 5801 MIDDLE 0
8 True 8835 BOTTOM 0
9 True 6233 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 2033 6693 3181 3006 0 0 3340
1 0 6672 2031 3153 0 3006 0 3364
2 0 3152 3020 1043 2033 1026 1052 3340
3 0 6673 3006 6676 1036 1036 1055 3340
4 0 3855 3190 2031 3117 3067 3024 3364
5 0 1054 3075 3047 1028 0 0 3340
6 0 2031 6691 1036 1036 3006 0 3340
7 0 3152 2031 1082 3020 0 0 3340
8 0 2055 6671 1018 1055 3134 3009 3363
9 0 2003 3853 6653 3020 1026 0 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 2 8 5 1
1 2 9 5 1
2 1 4 4 2
3 1 8 7 1
4 1 2 2 1
5 0 0 0 0
6 0 1 0 1
7 0 1 0 1
8 1 4 2 1
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 566 1000 896
1 437 8988 833
2 0 57768 9098
3 877 4242 1787
4 551 7387 5094
5 387 25387 6810
6 274 4902 0
7 448 24000 2734
8 394 2886 767
9 497 47116 14314
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 6987 12 0 0
1 7201 120 0 0
2 2910 0 0 0
3 4959 4 0 0
4 3733 0 0 0
5 4879 0 0 0
6 4538 98 0 0
7 4032 0 0 0
8 2567 0 0 0
9 2911 1 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 84427
1 0 2 96418
2 0 3 11910
3 0 4 56726
4 0 5 5471
5 0 6 14817
6 0 7 68941
7 0 8 13442
8 0 9 70251
9 0 10 3881
physicalDamageDealtToChampions physicalDamageTaken role \
0 12461 6846 SOLO
1 11663 15571 NONE
2 1456 6213 SOLO
3 10933 5541 CARRY
4 1123 3693 SUPPORT
5 2033 14719 SOLO
6 6376 13806 NONE
7 290 8335 SOLO
8 9649 6512 CARRY
9 325 8292 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 1 12 2 4 101
1 9 11 4 4 265
2 4 14 2 4 83
3 4 7 3 4 178
4 1 4 4 14 180
5 3 14 4 4 159
6 5 11 2 4 52
7 0 12 0 4 27
8 3 4 3 7 80
9 3 14 3 4 122
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 Erratan False 100 TOP 89
1 Lady Luk False 100 JUNGLE 19
2 Dublaiar False 100 MIDDLE 20
3 Thick2BThighs False 100 BOTTOM 2
4 Coolgum15 False 100 UTILITY 32
5 Goon Kench False 200 TOP 22
6 toddkman11 False 200 JUNGLE 4
7 BigShaft69 False 200 MIDDLE 1
8 Minter34 False 200 BOTTOM 19
9 Tinymexican False 200 UTILITY 10
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1418 90393 13851
1 1418 119258 13430
2 1418 72802 10838
3 1418 62160 12957
4 1418 16033 6850
5 1418 44245 9534
6 1418 83632 7688
7 1418 37443 3025
8 1418 75832 10506
9 1418 55688 15100
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 14936 8249 101 209
1 23559 12975 13 423
2 9469 2982 131 195
3 10591 2973 122 45
4 7653 1884 21 91
5 20513 3044 93 135
6 18684 4881 11 56
7 12690 5148 74 87
8 9819 3123 133 63
9 11465 1177 35 18
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 27 1 4965
1 39 1 13851
2 0 1 3124
3 30 2 1192
4 16 5 3174
5 167 1 4040
6 237 1 9788
7 148 1 0
8 62 3 2695
9 169 1 4690
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 493 1103 3 1
1 933 786 1 1
2 284 345 0 1
3 236 90 1 1
4 632 226 0 1
5 690 914 0 5
6 1311 340 0 5
7 0 323 0 5
8 90 740 1 5
9 460 261 0 5
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 19 2 1 9 True
1 29 8 4 11 True
2 11 0 0 7 True
3 13 1 1 7 True
4 18 2 2 9 True
5 7 1 0 5 False
6 13 0 0 5 False
7 12 0 1 6 False
8 12 3 0 5 False
9 28 0 1 19 False ,
assists baronKills bountyLevel champLevel championName \
0 0 0 0 10 Gwen
1 2 0 2 10 Zac
2 2 0 0 12 Ekko
3 4 0 0 9 Jinx
4 4 0 0 9 Lulu
5 4 0 6 12 MonkeyKing
6 5 0 3 12 Volibear
7 2 0 0 12 Sylas
8 3 0 2 10 Samira
9 6 0 1 10 Taric
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 0 174 0
1 0 2220 0
2 1639 2441 1639
3 1278 2124 1278
4 522 522 522
5 1335 8275 1335
6 663 29066 663
7 808 1901 808
8 2487 3868 2487
9 906 1654 906
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 6 0 0 False False
1 0 0 1 False False
2 1 0 0 False False
3 5 1 0 False False
4 4 1 0 False False
5 0 2 0 False True
6 0 0 2 False False
7 3 1 0 False False
8 3 0 0 False False
9 1 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 True False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 4255 TOP 0
1 True 5868 JUNGLE 0
2 True 6631 MIDDLE 0
3 True 5251 BOTTOM 0
4 True 4820 UTILITY 0
5 True 8158 TOP 0
6 True 8691 JUNGLE 0
7 True 5641 MIDDLE 0
8 True 7636 BOTTOM 0
9 True 5790 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 4635 3047 1026 0 0 1055 3340
1 0 3068 2031 3047 3076 0 0 3340
2 0 3152 1056 3916 1082 1028 3020 3340
3 0 1018 6670 3006 3123 1037 0 3340
4 0 3853 3158 6617 1052 2055 0 3364
5 0 1054 6632 3111 3067 3133 1036 3340
6 0 3047 1028 6662 3076 1057 1036 3364
7 0 4633 3158 3070 1036 1082 0 3340
8 0 1055 6673 1038 3006 1053 2003 3340
9 0 3859 2003 3190 3067 1027 3111 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 0 1 0 1
1 1 2 2 1
2 1 3 3 2
3 0 0 0 0
4 0 1 0 1
5 1 6 6 1
6 1 3 3 1
7 0 0 0 0
8 2 4 2 1
9 1 3 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 361 6824 1182
1 0 60009 5916
2 849 52567 7430
3 327 1079 449
4 505 5594 3023
5 0 6915 1464
6 0 61952 2496
7 502 34367 4505
8 329 6570 1271
9 631 8559 2580
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 2699 0 0 0
1 3608 85 0 1
2 3816 0 0 0
3 2011 0 0 0
4 1554 0 0 0
5 2613 15 0 0
6 2855 112 0 0
7 6200 8 0 0
8 3349 8 0 0
9 4188 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 7926
1 0 2 13425
2 0 3 11438
3 0 4 57708
4 0 5 712
5 0 6 43482
6 0 7 50797
7 0 8 9942
8 0 9 68693
9 0 10 4189
physicalDamageDealtToChampions physicalDamageTaken role \
0 622 7600 SOLO
1 637 9509 NONE
2 1156 5167 SOLO
3 7083 7188 CARRY
4 401 5468 SUPPORT
5 7694 4720 SOLO
6 4965 7926 NONE
7 105 5803 SOLO
8 10026 8687 CARRY
9 1184 3923 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 12 3 4 83
1 2 4 12 11 180
2 3 14 3 4 217
3 3 4 4 7 166
4 3 3 2 4 178
5 5 14 1 4 94
6 13 11 2 4 120
7 2 4 2 14 142
8 3 7 3 4 35
9 4 14 2 4 61
summonerName teamEarlySurrendered teamId teamPosition \
0 Dublaiar False 100 TOP
1 Coolgum15 False 100 JUNGLE
2 Mrjayarh False 100 MIDDLE
3 calzeld False 100 BOTTOM
4 Thick2BThighs False 100 UTILITY
5 MoroccanGemsbok False 200 TOP
6 BiggaLazyBear False 200 JUNGLE
7 KillaBoogie False 200 MIDDLE
8 Give me Luxanna False 200 BOTTOM
9 SofaTheFish False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1 1235 18744 2622
1 23 1235 80151 6821
2 12 1235 64715 9296
3 15 1235 61282 7532
4 21 1235 6306 3425
5 8 1235 52321 9840
6 15 1235 139684 8251
7 7 1235 56285 5070
8 0 1235 79138 11298
9 17 1235 17031 4453
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 10662 983 54 25
1 14086 17433 16 329
2 9763 3356 110 228
3 9367 2105 103 31
4 7363 711 11 130
5 8164 2118 94 34
6 11020 6941 60 787
7 12555 2727 93 153
8 12036 2761 136 1
9 8288 5137 18 46
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 142 1 3993
1 0 5 6716
2 32 1 710
3 117 3 2495
4 80 3 0
5 0 1 1923
6 0 1 26934
7 84 1 11975
8 60 3 3875
9 16 5 4282
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 817 362 0 3
1 268 969 0 3
2 710 780 0 3
3 0 168 0 3
4 0 340 0 3
5 682 829 1 0
6 789 238 1 0
7 460 552 0 0
8 0 0 1 0
9 687 176 0 0
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 10 0 0 6 False
1 9 0 0 5 False
2 9 0 0 5 False
3 14 1 0 7 False
4 18 2 2 9 False
5 19 2 0 8 True
6 12 0 2 1 True
7 19 1 0 7 True
8 9 0 0 6 True
9 13 0 1 7 True ,
assists baronKills bountyLevel champLevel championName \
0 6 0 0 18 Ryze
1 8 0 2 16 Viego
2 10 1 0 16 Neeko
3 15 0 2 15 Jhin
4 6 0 2 13 Ahri
5 5 0 0 16 Mordekaiser
6 5 0 0 14 Kayn
7 8 0 0 14 Quinn
8 5 0 0 13 Ezreal
9 11 0 0 12 Nautilus
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 9854 16195 9854
1 1543 40681 1543
2 1409 13807 1409
3 613 9732 613
4 606 4016 606
5 4438 6946 4438
6 0 3020 0
7 8234 10575 8234
8 1554 5200 1554
9 0 2664 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 2 1 0 False False
1 5 1 3 False False
2 3 0 0 False True
3 5 0 0 False False
4 5 1 1 False False
5 3 1 0 False False
6 10 2 0 False False
7 7 0 0 False False
8 5 0 0 False False
9 9 4 1 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 True False False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 14861 TOP 0
1 True 13374 JUNGLE 1
2 True 12646 MIDDLE 0
3 True 11711 BOTTOM 0
4 True 8243 UTILITY 0
5 True 12398 TOP 0
6 True 13028 JUNGLE 0
7 True 9258 MIDDLE 0
8 True 10370 BOTTOM 0
9 True 6914 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3040 6656 2420 3165 3020 3089 3340
1 0 6672 3153 3006 6333 1031 0 3364
2 0 3157 3020 0 6655 4628 4630 3340
3 0 6671 3009 3094 6676 1036 0 3340
4 0 6656 2031 3853 3020 4629 0 3364
5 1 2031 2421 4633 4637 1054 3111 3340
6 1 3042 6676 6693 3158 3134 1028 3364
7 1 3006 3181 6671 1042 0 0 3340
8 1 3042 3508 3158 3133 3134 1055 3340
9 1 3860 3047 3068 1033 1029 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 3 3 1
1 2 8 4 1
2 2 10 6 2
3 3 9 3 1
4 1 3 2 1
5 1 5 3 1
6 3 8 3 2
7 0 1 0 1
8 2 5 2 1
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 1039 245958 13815
1 1119 13635 1458
2 1116 97359 25270
3 488 8116 2159
4 746 13689 5153
5 1362 116428 13505
6 495 8782 1788
7 538 0 0
8 859 11254 3455
9 501 11477 5812
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 4812 19 0 0
1 7732 167 0 0
2 5288 10 0 0
3 4864 4 0 0
4 4380 4 0 0
5 11744 8 0 0
6 11130 128 0 0
7 10096 0 0 0
8 7358 4 0 0
9 9739 4 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 12603
1 0 2 150718
2 0 3 20340
3 0 4 97926
4 0 5 5859
5 0 6 18692
6 0 7 130730
7 0 8 105568
8 0 9 88932
9 0 10 6387
physicalDamageDealtToChampions physicalDamageTaken role \
0 836 7851 SOLO
1 7724 23430 NONE
2 1406 8975 SOLO
3 19120 10271 CARRY
4 550 6897 SUPPORT
5 1618 11897 SOLO
6 13072 19423 NONE
7 8225 6080 SOLO
8 8051 7421 CARRY
9 1488 8618 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 4 4 12 331
1 10 11 2 4 94
2 4 4 6 14 147
3 5 7 3 4 149
4 3 3 1 4 57
5 4 4 3 12 179
6 13 11 3 4 112
7 4 14 4 4 90
8 4 7 3 4 83
9 5 14 6 4 178
summonerName teamEarlySurrendered teamId teamPosition \
0 TheKushery False 100 TOP
1 BrooklynEscobar False 100 JUNGLE
2 AlterKai False 100 MIDDLE
3 gravesummoning False 100 BOTTOM
4 ac3lyn False 100 UTILITY
5 Coolgum15 False 200 TOP
6 catseatsushi False 200 JUNGLE
7 Tribbott False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 Thick2BThighs False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 9 1952 258562 14652
1 8 1952 186054 10148
2 50 1952 131011 27986
3 28 1952 106467 21480
4 31 1952 25925 6954
5 5 1952 136178 15748
6 5 1952 148529 15104
7 14 1952 106488 9145
8 0 1952 109930 11642
9 45 1952 25794 8095
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 12685 3390 281 68
1 32344 14521 25 308
2 15322 923 129 171
3 15513 5052 119 111
4 11383 621 21 98
5 24270 6039 191 59
6 31663 11163 35 189
7 16638 1707 161 116
8 15067 2396 164 28
9 19596 529 37 184
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 91 1 0
1 198 1 21700
2 77 1 13311
3 155 3 424
4 142 1 6375
5 92 1 1057
6 309 1 9016
7 253 1 920
8 110 3 9743
9 224 5 7929
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 22 4 4
1 965 1181 1 4
2 1309 1058 1 4
3 200 377 0 4
4 1250 106 0 4
5 624 628 2 6
6 244 1109 0 6
7 920 461 2 6
8 135 288 0 6
9 794 1238 0 6
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 20 1 2 8 True
1 15 6 1 1 True
2 13 0 2 6 True
3 17 0 0 10 True
4 48 1 4 24 True
5 18 1 2 10 False
6 18 2 4 4 False
7 19 0 0 10 False
8 13 0 0 9 False
9 40 4 2 19 False ,
assists baronKills bountyLevel champLevel championName \
0 5 1 2 16 Gwen
1 7 0 0 15 DrMundo
2 11 0 0 14 Sylas
3 19 0 0 15 Jhin
4 11 0 1 15 Brand
5 9 0 0 14 Camille
6 8 0 0 14 Mordekaiser
7 8 0 3 17 Yasuo
8 11 0 0 14 Samira
9 6 0 0 12 Swain
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 8784 23186 8784
1 133 22056 133
2 475 4799 475
3 2870 8261 2870
4 1753 2118 1753
5 611 611 611
6 0 1210 0
7 2640 44922 2640
8 699 785 699
9 94 1076 94
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 8 9 0 False True
1 7 0 1 False False
2 11 0 0 False False
3 7 0 0 False False
4 9 0 1 False False
5 7 0 0 False False
6 12 0 0 False False
7 5 1 3 False False
8 12 5 0 False False
9 12 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 True False False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 13844 TOP 0
1 False 9532 JUNGLE 1
2 False 8265 MIDDLE 0
3 False 13155 BOTTOM 1
4 False 14272 UTILITY 0
5 False 7699 TOP 0
6 False 10018 JUNGLE 0
7 False 20327 MIDDLE 0
8 False 9114 BOTTOM 0
9 False 6621 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3158 4633 3115 3100 1052 3108 3363
1 0 3068 3111 3075 3211 3067 0 3363
2 0 6671 3158 3508 1036 0 1055 3340
3 0 6676 6671 3009 1018 3033 1038 3363
4 0 3853 3020 6653 4637 3165 1058 3364
5 2 2065 3107 1083 0 0 0 3363
6 2 2031 4633 4637 3047 1052 1026 3340
7 2 3091 6673 3006 3031 3072 3026 3340
8 2 6653 3006 1036 1082 1042 1042 3363
9 2 3157 3853 6653 0 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 4 16 7 3
1 0 2 0 1
2 1 3 2 1
3 1 7 3 1
4 5 20 6 2
5 1 4 3 1
6 1 7 2 1
7 5 25 14 2
8 1 5 2 2
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 993 60676 17574
1 520 70270 4513
2 238 35603 8053
3 628 5040 2567
4 621 69730 43197
5 1141 1123 1123
6 559 69098 17470
7 627 18013 3929
8 573 9013 3111
9 379 35793 9592
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 11531 16 0 0
1 5327 92 0 0
2 6151 0 0 0
3 6085 4 0 0
4 8551 5 0 0
5 13320 0 1 0
6 22289 88 1 0
7 14618 42 1 0
8 14445 4 1 0
9 15320 4 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 26224
1 0 2 51367
2 0 3 14122
3 0 4 99305
4 0 5 1676
5 0 6 40325
6 0 7 14275
7 0 8 244056
8 0 9 40748
9 0 10 3291
physicalDamageDealtToChampions physicalDamageTaken role \
0 7060 25199 SOLO
1 3060 21411 NONE
2 1426 20026 SOLO
3 18262 14532 CARRY
4 1115 13810 SUPPORT
5 7169 6911 DUO
6 2178 12645 NONE
7 44668 19272 SOLO
8 13106 9487 DUO
9 624 7465 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 4 2 12 111
1 0 4 16 11 65
2 3 14 1 4 83
3 4 7 4 4 73
4 6 14 3 4 178
5 3 12 2 4 107
6 19 11 4 4 68
7 3 14 3 4 110
8 6 7 5 4 97
9 0 14 3 4 92
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 Ventrishero False 100 TOP 9
1 Dirtbagjr False 100 JUNGLE 5
2 Dublaiar False 100 MIDDLE 6
3 NoEmotion595 False 100 BOTTOM 12
4 Thick2BThighs False 100 UTILITY 38
5 DarkTheDuck False 200 TOP 13
6 orangrock False 200 JUNGLE 8
7 JohnnyFerny False 200 MIDDLE 34
8 Oremboi False 200 BOTTOM 2
9 MaybeRose False 200 UTILITY 29
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1838 112668 31383
1 1838 143472 7926
2 1838 53001 10075
3 1838 104666 20920
4 1838 72076 44983
5 1838 50218 10585
6 1838 93590 21917
7 1838 271907 49124
8 1838 52937 16217
9 1838 39432 10564
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 38106 13636 112 101
1 27727 11828 57 127
2 27495 5193 75 136
3 21154 7238 130 66
4 23577 3731 21 43
5 21994 3070 75 111
6 37187 9545 14 113
7 35957 10542 184 144
8 24405 4103 79 5
9 24687 2682 21 164
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 324 1 25766
1 194 1 21835
2 351 1 3276
3 191 3 320
4 277 1 670
5 217 1 8769
6 370 1 10216
7 214 1 9838
8 362 4 3175
9 284 1 347
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 6748 1374 5 2
1 352 989 1 2
2 596 1317 0 2
3 90 536 2 2
4 670 1215 0 2
5 2292 1762 0 8
6 2267 2253 0 8
7 526 2065 2 8
8 0 473 0 8
9 347 1901 0 8
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 23 12 0 12 True
1 6 0 1 2 True
2 12 0 1 7 True
3 9 0 2 4 True
4 38 1 2 19 True
5 10 0 0 6 False
6 17 0 0 10 False
7 20 1 1 11 False
8 35 7 3 15 False
9 26 0 1 11 False ,
assists baronKills bountyLevel champLevel championName \
0 2 0 0 15 Vayne
1 4 0 0 13 FiddleSticks
2 4 0 0 17 Kayle
3 6 0 0 14 Varus
4 5 0 0 12 Morgana
5 5 0 0 17 Camille
6 13 1 7 17 Udyr
7 7 0 1 16 Diana
8 7 0 11 17 Tristana
9 19 0 0 15 Bard
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2536 5586 2536
1 0 11139 0
2 4138 10035 4138
3 2010 4070 2010
4 2339 2462 2339
5 2429 3345 2429
6 1846 35466 1846
7 7471 19109 7471
8 7028 20057 7028
9 2653 3808 2653
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 8 1 0 False False
1 10 0 2 False False
2 6 1 0 False False
3 4 0 0 False False
4 7 3 0 False False
5 3 1 0 False False
6 0 0 3 True False
7 6 0 0 False True
8 4 2 0 False False
9 1 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False True False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 9394 TOP 0
1 False 8661 JUNGLE 0
2 False 13227 MIDDLE 0
3 False 10405 BOTTOM 0
4 False 8102 UTILITY 0
5 False 11275 TOP 0
6 False 14484 JUNGLE 0
7 False 13361 MIDDLE 0
8 False 15668 BOTTOM 1
9 False 9250 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 6672 3006 3046 6677 1018 1055 3340
1 1 3157 2031 3152 3020 1026 0 3330
2 1 1058 3157 3115 1082 4633 3006 3340
3 1 3814 6691 3004 3158 1036 0 3340
4 1 3117 3157 3853 1026 1028 4005 3364
5 0 1054 3078 3047 3074 6333 0 3340
6 0 3158 6664 3742 3001 3053 0 3340
7 0 3115 6656 3100 3020 0 0 3340
8 0 3031 6672 1053 3046 0 3006 3340
9 0 3853 6617 3158 6616 3504 0 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 0 1 0 1
1 0 1 0 1
2 2 7 3 1
3 1 3 2 2
4 0 2 0 1
5 2 6 3 1
6 1 7 7 1
7 1 7 4 1
8 2 14 11 3
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 641 0 0
1 504 113215 8860
2 527 132362 21516
3 811 5880 3265
4 1312 33422 12055
5 1367 844 844
6 0 137893 8178
7 818 148552 19555
8 459 31301 3620
9 1746 25093 10178
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 5657 4 1 0
1 10734 130 1 0
2 14325 24 1 0
3 6265 6 1 0
4 7811 0 1 0
5 8283 0 0 0
6 7514 181 0 0
7 15673 25 0 0
8 9956 26 0 0
9 6442 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 70753
1 0 2 6973
2 0 3 44007
3 0 4 118346
4 0 5 3808
5 0 6 85742
6 0 7 66009
7 0 8 29240
8 0 9 147020
9 0 10 3844
physicalDamageDealtToChampions physicalDamageTaken role \
0 7155 15358 SOLO
1 37 21361 NONE
2 5706 15136 SOLO
3 12469 6055 CARRY
4 959 11887 SUPPORT
5 10348 11016 SOLO
6 5847 19420 NONE
7 3472 10948 SOLO
8 24007 11146 CARRY
9 2047 6378 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 12 4 4 83
1 12 11 5 4 136
2 4 4 3 12 349
3 4 4 4 7 163
4 6 3 4 4 129
5 3 4 3 12 58
6 4 4 21 11 437
7 4 4 6 21 296
8 3 4 6 3 65
9 3 4 6 3 155
summonerName teamEarlySurrendered teamId teamPosition \
0 Dublaiar False 100 TOP
1 SlothoftheAbyss False 100 JUNGLE
2 Rotome False 100 MIDDLE
3 SaladJulius False 100 BOTTOM
4 QuilledSword False 100 UTILITY
5 NoctWolf False 200 TOP
6 Kaichou Coco False 200 JUNGLE
7 TheGuiltySky False 200 MIDDLE
8 ArcadeBR False 200 BOTTOM
9 Or4ngeTicTac False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 6 2120 101547 11049
1 35 2120 129542 9226
2 11 2120 189762 28657
3 43 2120 124226 15734
4 75 2120 37230 13015
5 15 2120 105450 11331
6 36 2120 225238 15549
7 15 2120 178232 23172
8 9 2120 194464 30719
9 31 2120 28937 12226
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 22423 4553 160 18
1 33285 12296 17 656
2 30605 10718 214 290
3 12398 3704 150 350
4 20780 4175 28 130
5 21515 2441 141 208
6 29108 15614 65 263
7 27393 3343 151 106
8 21447 6769 201 100
9 12975 16835 17 203
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 268 1 30794
1 349 1 9353
2 209 5 13392
3 104 2 0
4 227 1 0
5 93 1 18863
6 0 1 21336
7 230 1 440
8 97 1 16142
9 44 5 0
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 3894 1407 1 9
1 329 1189 0 9
2 1434 1143 0 9
3 0 78 1 9
4 0 1080 1 9
5 138 2215 3 3
6 1524 2173 1 3
7 144 770 3 3
8 3091 344 1 3
9 0 154 1 3
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 26 1 0 11 False
1 14 0 1 1 False
2 28 1 0 9 False
3 17 0 0 11 False
4 69 3 7 30 False
5 23 1 0 9 True
6 26 0 0 9 True
7 19 0 0 12 True
8 40 2 6 14 True
9 38 0 3 19 True ,
assists baronKills bountyLevel champLevel championName \
0 14 0 1 18 MonkeyKing
1 5 1 2 18 Graves
2 18 0 3 18 MissFortune
3 14 1 0 18 Jinx
4 19 0 0 16 Nautilus
5 5 0 0 18 Kayle
6 13 0 0 16 Poppy
7 9 0 0 17 Lux
8 11 0 0 16 Tristana
9 20 0 0 16 Thresh
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 5397 12981 5397
1 5973 54800 5973
2 4771 19794 4771
3 9482 22887 9482
4 1288 5255 1288
5 2990 5317 2990
6 0 4618 0
7 3243 3672 3243
8 1521 5468 1521
9 356 3547 356
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 8 1 0 False False
1 5 3 3 False False
2 7 1 0 False False
3 5 5 1 True False
4 6 1 0 False True
5 10 1 0 False False
6 11 0 1 False False
7 11 5 0 False False
8 8 1 0 False False
9 11 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 True False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 16424 TOP 0
1 False 17394 JUNGLE 1
2 False 15667 MIDDLE 2
3 False 17427 BOTTOM 1
4 False 9683 UTILITY 0
5 False 15960 TOP 0
6 False 11301 JUNGLE 0
7 False 15248 MIDDLE 0
8 False 13193 BOTTOM 0
9 False 7990 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3074 6694 3111 3053 3078 3134 3340
1 0 6671 1038 3006 3033 3036 6676 3364
2 0 1042 6691 3006 6676 3072 3033 3340
3 0 3094 3006 6672 3085 3046 3031 3340
4 0 3857 3190 3047 3001 3075 0 3364
5 4 3089 3157 3006 3115 4633 1082 3340
6 4 3068 2031 3047 3075 3742 3067 3340
7 4 6655 3157 3165 0 4628 3020 3363
8 4 3036 6672 3046 3006 1037 1018 3340
9 4 3190 3117 3050 3857 3076 1028 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 4 15 6 2
1 3 12 5 2
2 2 10 5 3
3 2 12 6 2
4 1 2 2 1
5 1 7 2 2
6 2 7 3 1
7 3 10 2 2
8 2 7 2 1
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 583 18402 4504
1 902 11450 2237
2 441 12152 3053
3 847 4179 2205
4 874 15269 5869
5 465 172732 15983
6 289 26429 3737
7 696 156838 27973
8 656 29780 1865
9 577 18511 4326
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 15639 24 0 0
1 9679 215 0 0
2 12273 9 0 0
3 9138 40 0 0
4 10204 0 0 0
5 3550 25 1 0
6 5327 101 1 1
7 3281 4 1 0
8 3233 0 1 0
9 3686 0 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 119580
1 0 2 264747
2 0 3 143834
3 0 4 173084
4 0 5 12894
5 0 6 48887
6 0 7 72722
7 0 8 11764
8 0 9 137575
9 0 10 6281
physicalDamageDealtToChampions physicalDamageTaken role \
0 26735 17171 SOLO
1 16738 15406 NONE
2 26560 10864 SOLO
3 21277 9198 CARRY
4 2172 10451 SUPPORT
5 2659 24298 SOLO
6 8520 25690 NONE
7 972 21409 SOLO
8 17048 19532 CARRY
9 808 21962 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 5 4 5 12 154
1 21 11 5 4 201
2 8 21 6 4 46
3 6 4 7 7 273
4 7 14 5 4 89
5 6 4 3 12 349
6 14 11 5 4 136
7 5 4 5 14 101
8 4 7 3 4 132
9 1 14 2 4 83
summonerName teamEarlySurrendered teamId teamPosition \
0 youngrichh False 100 TOP
1 Thewintersnovv False 100 JUNGLE
2 queenie0218 False 100 MIDDLE
3 Zeaph False 100 BOTTOM
4 wii gor False 100 UTILITY
5 Rotome False 200 TOP
6 SlothoftheAbyss False 200 JUNGLE
7 DaddyKench6900 False 200 MIDDLE
8 KOZVIK False 200 BOTTOM
9 Dublaiar False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 26 2140 140322 31646
1 24 2140 331181 20798
2 12 2140 156517 30079
3 46 2140 205146 26826
4 60 2140 37271 8905
5 8 2140 233969 19740
6 36 2140 108952 13602
7 50 2140 174518 30662
8 3 2140 192919 20484
9 28 2140 34995 5225
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 35014 7968 147 105
1 25801 9530 69 622
2 24119 6055 151 216
3 19408 6416 208 251
4 21502 1360 29 319
5 29134 8872 280 335
6 33743 5424 9 538
7 25154 0 214 469
8 23576 7226 221 17
9 27265 573 40 84
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 307 1 2339
1 218 1 54984
2 232 1 531
3 189 4 27882
4 235 1 9108
5 323 5 12349
6 308 1 9800
7 396 0 5915
8 289 3 25563
9 300 5 10202
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 406 2204 2 2
1 1822 715 3 2
2 465 981 1 2
3 3343 1071 4 2
4 864 846 1 2
5 1097 1285 1 11
6 1344 2725 0 11
7 1716 463 1 11
8 1570 810 0 11
9 90 1616 0 11
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 23 1 3 11 True
1 17 3 3 4 True
2 38 1 3 12 True
3 50 5 7 17 True
4 51 2 1 17 True
5 16 2 2 7 False
6 15 0 1 8 False
7 32 5 3 16 False
8 9 1 0 8 False
9 13 1 1 8 False ,
assists baronKills bountyLevel champLevel championName \
0 0 0 0 3 Mordekaiser
1 0 0 0 3 Poppy
2 0 0 0 4 Yone
3 0 0 0 3 Tristana
4 0 0 0 2 Senna
5 0 0 0 3 Singed
6 0 0 0 3 Nidalee
7 0 0 0 4 Ahri
8 0 0 0 3 Ezreal
9 0 0 0 1 Lux
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 0 0 0
1 0 0 0
2 0 0 0
3 547 547 547
4 250 250 250
5 0 0 0
6 0 0 0
7 0 0 0
8 0 0 0
9 0 0 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 0 0 0 False False
1 0 0 0 False False
2 0 0 0 False False
3 0 0 0 False False
4 0 0 0 False False
5 0 0 0 False False
6 0 0 0 False False
7 0 0 0 False False
8 0 0 0 False False
9 0 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False True
1 False False True
2 False False True
3 False False True
4 False False True
5 False False True
6 False False True
7 False False True
8 False False True
9 False False True
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 1077 TOP 0
1 False 1096 JUNGLE 0
2 False 1010 MIDDLE 0
3 False 1122 BOTTOM 0
4 False 937 UTILITY 0
5 False 979 TOP 0
6 False 1101 JUNGLE 0
7 False 1049 MIDDLE 0
8 False 881 BOTTOM 0
9 False 737 AFK 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1054 0 0 0 0 0 3340
1 0 1039 2031 0 0 0 0 3340
2 0 1054 2003 0 0 0 0 3340
3 0 1055 0 0 0 0 0 3340
4 0 3862 0 0 2003 0 0 3340
5 0 1082 2031 0 0 0 0 3340
6 0 1035 2031 0 0 0 0 3340
7 0 1056 2003 0 0 0 0 3340
8 0 3070 2003 0 0 0 0 3340
9 0 3850 2003 0 0 0 0 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 0 0 0 0
1 0 0 0 0
2 0 0 0 0
3 0 0 0 0
4 0 0 0 0
5 0 0 0 0
6 0 0 0 0
7 0 0 0 0
8 0 0 0 0
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 0 1855 510
1 0 1644 0
2 0 363 34
3 0 685 0
4 0 0 0
5 0 2872 574
6 0 3839 0
7 0 1082 230
8 0 278 196
9 0 0 0
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 574 0 0 0
1 226 16 0 0
2 230 0 0 0
3 196 0 0 0
4 0 0 0 0
5 510 0 0 0
6 598 16 0 0
7 34 0 0 0
8 0 0 0 0
9 0 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 2346
1 0 2 7622
2 0 3 3439
3 0 4 5133
4 0 5 755
5 0 6 1223
6 0 7 2351
7 0 8 2308
8 0 9 3358
9 0 10 0
physicalDamageDealtToChampions physicalDamageTaken role summoner1Casts \
0 285 331 DUO 0
1 0 1422 DUO 1
2 219 471 DUO 0
3 109 815 DUO 0
4 0 0 DUO 0
5 190 501 DUO 1
6 0 1336 DUO 0
7 297 354 DUO 1
8 597 308 DUO 0
9 0 0 DUO 0
summoner1Id summoner2Casts summoner2Id summonerLevel summonerName \
0 4 0 12 349 Rotome
1 11 0 4 136 SlothoftheAbyss
2 4 0 14 98 WaterIsIceSoup
3 4 0 1 31 GarciaRL
4 3 0 4 83 Dublaiar
5 6 0 12 299 ALunarGamer
6 4 2 11 54 upwnbzet
7 4 0 14 122 Frostier
8 7 0 4 264 SKT ScuttleCrab
9 4 0 14 37 PAHOTA
teamEarlySurrendered teamId teamPosition timeCCingOthers timePlayed \
0 False 100 TOP 0 215
1 False 100 JUNGLE 0 215
2 False 100 MIDDLE 0 215
3 False 100 BOTTOM 0 215
4 False 100 UTILITY 0 215
5 True 200 TOP 2 215
6 True 200 JUNGLE 0 215
7 True 200 MIDDLE 1 215
8 True 200 BOTTOM 0 215
9 True 200 AFK 0 215
totalDamageDealt totalDamageDealtToChampions totalDamageTaken totalHeal \
0 4202 796 906 42
1 10174 0 1649 775
2 3866 317 750 91
3 5818 109 1011 72
4 755 0 0 178
5 4095 764 1012 124
6 7090 0 1934 991
7 5355 577 452 43
8 3636 793 308 62
9 0 0 0 0
totalMinionsKilled totalTimeCCDealt totalTimeSpentDead totalUnitsHealed \
0 17 0 0 1
1 0 135 0 1
2 16 9 0 1
3 16 0 0 1
4 0 0 0 1
5 12 19 0 1
6 0 0 0 1
7 16 2 0 1
8 7 0 0 1
9 0 0 0 0
trueDamageDealt trueDamageDealtToChampions trueDamageTaken turretKills \
0 0 0 0 0
1 908 0 0 0
2 63 63 48 0
3 0 0 0 0
4 0 0 0 0
5 0 0 0 0
6 900 0 0 0
7 1964 48 63 0
8 0 0 0 0
9 0 0 0 0
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 0 0 0 0
1 0 0 0 0
2 0 1 0 0
3 0 1 0 0
4 0 1 0 0
5 0 0 0 0
6 0 0 0 0
7 0 0 0 0
8 0 0 0 0
9 0 0 0 0
wardsPlaced win
0 0 True
1 0 True
2 1 True
3 1 True
4 1 True
5 0 False
6 0 False
7 0 False
8 0 False
9 0 False ,
assists baronKills bountyLevel champLevel championName \
0 6 1 2 18 Tryndamere
1 7 0 4 17 Poppy
2 9 0 5 18 Veigar
3 7 0 0 14 Ezreal
4 10 0 3 15 Pantheon
5 8 0 0 17 Shen
6 2 0 0 15 Udyr
7 4 0 1 16 Ekko
8 5 0 0 14 Aphelios
9 11 0 0 13 Thresh
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 4291 15054 4291
1 0 19457 0
2 4976 21861 4976
3 2550 9476 2550
4 262 1180 262
5 1760 3706 1760
6 0 20987 0
7 367 3096 367
8 0 4929 0
9 0 729 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 6 0 0 False False
1 4 0 2 False False
2 3 1 1 False False
3 6 0 0 False False
4 7 1 0 False False
5 9 0 0 True False
6 9 0 0 False True
7 4 0 1 False False
8 6 1 1 False False
9 5 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 14394 TOP 0
1 True 12012 JUNGLE 0
2 True 14683 MIDDLE 0
3 True 11403 BOTTOM 0
4 True 9696 UTILITY 0
5 True 11653 TOP 0
6 True 12200 JUNGLE 0
7 True 9686 MIDDLE 0
8 True 11022 BOTTOM 0
9 True 7887 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 6672 6675 1055 3046 0 3006 3340
1 0 3742 2031 3068 3047 1057 1028 3340
2 0 1082 6656 3135 3020 4629 3089 3363
3 0 3508 3158 3042 6691 0 1055 3340
4 0 3857 6692 3009 3134 3133 2055 3364
5 0 3047 3075 3143 3068 3077 0 3340
6 0 3742 3158 4401 3155 1036 6664 3340
7 0 3041 3100 3020 1052 3152 0 3340
8 0 1055 6673 3006 3046 1038 1037 3363
9 0 1001 3857 3190 3110 1057 1011 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 3 10 3 2
1 2 6 4 2
2 3 9 5 1
3 0 3 0 1
4 2 5 3 2
5 2 5 2 1
6 2 10 4 1
7 1 4 2 2
8 1 4 2 2
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 378 0 0
1 492 34580 2184
2 583 186789 36300
3 567 6752 2528
4 559 841 645
5 506 62724 15958
6 500 89447 9466
7 614 105823 10382
8 678 1871 480
9 1019 17048 6872
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 15808 30 0 0
1 8094 174 0 0
2 8213 20 0 0
3 6670 0 0 0
4 7173 4 0 0
5 10047 8 0 0
6 12464 132 0 0
7 8541 9 0 0
8 5438 12 0 0
9 7777 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 168438
1 0 2 130824
2 0 3 18502
3 0 4 88106
4 0 5 52940
5 0 6 58805
6 0 7 58387
7 0 8 20213
8 0 9 86332
9 0 10 7618
physicalDamageDealtToChampions physicalDamageTaken role \
0 22144 19601 SOLO
1 7921 15212 NONE
2 1344 9094 SOLO
3 6269 6630 CARRY
4 15743 11543 SUPPORT
5 10240 21584 SOLO
6 9787 24600 NONE
7 1170 13043 SOLO
8 9722 9711 CARRY
9 1146 11098 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 6 4 4 140
1 15 11 5 4 136
2 4 4 4 12 349
3 3 7 2 4 83
4 4 4 6 14 93
5 4 4 2 12 232
6 18 11 5 4 150
7 3 14 4 4 40
8 3 4 3 7 77
9 2 3 1 4 184
summonerName teamEarlySurrendered teamId teamPosition \
0 Arsneault False 100 TOP
1 SlothoftheAbyss False 100 JUNGLE
2 Rotome False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 KoaIaBacon False 100 UTILITY
5 CCertified Halal False 200 TOP
6 Doritosbacon False 200 JUNGLE
7 SuperAsianGamer False 200 MIDDLE
8 NaClowe False 200 BOTTOM
9 Zorukah False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 24 2063 189888 25371
1 46 2063 180996 11668
2 59 2063 207290 37734
3 0 2063 104334 8798
4 28 2063 62338 17266
5 42 2063 127375 27244
6 43 2063 162197 20929
7 5 2063 126588 12104
8 12 2063 95773 10203
9 37 2063 30203 8091
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 36814 15382 167 160
1 23868 8890 16 1029
2 17719 4822 223 209
3 13743 2032 184 0
4 19243 1856 57 34
5 34083 2219 178 418
6 38732 9549 32 290
7 21954 5681 157 237
8 15533 3291 192 89
9 19762 1380 40 693
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 217 1 21450
1 101 1 15592
2 111 1 1997
3 208 2 9475
4 246 4 8556
5 335 1 5845
6 367 1 14364
7 146 1 552
8 173 3 7570
9 191 5 5535
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 3226 1404 2 2
1 1562 561 0 2
2 90 410 1 2
3 0 442 2 2
4 878 525 0 2
5 1045 2451 1 5
6 1676 1667 0 5
7 552 369 0 5
8 0 383 0 5
9 72 885 0 5
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 20 0 1 11 True
1 23 0 0 11 True
2 30 2 1 9 True
3 19 0 1 11 True
4 34 2 2 20 True
5 18 0 1 10 False
6 22 0 1 9 False
7 9 0 0 7 False
8 23 1 2 8 False
9 42 0 2 19 False ,
assists baronKills bountyLevel champLevel championName \
0 22 0 0 18 Bard
1 14 1 0 18 Viego
2 16 0 0 18 Pantheon
3 11 0 0 17 Ezreal
4 27 0 0 18 Yuumi
5 25 0 2 18 Volibear
6 9 2 2 18 Kayn
7 12 0 1 18 Zed
8 13 0 3 18 Annie
9 26 0 2 18 Senna
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 6442 12509 6442
1 3351 37958 3351
2 4066 10889 4066
3 2758 24017 2758
4 95 770 95
5 3323 22062 3323
6 1247 26758 1247
7 3634 8391 3634
8 4485 16237 4485
9 2555 4963 2555
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 11 0 0 False False
1 13 0 3 True False
2 11 2 0 False True
3 9 0 1 False False
4 6 2 0 False False
5 12 0 0 False False
6 9 0 2 False False
7 11 0 0 False False
8 11 0 0 False False
9 10 3 1 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 True False False
6 False False False
7 False False False
8 False True False
9 True False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 14483 TOP 1
1 False 18602 JUNGLE 0
2 False 22327 MIDDLE 1
3 False 14725 BOTTOM 0
4 False 12014 UTILITY 0
5 False 19151 MIDDLE 0
6 False 15474 JUNGLE 0
7 False 17078 TOP 1
8 False 23386 BOTTOM 0
9 False 14547 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 3078 6035 1036 3053 3111 3071 3340
1 1 6691 3006 6035 3142 6609 3091 3340
2 1 3047 3074 6692 3053 3071 4401 3363
3 1 3508 3158 3042 6691 6694 3123 3340
4 1 3853 3222 6617 3504 6616 3916 3364
5 2 3075 6664 3193 3047 3053 3742 3340
6 2 6630 3071 3047 3053 3133 0 3364
7 2 6692 3071 3158 6676 6609 6695 3340
8 2 4629 3157 6655 3020 3165 3089 3340
9 2 3864 3033 3009 6672 3124 3086 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 3 8 2 1
1 2 12 6 1
2 6 26 6 3
3 1 4 2 1
4 0 3 0 1
5 2 6 2 1
6 2 6 2 1
7 3 10 3 2
8 7 24 7 4
9 1 3 2 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 591 67069 18275
1 789 25901 3552
2 488 10622 1380
3 660 21597 9009
4 1775 22676 16338
5 340 165621 14407
6 583 12135 0
7 1002 9431 1094
8 316 261410 66340
9 966 6635 1269
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 18488 2 1 0
1 18161 167 1 1
2 26249 40 1 0
3 19511 24 1 0
4 5304 0 1 0
5 12557 24 0 0
6 13697 178 0 1
7 7880 0 0 0
8 8174 20 0 0
9 10285 4 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 1 1 68776
1 0 2 203798
2 0 3 290598
3 0 4 179749
4 0 5 861
5 0 6 81634
6 0 7 202206
7 0 8 137733
8 0 9 10408
9 0 10 61773
physicalDamageDealtToChampions physicalDamageTaken role \
0 17742 29301 NONE
1 26433 36131 NONE
2 84871 41363 SOLO
3 12743 9724 CARRY
4 49 7718 SUPPORT
5 20950 55192 NONE
6 18683 48244 NONE
7 27424 30682 SOLO
8 1282 28067 CARRY
9 19960 28711 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 11 3 4 4 132
1 22 11 7 4 345
2 6 4 9 14 349
3 4 7 1 4 82
4 8 3 6 14 177
5 4 12 6 4 606
6 19 11 7 4 122
7 9 14 4 4 228
8 8 4 6 14 349
9 7 7 3 4 94
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 ThePizzaMarine False 100 TOP 94
1 Hero Øf Time False 100 JUNGLE 40
2 Rotome False 100 MIDDLE 56
3 Dublaiar False 100 BOTTOM 1
4 Thick2BThighs False 100 UTILITY 48
5 Yunona otoko False 200 MIDDLE 45
6 Jaesu False 200 JUNGLE 18
7 Doshin False 200 TOP 6
8 IDR Trolls False 200 BOTTOM 49
9 Tonylyn False 200 UTILITY 57
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 2921 140161 36018
1 2921 243016 32246
2 2921 304270 88291
3 2921 210415 21929
4 2921 24546 17396
5 2921 264741 38562
6 2921 235530 20035
7 2921 148980 30335
8 2921 276513 70232
9 2921 76408 23156
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 50105 7391 141 751
1 56917 18732 53 277
2 71368 14592 221 146
3 30864 2566 191 21
4 13608 35109 8 78
5 69875 20842 205 466
6 62754 27014 33 317
7 39014 7329 172 155
8 37457 5212 223 322
9 39876 21189 47 559
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 483 3 4315
1 529 3 13315
2 444 1 3049
3 351 2 9068
4 251 5 1008
5 390 1 17485
6 361 1 21188
7 489 1 1815
8 444 1 4695
9 432 5 7999
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 2315 2 7
1 2260 2624 2 7
2 2039 3755 2 7
3 176 1628 1 7
4 1008 584 0 7
5 3204 2125 0 7
6 1351 812 0 7
7 1815 451 1 7
8 2609 1215 3 7
9 1926 879 1 7
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 23 0 0 13 False
1 26 3 2 10 False
2 35 2 0 16 False
3 26 0 0 15 False
4 63 5 2 17 False
5 28 0 0 16 True
6 14 0 4 1 True
7 22 0 0 13 True
8 27 0 2 13 True
9 59 5 4 26 True ,
assists baronKills bountyLevel champLevel championName \
0 7 0 3 13 Viego
1 7 0 4 14 Malphite
2 7 0 0 13 Neeko
3 4 0 0 11 Samira
4 4 0 4 12 Swain
5 2 0 0 12 Teemo
6 10 0 0 11 Lillia
7 5 0 0 12 Ahri
8 2 0 0 10 Sivir
9 8 0 0 10 Sona
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 0 27475 0
1 2087 2337 2087
2 3752 7019 3752
3 684 5830 684
4 464 3176 464
5 2130 5711 2130
6 0 8346 0
7 1573 4530 1573
8 1569 1569 1569
9 828 1472 828
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 4 1 3 False True
1 3 0 0 True False
2 5 3 0 False False
3 3 0 0 False False
4 3 1 0 False False
5 9 0 0 False False
6 9 2 0 False False
7 6 3 0 False False
8 7 0 0 False False
9 5 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False True False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 10752 JUNGLE 0
1 True 11235 TOP 0
2 True 8195 MIDDLE 0
3 True 6644 BOTTOM 0
4 True 9101 UTILITY 0
5 True 6630 TOP 0
6 True 6692 JUNGLE 0
7 True 9180 MIDDLE 0
8 True 7745 BOTTOM 0
9 True 5195 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3153 6673 3111 3057 0 0 3340
1 0 1054 3047 3068 4401 3075 0 3340
2 0 1056 6655 0 3020 3916 1026 3340
3 0 6673 3047 3134 0 0 1055 3340
4 0 3853 3157 6653 0 3020 1052 3364
5 0 1056 6653 3020 1043 1052 0 3340
6 0 6653 2031 3191 0 3020 0 3364
7 0 1056 6656 3020 4628 1052 0 3340
8 0 6691 6676 0 3006 0 0 3340
9 0 3851 3070 3802 3020 0 0 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 3 10 3 1
1 4 12 4 2
2 1 3 2 1
3 0 1 0 1
4 3 10 4 2
5 1 3 2 2
6 0 3 0 1
7 2 9 4 2
8 0 3 0 1
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 433 11913 2819
1 569 59839 17771
2 779 67858 9276
3 610 5678 462
4 460 24790 12832
5 417 28931 10286
6 558 36232 9026
7 556 44846 12769
8 345 186 51
9 544 5949 2113
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 8554 99 0 0
1 10304 12 0 0
2 7340 4 0 0
3 2821 8 0 0
4 5863 4 0 0
5 14662 0 0 0
6 10214 57 0 0
7 6902 8 0 0
8 8058 1 0 0
9 5087 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 90940
1 0 2 30786
2 0 3 13492
3 0 4 51136
4 0 5 3207
5 0 6 8860
6 0 7 9239
7 0 8 12579
8 0 9 97603
9 0 10 1773
physicalDamageDealtToChampions physicalDamageTaken role \
0 13942 14698 NONE
1 3531 7870 SOLO
2 843 2870 SOLO
3 2207 7929 CARRY
4 1468 9032 SUPPORT
5 1413 2114 SOLO
6 730 10630 NONE
7 1511 9286 SOLO
8 18916 6118 CARRY
9 198 3778 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 12 11 348
1 3 12 2 4 131
2 3 7 3 4 160
3 3 7 0 4 82
4 4 14 3 4 177
5 3 12 3 4 65
6 10 11 4 4 34
7 5 14 3 4 97
8 5 7 4 4 216
9 3 4 0 3 25
summonerName teamEarlySurrendered teamId teamPosition \
0 Rotome False 100 JUNGLE
1 ThePizzaMarine False 100 TOP
2 Warpanda118 False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 Thick2BThighs False 100 UTILITY
5 Leggomÿeggo False 200 TOP
6 Give me Luxanna False 200 JUNGLE
7 DarkLonelySoul False 200 MIDDLE
8 Lillisknee False 200 BOTTOM
9 Lillisbutt False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 17 1445 117494 17041
1 36 1445 92586 21512
2 24 1445 82919 10120
3 0 1445 66376 2670
4 41 1445 28902 15205
5 46 1445 39488 11700
6 18 1445 63357 12377
7 41 1445 87917 21171
8 0 1445 99389 18967
9 9 1445 7722 2312
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 25352 10856 28 204
1 20433 3424 135 456
2 13177 1333 113 195
3 11706 3028 98 7
4 16126 5381 13 155
5 17174 1175 62 304
6 21079 3978 14 180
7 16188 1639 111 113
8 14643 2871 126 0
9 9163 3982 4 12
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 90 4 14639
1 99 1 1960
2 175 2 1567
3 65 2 9562
4 70 1 904
5 209 1 1695
6 217 1 17885
7 168 1 30491
8 152 2 1600
9 122 5 0
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 280 2099 0 2
1 210 2258 1 2
2 0 2967 1 2
3 0 955 0 2
4 904 1230 2 2
5 0 397 0 4
6 2620 234 0 4
7 6890 0 1 4
8 0 466 0 4
9 0 296 1 4
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 18 2 1 7 True
1 8 0 0 6 True
2 18 3 2 11 True
3 10 0 0 7 True
4 20 1 3 9 True
5 8 0 0 5 False
6 20 2 4 5 False
7 22 3 1 10 False
8 9 0 0 6 False
9 6 0 1 3 False ,
assists baronKills bountyLevel champLevel championName \
0 4 0 0 17 Volibear
1 6 0 0 17 Malzahar
2 7 0 0 15 Zyra
3 3 0 0 16 Aatrox
4 7 0 0 15 Sivir
5 12 0 5 18 Nasus
6 14 0 0 17 Evelynn
7 9 0 7 18 Katarina
8 19 0 0 16 Yuumi
9 8 0 8 17 Ezreal
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 982 9306 982
1 1637 2422 1637
2 694 1465 694
3 4552 4765 4552
4 2399 2810 2399
5 1429 17451 1429
6 265 35058 265
7 1133 7115 1133
8 0 65 0
9 2387 14015 2387
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 6 4 3 False True
1 8 2 0 False False
2 6 1 0 False False
3 13 1 0 False False
4 8 1 0 False False
5 1 1 2 False False
6 4 0 2 False False
7 9 0 0 False False
8 2 2 0 False False
9 0 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False True False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 14099 JUNGLE 0
1 True 14297 MIDDLE 0
2 True 10472 UTILITY 0
3 True 11586 TOP 0
4 True 13015 BOTTOM 0
5 True 16336 TOP 0
6 True 12810 JUNGLE 0
7 True 17572 MIDDLE 0
8 True 8772 UTILITY 0
9 True 15725 BOTTOM 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 6664 3075 3158 3033 3065 3066 3364
1 0 4637 6653 3165 3116 3158 3191 3340
2 0 3157 3853 3165 3020 6653 0 3364
3 0 3075 2055 6630 3071 1028 3047 3340
4 0 3070 6676 3158 6691 3814 3086 3340
5 0 6632 3110 3158 3065 4401 3742 3340
6 0 3020 2031 4636 3100 3135 0 3364
7 0 3041 3020 3157 3115 4636 3135 3340
8 0 6616 3853 6617 3504 1004 0 3364
9 0 3508 3158 3042 6691 6609 3035 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 1 3 2 1
1 2 5 2 2
2 0 2 0 1
3 0 4 0 1
4 1 2 2 1
5 1 5 5 1
6 2 6 3 2
7 6 22 7 3
8 0 0 0 0
9 1 8 8 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 692 106638 7756
1 766 204783 32304
2 854 78753 16946
3 709 145 55
4 648 0 0
5 751 69188 17144
6 1335 147060 20884
7 439 171526 53130
8 1124 9763 6159
9 0 12215 3987
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 21557 170 0 2
1 19115 4 0 0
2 9750 4 0 0
3 35676 4 0 0
4 16516 6 0 0
5 21882 24 0 0
6 9334 142 0 0
7 18966 19 0 0
8 2113 0 0 0
9 5965 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 77796
1 1 2 6447
2 1 3 5881
3 1 4 131187
4 0 5 170749
5 0 6 236688
6 0 7 20964
7 0 8 9499
8 0 9 671
9 0 10 232824
physicalDamageDealtToChampions physicalDamageTaken role \
0 9396 19545 NONE
1 283 4800 SOLO
2 484 3657 SUPPORT
3 21375 24383 NONE
4 17817 4107 CARRY
5 18488 30593 SOLO
6 1184 25670 NONE
7 1811 19514 SOLO
8 89 2197 SUPPORT
9 14054 13363 CARRY
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 5 4 29 11 31
1 6 14 6 4 72
2 3 14 0 4 41
3 4 12 6 14 64
4 5 7 4 4 60
5 5 12 8 4 80
6 24 11 3 4 90
7 3 12 4 14 42
8 1 3 0 14 35
9 3 7 2 4 82
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 FavsThe False 100 JUNGLE 34
1 OriS2 False 100 MIDDLE 55
2 GHAL2020 False 100 UTILITY 38
3 FrenchyAkali False 100 TOP 24
4 pistmista False 100 BOTTOM 0
5 Antwaan False 200 TOP 16
6 ScurveyBob False 200 JUNGLE 13
7 Goddsent False 200 MIDDLE 1
8 Poorlymuzzles False 200 UTILITY 16
9 Dublaiar False 200 BOTTOM 0
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 2636 221381 18480
1 2636 212740 33961
2 2636 85653 18448
3 2636 132725 22822
4 2636 177335 17902
5 2636 310105 35633
6 2636 190969 22950
7 2636 182318 56120
8 2636 10435 6248
9 2636 246042 18041
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 42110 9966 60 592
1 24275 2227 229 482
2 13420 347 69 288
3 60679 15644 176 220
4 20684 4163 203 0
5 54861 10957 281 2043
6 35939 16804 25 256
7 40132 6197 132 28
8 4338 17550 3 29
9 19528 4290 255 43
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 273 1 36947
1 238 1 1510
2 218 1 1018
3 532 1 1392
4 321 3 6585
5 30 1 4230
6 166 1 22944
7 348 1 1292
8 74 5 0
9 0 3 1003
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1327 1008 1 4
1 1374 360 2 4
2 1018 12 0 4
3 1392 620 0 4
4 85 60 1 4
5 0 2384 0 6
6 882 933 0 6
7 1178 1651 2 6
8 0 26 0 6
9 0 200 2 6
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 23 4 0 4 False
1 26 3 0 16 False
2 71 1 4 34 False
3 23 2 2 11 False
4 29 1 1 16 False
5 20 1 0 13 True
6 14 0 4 0 True
7 33 0 3 16 True
8 9 2 0 5 True
9 27 0 0 17 True ,
assists baronKills bountyLevel champLevel championName \
0 3 0 0 12 Sylas
1 6 0 0 12 Olaf
2 5 0 0 13 Qiyana
3 4 0 0 11 Samira
4 7 0 0 11 Lux
5 6 0 2 14 Tryndamere
6 5 0 2 13 Evelynn
7 9 0 0 13 Mordekaiser
8 10 0 1 12 Xayah
9 16 0 0 11 Yuumi
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 793 1752 793
1 0 15942 0
2 3067 3067 3067
3 1216 2342 1216
4 1694 1694 1694
5 5973 15013 5973
6 1085 15365 1085
7 1994 7179 1994
8 2141 6614 2141
9 1150 1150 1150
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 6 0 0 False False
1 4 0 2 False False
2 6 0 0 False False
3 5 1 0 False False
4 5 1 0 False False
5 2 3 0 False True
6 4 0 1 False False
7 6 0 0 False False
8 3 2 0 False False
9 3 4 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 True False False
6 False True False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 7106 TOP 0
1 True 8569 JUNGLE 0
2 True 6453 MIDDLE 0
3 True 8970 BOTTOM 0
4 True 7415 UTILITY 0
5 True 12765 TOP 0
6 True 8969 JUNGLE 0
7 True 9973 MIDDLE 0
8 True 8195 BOTTOM 0
9 True 7317 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1082 2421 2031 3020 6655 3191 3340
1 0 6631 3111 3053 3076 0 0 3364
2 0 6693 2031 3158 3070 3133 1036 3340
3 0 6673 3047 6676 1036 0 1055 3340
4 0 6655 3853 3916 3020 2424 1028 3364
5 0 1054 3006 6672 3046 3133 1018 3340
6 0 4636 3157 3020 0 0 0 3340
7 0 1054 3047 3115 4633 6677 1042 3340
8 0 2031 6671 1054 3006 3123 1042 3340
9 0 3853 2055 6617 3011 1082 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 5 3 1
1 0 2 0 1
2 0 2 0 1
3 2 6 3 2
4 1 3 2 1
5 3 9 5 4
6 1 6 2 1
7 1 7 4 2
8 0 2 0 1
9 0 2 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 429 45757 11832
1 887 6463 0
2 596 4925 678
3 760 6682 1021
4 802 57660 20670
5 886 0 0
6 806 68450 9017
7 523 57583 16293
8 551 481 481
9 637 9614 3418
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 5115 4 0 0
1 5825 116 0 0
2 9316 0 0 0
3 6338 4 0 0
4 3941 0 0 0
5 8941 64 0 0
6 8205 72 0 0
7 6274 4 0 0
8 8402 12 0 0
9 4724 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 8550
1 0 2 85300
2 0 3 62025
3 0 4 60320
4 0 5 3085
5 0 6 128264
6 0 7 10383
7 0 8 19216
8 0 9 104557
9 0 10 3772
physicalDamageDealtToChampions physicalDamageTaken role \
0 312 9196 SOLO
1 5649 14982 NONE
2 6501 4891 SOLO
3 9078 8300 CARRY
4 1105 6074 SUPPORT
5 10922 8858 NONE
6 760 10915 NONE
7 3336 11123 SOLO
8 7536 7793 CARRY
9 1813 5535 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 12 4 4 130
1 11 11 2 4 119
2 4 14 5 4 87
3 4 7 3 4 82
4 3 4 4 14 187
5 4 4 3 12 79
6 3 4 13 11 653
7 4 4 5 14 94
8 6 7 4 4 162
9 7 14 7 3 422
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 FernyBoy20 False 100 TOP 12
1 RareCandles False 100 JUNGLE 6
2 PHSxTripleTom False 100 MIDDLE 11
3 Dublaiar False 100 BOTTOM 0
4 Namdac False 100 UTILITY 79
5 xXManchieNBL False 200 TOP 6
6 UP T0WN FUNK False 200 JUNGLE 6
7 Billioner False 200 MIDDLE 6
8 Telekonisis False 200 BOTTOM 15
9 ªsh False 200 UTILITY 17
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1558 54307 12144
1 1558 112539 8159
2 1558 67591 7819
3 1558 67003 10099
4 1558 61506 22436
5 1558 142728 11815
6 1558 90869 10219
7 1558 79412 20606
8 1558 105039 8018
9 1558 14612 6007
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 14730 2962 77 241
1 21457 8949 23 346
2 15405 458 76 38
3 15244 3125 125 0
4 10231 222 46 325
5 18473 4531 108 76
6 19525 6306 25 176
7 19085 4305 116 19
8 17241 2666 129 29
9 10259 11972 11 30
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 173 1 0
1 138 1 20775
2 198 1 640
3 142 2 0
4 148 1 760
5 69 1 14464
6 128 1 12034
7 199 1 2613
8 39 4 0
9 57 5 1225
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 417 0 6
1 2510 649 0 6
2 640 1198 0 6
3 0 606 1 6
4 660 215 0 6
5 893 673 1 2
6 441 404 2 2
7 976 1687 2 2
8 0 1045 0 2
9 775 0 0 2
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 10 0 2 5 False
1 13 0 4 0 False
2 10 0 0 8 False
3 15 1 3 7 False
4 35 1 3 13 False
5 21 3 1 11 True
6 13 0 0 7 True
7 13 0 3 6 True
8 27 2 0 10 True
9 39 5 1 21 True ,
assists baronKills bountyLevel champLevel championName \
0 3 0 0 13 Yone
1 4 0 0 12 Ekko
2 3 0 0 13 Malzahar
3 4 0 0 12 Tristana
4 6 0 0 11 Seraphine
5 11 0 3 14 Aatrox
6 11 0 1 14 Warwick
7 10 0 0 14 Diana
8 8 0 3 12 Kaisa
9 13 0 3 13 Thresh
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3590 3757 3590
1 87 6589 87
2 103 993 103
3 4124 7003 4124
4 0 930 0
5 3756 8515 3756
6 0 12941 0
7 207 5436 207
8 2929 5536 2929
9 880 2211 880
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 9 0 0 False False
1 7 3 1 False False
2 7 0 0 False False
3 5 0 0 False False
4 8 0 0 False False
5 3 0 0 False False
6 2 0 2 False False
7 4 2 0 False False
8 4 0 0 False True
9 1 2 0 True False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 9081 TOP 0
1 True 7802 JUNGLE 0
2 True 7177 MIDDLE 0
3 True 7790 BOTTOM 0
4 True 6901 UTILITY 0
5 True 8267 TOP 0
6 True 9930 JUNGLE 0
7 True 7942 MIDDLE 0
8 True 12503 BOTTOM 0
9 True 7799 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1055 6673 3006 3031 0 0 3340
1 0 3152 2031 3020 1043 1052 0 3364
2 0 3070 6655 3020 1052 0 0 3340
3 0 6671 1036 1055 1001 3086 1053 3340
4 0 3853 1026 6655 1052 1011 0 3340
5 0 1055 6630 2031 3047 3044 1028 3340
6 0 3748 3047 6632 3076 0 0 3340
7 0 3152 1056 3020 1043 1052 1052 3340
8 0 1055 6676 3046 6672 3006 1036 3340
9 0 3190 3050 3117 3857 3801 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 4 2 1
1 0 3 0 1
2 0 1 0 1
3 1 3 3 2
4 1 3 2 1
5 1 4 3 1
6 1 7 6 1
7 2 5 2 1
8 3 16 11 2
9 1 4 3 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 498 15023 4441
1 498 41146 7254
2 605 63415 14521
3 655 10111 1586
4 398 33779 12180
5 227 0 0
6 1102 37667 6518
7 792 74808 16480
8 690 6275 3282
9 777 14237 5449
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 8167 4 0 0
1 6816 81 0 0
2 5469 0 0 0
3 6401 4 0 0
4 5756 0 0 0
5 10733 11 0 0
6 9011 104 0 0
7 8823 12 0 0
8 6544 2 0 0
9 6598 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 89453
1 0 2 14188
2 0 3 9933
3 0 4 66806
4 0 5 3270
5 0 6 75229
6 0 7 58086
7 0 8 17777
8 0 9 86840
9 0 10 7398
physicalDamageDealtToChampions physicalDamageTaken role \
0 14360 11985 SOLO
1 1710 17096 NONE
2 375 6467 SOLO
3 7704 7797 CARRY
4 1520 6503 SUPPORT
5 10164 11674 SOLO
6 4612 17548 NONE
7 2382 7984 SOLO
8 17380 8788 CARRY
9 1137 5503 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 4 2 12 59
1 3 4 15 11 61
2 4 4 5 14 50
3 5 7 4 4 183
4 5 7 2 4 80
5 3 12 2 4 84
6 4 4 15 11 90
7 3 4 4 14 47
8 4 4 3 7 60
9 2 14 1 4 82
summonerName teamEarlySurrendered teamId teamPosition \
0 TheShadowSpectr False 100 TOP
1 Sub10Miler False 100 JUNGLE
2 Nitr1k False 100 MIDDLE
3 Blackhearts242 False 100 BOTTOM
4 xIcy77 False 100 UTILITY
5 JaySoulX False 200 TOP
6 ImFilinico False 200 JUNGLE
7 Bacca5678 False 200 MIDDLE
8 Flame6506 False 200 BOTTOM
9 Dublaiar False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 25 1593 116975 20935
1 11 1593 70003 9248
2 40 1593 77544 15841
3 4 1593 90902 9290
4 20 1593 37049 13700
5 11 1593 78598 10454
6 28 1593 104978 12073
7 10 1593 107304 19649
8 0 1593 102405 22595
9 30 1593 27941 6605
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 21194 2939 131 107
1 24912 9135 14 307
2 12909 0 111 120
3 14809 4187 104 21
4 12605 3400 24 116
5 23625 11287 80 149
6 27692 17907 13 244
7 17532 1893 87 80
8 15462 5666 146 16
9 12261 2246 47 78
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 283 1 12498
1 170 1 14668
2 212 0 4194
3 112 4 13985
4 181 5 0
5 47 1 3368
6 58 1 9224
7 116 1 14718
8 85 3 9289
9 27 4 6305
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 2133 1041 1 2
1 284 999 0 2
2 944 972 0 2
3 0 610 2 2
4 0 345 0 2
5 290 1218 1 3
6 942 1132 0 3
7 786 723 0 3
8 1932 128 0 3
9 18 158 1 3
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 14 0 1 8 False
1 23 3 4 3 False
2 15 0 2 8 False
3 10 0 0 6 False
4 11 0 0 6 False
5 12 0 1 7 True
6 12 0 0 5 True
7 14 2 0 10 True
8 6 0 0 4 True
9 37 2 2 18 True ,
assists baronKills bountyLevel champLevel championName \
0 13 0 0 18 Singed
1 11 0 0 15 Sylas
2 3 0 0 16 Viego
3 6 0 2 16 Caitlyn
4 18 0 0 16 Lux
5 13 0 0 17 Urgot
6 16 0 0 16 Warwick
7 16 0 1 17 Talon
8 9 0 0 18 Taliyah
9 22 0 0 15 Nautilus
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 5320 6924 5320
1 488 2240 488
2 4074 4240 4074
3 12025 24540 12025
4 2332 2332 2332
5 879 16563 879
6 0 10644 0
7 721 8655 721
8 2043 14275 2043
9 1337 2677 1337
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 11 1 0 True False
1 10 0 0 False True
2 13 0 1 False False
3 7 6 1 False False
4 9 0 0 True False
5 7 1 1 False False
6 13 0 2 False False
7 11 0 0 False False
8 5 5 0 False False
9 16 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False True False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 18045 TOP 0
1 False 15255 JUNGLE 0
2 False 11861 JUNGLE 0
3 False 16209 BOTTOM 2
4 False 11319 UTILITY 0
5 False 15467 TOP 0
6 False 12520 JUNGLE 0
7 False 15313 MIDDLE 0
8 False 14677 BOTTOM 0
9 False 9663 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3116 6653 3047 3041 4637 4401 3340
1 0 3158 3157 6656 3165 4629 1026 3340
2 0 1055 3153 3158 6672 3053 0 3340
3 0 3094 6671 2055 3006 3095 3031 3340
4 0 3853 3157 2055 6655 3020 3165 3364
5 2 6631 3047 3075 3748 3053 1033 3340
6 2 3047 3068 3075 3748 3067 0 3340
7 2 6693 3158 3042 3814 3035 6609 3340
8 2 3157 6655 2033 3135 3020 3165 3363
9 2 3860 3109 3050 3068 3076 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 6 17 3 2
1 3 15 4 3
2 1 4 2 1
3 2 12 5 1
4 0 4 0 1
5 2 13 9 2
6 1 7 2 2
7 4 14 3 1
8 4 14 6 2
9 0 2 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 303 146232 43677
1 570 105381 25458
2 456 2262 1377
3 701 6166 1139
4 397 78699 36425
5 1060 1716 159
6 592 57354 15518
7 329 0 0
8 719 162183 32027
9 212 24463 10540
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 13249 6 0 0
1 20348 105 0 0
2 9888 4 0 1
3 9856 52 0 1
4 7280 4 0 0
5 21463 20 1 0
6 35169 115 1 0
7 14695 4 1 0
8 13746 13 1 0
9 25278 0 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 9814
1 0 2 10348
2 0 3 123658
3 0 4 210223
4 0 5 6961
5 0 6 181348
6 0 7 50412
7 0 8 134234
8 0 9 16286
9 0 10 10298
physicalDamageDealtToChampions physicalDamageTaken role \
0 1505 19292 SOLO
1 1791 25937 NONE
2 13230 22529 NONE
3 21824 14120 CARRY
4 1351 7073 SUPPORT
5 27626 12781 SOLO
6 6647 14804 NONE
7 25558 12981 SOLO
8 1182 14349 CARRY
9 2964 12319 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 7 6 10 14 113
1 5 4 14 11 128
2 6 4 6 14 98
3 6 7 4 4 44
4 5 4 2 14 123
5 3 4 4 12 85
6 19 11 5 4 44
7 6 14 4 4 82
8 6 4 6 7 114
9 6 4 8 3 233
summonerName teamEarlySurrendered teamId teamPosition \
0 Dimitris Ozdz False 100 TOP
1 gr1gorakisXD False 100 JUNGLE
2 Moot251 False 100 MIDDLE
3 sugaaloop False 100 BOTTOM
4 Alloutwarrior False 100 UTILITY
5 MasterShifffu False 200 TOP
6 XxIrregularxX False 200 JUNGLE
7 Dublaiar False 200 MIDDLE
8 Castro4585 False 200 BOTTOM
9 salasarfortfire False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 59 2232 168475 47371
1 41 2232 127451 27981
2 14 2232 136067 16186
3 30 2232 227921 24177
4 115 2232 86048 38163
5 40 2232 207552 29266
6 28 2232 133091 22894
7 6 2232 135858 26708
8 16 2232 193427 34329
9 74 2232 40865 13505
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 33980 4366 152 546
1 47726 17198 25 417
2 33381 5786 172 41
3 24217 8998 145 171
4 14749 502 76 318
5 35203 7867 168 202
6 51442 22850 29 332
7 28046 3502 137 139
8 30008 8848 191 398
9 39010 2158 36 323
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 341 1 12427
1 404 1 11722
2 502 1 10146
3 235 3 11532
4 280 1 387
5 240 1 24486
6 483 1 25324
7 351 1 1623
8 186 3 14958
9 495 1 6103
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 2187 1438 2 2
1 732 1439 0 2
2 1578 963 1 2
3 1214 240 6 2
4 387 395 1 2
5 1480 957 0 10
6 728 1468 0 10
7 1149 369 1 10
8 1119 1912 0 10
9 0 1412 1 10
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 22 1 1 13 True
1 21 0 1 10 True
2 13 0 2 6 True
3 34 8 7 15 True
4 49 1 6 18 True
5 30 1 3 13 False
6 23 0 0 10 False
7 19 0 0 11 False
8 40 5 3 16 False
9 40 1 0 15 False ,
assists baronKills bountyLevel champLevel championName \
0 1 0 1 10 Graves
1 4 0 3 9 MasterYi
2 8 0 2 9 Talon
3 4 0 3 8 Ashe
4 3 0 0 7 Leona
5 1 0 0 9 Teemo
6 1 0 0 7 Vi
7 1 0 0 9 Akali
8 1 0 0 7 Xayah
9 2 0 0 7 Rakan
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 722 1648 722
1 734 8848 734
2 353 4557 353
3 697 1147 697
4 53 120 53
5 551 551 551
6 0 1101 0
7 0 800 0
8 637 3280 637
9 73 559 73
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 2 0 0 False False
1 3 0 2 False False
2 2 0 0 False True
3 2 0 0 False False
4 1 0 0 False False
5 3 0 0 False False
6 4 0 0 False False
7 6 0 0 False False
8 2 0 0 False False
9 5 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False True False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 4551 TOP 0
1 True 7289 JUNGLE 0
2 True 5637 MIDDLE 0
3 True 5828 BOTTOM 0
4 True 3428 UTILITY 0
5 True 3919 TOP 0
6 True 4284 JUNGLE 0
7 True 4067 MIDDLE 0
8 True 4184 BOTTOM 0
9 True 3686 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1055 1053 6670 1018 0 0 3364
1 0 6672 2031 3047 6677 1042 1018 3340
2 0 6693 1001 0 2031 0 0 3340
3 0 1055 3006 6670 1037 1042 0 3340
4 0 3859 3117 1033 3067 1029 0 3340
5 0 1056 1043 1026 3020 1052 0 3340
6 0 1039 2031 3078 1001 0 0 3340
7 0 1056 4636 1001 0 0 0 3340
8 0 1055 6670 1037 1018 0 0 3340
9 0 2031 3859 3117 4642 3067 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 2 0 1
1 3 9 3 2
2 1 3 2 1
3 2 5 3 2
4 0 1 0 1
5 0 1 0 1
6 0 2 0 1
7 0 2 0 1
8 1 3 3 2
9 0 2 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 510 885 585
1 542 2336 0
2 521 84 84
3 528 793 655
4 624 2824 915
5 488 17977 3562
6 611 3033 0
7 327 21861 3772
8 429 0 0
9 438 6211 2856
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 3372 0 0 0
1 2824 53 0 1
2 3177 0 0 0
3 1243 0 0 0
4 394 0 0 0
5 502 0 0 0
6 52 45 0 0
7 151 0 0 0
8 899 4 0 0
9 942 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 41034
1 0 2 36113
2 0 3 34803
3 0 4 29315
4 1 5 2923
5 0 6 12112
6 0 7 27712
7 0 8 5099
8 0 9 30875
9 0 10 4726
physicalDamageDealtToChampions physicalDamageTaken role \
0 3849 3564 SUPPORT
1 8066 9112 SUPPORT
2 5564 3129 SUPPORT
3 6947 5605 DUO
4 1176 4368 SUPPORT
5 1102 4957 SUPPORT
6 2593 8500 SUPPORT
7 459 8049 DUO
8 6848 5295 SUPPORT
9 1465 7270 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 4 1 12 81
1 6 11 2 4 49
2 2 14 3 4 81
3 1 4 2 7 48
4 1 14 1 4 56
5 2 4 1 14 184
6 2 11 2 4 96
7 3 14 3 4 62
8 2 4 3 7 41
9 3 14 2 4 230
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 Monos082 False 100 TOP 9
1 LettuceTheG False 100 JUNGLE 0
2 Dublaiar False 100 MIDDLE 2
3 BoHGlacios False 100 BOTTOM 23
4 rdunn False 100 UTILITY 21
5 Luciferrfyb False 200 TOP 13
6 UndueDragon07 False 200 JUNGLE 7
7 falorished False 200 MIDDLE 0
8 swaggyemi False 200 BOTTOM 4
9 Steak Dinner False 200 UTILITY 18
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 918 41920 4434
1 918 47878 10030
2 918 35944 5850
3 918 35198 7602
4 918 8441 2222
5 918 31964 4774
6 918 32583 2643
7 918 27357 4627
8 918 30875 6848
9 918 13166 4904
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 7097 781 71 135
1 12166 5124 7 68
2 6830 1320 58 68
3 7074 1696 76 323
4 4762 683 15 32
5 5589 441 51 153
6 9398 1907 2 177
7 9162 551 55 15
8 6511 1377 45 5
9 8255 745 21 47
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 35 1 0
1 58 1 9428
2 32 1 1057
3 29 3 5090
4 16 5 2692
5 20 1 1875
6 56 1 1837
7 132 1 396
8 28 2 0
9 60 4 2228
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 160 0 0
1 1963 228 1 0
2 202 524 0 0
3 0 224 0 0
4 130 0 0 0
5 110 130 0 1
6 50 845 0 1
7 396 961 0 1
8 0 316 0 1
9 582 42 0 1
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 8 0 0 4 True
1 3 0 0 1 True
2 3 0 0 2 True
3 7 0 1 3 True
4 8 0 0 5 True
5 6 0 0 4 False
6 9 0 0 4 False
7 6 0 0 4 False
8 0 0 0 0 False
9 6 1 0 3 False ,
assists baronKills bountyLevel champLevel championName \
0 2 0 0 14 Tryndamere
1 6 0 0 11 LeeSin
2 8 0 0 11 Pyke
3 3 0 0 9 Ezreal
4 10 0 0 10 Senna
5 9 0 2 13 Singed
6 1 0 0 12 Shyvana
7 4 0 0 13 Karthus
8 7 0 1 14 Samira
9 17 0 5 13 Velkoz
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3599 3791 3599
1 0 882 0
2 724 1506 724
3 177 3144 177
4 98 1513 98
5 1799 1799 1799
6 173 31459 173
7 1926 1926 1926
8 13708 14426 13708
9 2750 3047 2750
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 8 1 0 False False
1 9 0 0 False True
2 12 3 0 True False
3 14 0 0 False False
4 9 0 1 False False
5 6 0 0 False False
6 7 0 1 False False
7 6 0 0 False False
8 8 0 0 False False
9 2 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False True False
9 True False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 11462 TOP 0
1 False 8646 JUNGLE 0
2 False 7815 MIDDLE 0
3 False 6083 BOTTOM 0
4 False 6843 UTILITY 0
5 False 8921 TOP 0
6 False 7409 JUNGLE 0
7 False 7786 MIDDLE 0
8 False 18354 BOTTOM 0
9 False 10827 UTILITY 1
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 6672 3006 3031 1037 1018 3133 3340
1 1 3053 6630 2031 3047 0 0 3340
2 1 6693 2033 3111 3134 3077 0 3363
3 1 1055 3042 3158 3057 1036 1036 3340
4 1 6662 3094 3009 3864 1036 0 3340
5 0 2033 3116 4637 1001 1052 1028 3340
6 0 2031 3115 4636 1001 0 0 3364
7 0 1056 6653 3020 3191 3108 0 3340
8 0 3026 6676 6673 3031 3006 3072 3340
9 0 3853 3158 3157 1082 3070 6655 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 9 3 3
1 2 8 4 2
2 1 5 2 1
3 0 5 0 1
4 0 2 0 1
5 2 6 2 1
6 0 1 0 1
7 2 5 2 1
8 6 32 8 4
9 2 8 5 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 677 0 0
1 427 12832 2026
2 330 0 0
3 216 5288 3047
4 212 1010 478
5 325 67008 15252
6 297 65115 3938
7 315 68894 14467
8 229 8858 5131
9 425 48080 14587
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 15147 0 1 0
1 12910 60 1 0
2 8524 0 1 0
3 7611 0 1 0
4 9841 4 1 0
5 986 2 0 0
6 2469 111 0 0
7 608 0 0 0
8 2103 0 0 0
9 978 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 99700
1 0 2 40961
2 0 3 23522
3 0 4 34479
4 0 5 15356
5 0 6 2888
6 0 7 28073
7 0 8 4984
8 0 9 109311
9 0 10 4758
physicalDamageDealtToChampions physicalDamageTaken role \
0 18378 9218 SOLO
1 10880 13347 NONE
2 7042 10049 SOLO
3 10442 12488 CARRY
4 6811 7656 SUPPORT
5 562 15938 SOLO
6 476 18002 NONE
7 210 8565 SOLO
8 38453 24612 CARRY
9 1064 7228 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 6 14 16
1 4 4 9 11 21
2 3 14 4 6 21
3 5 7 3 4 20
4 2 3 0 4 81
5 6 14 4 6 25
6 2 4 11 11 24
7 2 4 3 3 20
8 5 7 4 4 26
9 3 4 5 14 19
summonerName teamEarlySurrendered teamId teamPosition \
0 RyeBreadPitt False 100 TOP
1 SSJ5RIC False 100 JUNGLE
2 Castle Black L False 100 MIDDLE
3 Pitouxz False 100 BOTTOM
4 Dublaiar False 100 UTILITY
5 tttttttttttttt11 False 200 TOP
6 Mqq12 False 200 JUNGLE
7 RealGhoztMX False 200 MIDDLE
8 Projected Growth False 200 BOTTOM
9 CuzImthebadguy False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 6 1295 104734 21140
1 16 1295 59748 13191
2 16 1295 25053 8465
3 2 1295 40097 13630
4 32 1295 16366 7290
5 31 1295 71013 16761
6 1 1295 111421 4535
7 13 1295 74130 14930
8 8 1295 122593 44688
9 17 1295 58861 18081
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 25355 8295 145 42
1 27564 3888 12 277
2 19466 1342 35 108
3 20996 1997 65 30
4 18264 4782 10 252
5 19583 1704 95 232
6 20940 5849 11 77
7 10205 428 104 102
8 27608 6765 118 94
9 8766 0 54 145
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 267 1 5034
1 195 1 5954
2 263 1 1531
3 312 3 330
4 148 5 0
5 170 1 1116
6 144 1 18231
7 128 1 252
8 168 3 4423
9 41 0 6022
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 2762 989 1 10
1 284 1306 0 10
2 1423 892 0 10
3 140 896 0 10
4 0 767 0 10
5 946 2658 1 1
6 120 469 2 1
7 252 1030 1 1
8 1102 891 3 1
9 2429 559 2 1
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 9 1 0 7 False
1 10 0 0 6 False
2 14 4 0 8 False
3 4 0 0 3 False
4 9 0 0 6 False
5 4 0 1 2 True
6 12 0 2 0 True
7 9 0 0 6 True
8 6 0 0 4 True
9 43 2 4 13 True ,
assists baronKills bountyLevel champLevel championName \
0 4 0 0 15 Jax
1 2 0 0 15 MonkeyKing
2 7 0 0 15 Vladimir
3 6 0 0 13 Tristana
4 6 0 0 13 Lux
5 7 0 2 16 Mordekaiser
6 4 1 6 18 Nasus
7 7 0 0 16 Katarina
8 2 0 2 15 Ezreal
9 11 0 0 13 Alistar
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3202 3818 3202
1 0 5376 0
2 477 477 477
3 2949 3909 2949
4 1217 3066 1217
5 2460 41938 2460
6 16916 24580 16916
7 866 2094 866
8 3298 13777 3298
9 2712 4504 2712
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 14 2 0 False False
1 3 1 0 False False
2 7 0 0 False False
3 2 1 0 False False
4 3 0 1 False False
5 2 4 3 True False
6 2 1 1 False True
7 4 4 0 False False
8 4 0 0 False False
9 3 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False True False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 11434 TOP 0
1 False 11975 JUNGLE 0
2 False 9093 MIDDLE 0
3 False 9607 BOTTOM 0
4 False 8286 UTILITY 0
5 False 13934 JUNGLE 0
6 False 17007 TOP 1
7 False 9752 MIDDLE 0
8 False 10697 BOTTOM 1
9 False 7981 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 2 3153 6632 3111 3091 0 0 3340
1 2 3748 6632 3111 3071 0 0 3340
2 2 1082 3152 3157 3020 3108 1052 3340
3 2 1055 6672 3006 3046 3123 3086 3340
4 2 3853 3135 3020 6655 0 0 3364
5 0 4633 3157 4637 3020 3067 0 3364
6 0 1053 6632 3047 3042 3074 6694 3340
7 0 6632 3153 1029 0 3047 0 3340
8 0 3508 3158 3042 1036 0 1055 3340
9 0 3860 3068 3076 3801 3047 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 4 4 3
1 2 6 3 1
2 0 0 0 0
3 0 1 0 1
4 2 4 2 1
5 2 10 7 2
6 2 14 7 1
7 1 2 2 1
8 1 3 2 2
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 445 28254 5924
1 862 40492 1893
2 686 91862 12837
3 1186 24817 647
4 1191 39855 16668
5 1538 178878 19168
6 1068 18884 4621
7 864 61334 7251
8 524 4674 2161
9 1185 21257 3927
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 9289 12 1 0
1 10165 130 1 0
2 9381 4 1 0
3 5319 0 1 0
4 5358 4 1 1
5 10102 171 0 0
6 7242 38 0 0
7 9081 2 0 0
8 6073 8 0 0
9 7575 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 99884
1 0 2 108033
2 0 3 18934
3 0 4 93043
4 0 5 4848
5 0 6 28234
6 0 7 250347
7 0 8 31913
8 0 9 109289
9 0 10 6855
physicalDamageDealtToChampions physicalDamageTaken role \
0 12368 22909 SOLO
1 10068 17691 NONE
2 1141 12513 SOLO
3 9828 5356 CARRY
4 1141 3268 SUPPORT
5 1841 19413 NONE
6 27065 17047 SOLO
7 4739 9498 SOLO
8 3682 8140 CARRY
9 659 7987 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 3 12 25
1 4 4 16 11 20
2 3 4 3 14 31
3 3 7 2 4 20
4 5 4 4 14 29
5 5 4 18 11 348
6 4 4 4 12 16
7 5 14 3 4 23
8 4 7 2 4 81
9 3 4 3 14 23
summonerName teamEarlySurrendered teamId teamPosition \
0 XxLelouch011xX False 100 TOP
1 VelkozSideChick False 100 JUNGLE
2 TheBest IV False 100 MIDDLE
3 TheJunior0402 False 100 BOTTOM
4 nishimaizhima False 100 UTILITY
5 Rotome False 200 JUNGLE
6 RyeBreadPitt False 200 TOP
7 Maíd False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 PinkNeufchâtel False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 23 1977 135713 18892
1 18 1977 158245 13067
2 4 1977 113056 14728
3 1 1977 127593 12071
4 66 1977 45860 18966
5 9 1977 225212 22840
6 28 1977 271935 31981
7 2 1977 94163 12907
8 0 1977 120937 5843
9 27 1977 33461 4897
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 33015 2735 168 147
1 28491 10558 63 198
2 23015 17264 172 81
3 10867 4113 186 10
4 9215 1719 30 236
5 30319 14646 41 135
6 26248 7622 235 241
7 19395 3395 152 12
8 14675 2073 189 18
9 16735 7744 46 76
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 360 1 7575
1 115 1 9719
2 214 1 2260
3 33 2 9732
4 114 7 1156
5 96 1 18097
6 67 1 2704
7 168 1 916
8 107 2 6973
9 106 5 5348
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 600 815 1 10
1 1105 634 0 10
2 750 1120 0 10
3 1596 191 1 10
4 1156 589 0 10
5 1831 803 2 2
6 294 1957 6 2
7 916 814 0 2
8 0 460 0 2
9 310 1172 2 2
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 34 2 2 12 False
1 17 1 1 8 False
2 15 0 2 8 False
3 19 1 0 10 False
4 58 0 4 26 False
5 27 4 2 9 True
6 35 1 1 12 True
7 28 4 1 15 True
8 14 0 0 9 True
9 56 1 4 21 True ,
assists baronKills bountyLevel champLevel championName \
0 6 0 2 18 Jayce
1 18 0 5 17 Graves
2 9 1 12 18 Kayle
3 5 0 1 15 Ezreal
4 19 0 1 16 Bard
5 2 0 0 16 Garen
6 3 0 0 13 Diana
7 2 0 0 15 Akali
8 0 0 0 17 Xayah
9 7 0 0 13 Rakan
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3503 3890 3503
1 2210 25821 2210
2 8556 19742 8556
3 2383 6182 2383
4 780 2169 780
5 3788 6338 3788
6 484 35874 484
7 498 2028 498
8 6831 19710 6831
9 1584 3255 1584
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 8 0 0 False False
1 1 0 4 False False
2 2 0 0 False False
3 2 0 0 False False
4 7 0 0 False False
5 6 0 0 True False
6 11 0 1 False True
7 7 2 0 False False
8 4 2 0 False False
9 6 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 13560 TOP 0
1 True 14622 JUNGLE 0
2 True 17831 MIDDLE 0
3 True 9050 BOTTOM 1
4 True 8879 UTILITY 0
5 True 11406 TOP 1
6 True 10333 JUNGLE 0
7 True 9175 MIDDLE 0
8 True 17102 BOTTOM 0
9 True 7954 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 1055 6692 3047 3042 6694 1031 3340
1 1 3006 2031 6673 3046 6676 3031 3364
2 1 1058 3006 3041 3115 4633 4629 3340
3 1 3508 3158 3004 3133 0 1055 3340
4 1 3853 3190 3158 3110 2015 1018 3340
5 1 3078 3047 3742 3075 1037 0 3340
6 1 3115 2031 3020 3152 3165 0 3340
7 1 3115 4636 3020 3191 0 0 3340
8 1 3006 6672 3046 3031 3072 3033 3363
9 1 3860 2065 3050 3111 3114 1052 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 8 2 1
1 1 6 5 1
2 2 16 12 2
3 0 3 0 1
4 0 1 0 1
5 2 4 2 1
6 0 3 0 1
7 2 4 2 1
8 1 9 7 1
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 342 24105 5409
1 1433 13000 1258
2 1345 156729 25494
3 1171 9904 2238
4 531 48878 7963
5 1258 3821 899
6 638 102494 10572
7 882 68860 15049
8 1606 0 0
9 1279 14304 5466
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 6785 0 0 0
1 8656 166 0 2
2 5932 24 0 0
3 2339 0 0 0
4 10996 0 0 0
5 8447 28 0 0
6 8410 108 0 0
7 9008 4 0 0
8 8536 68 0 0
9 9713 4 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 146732
1 0 2 218635
2 0 3 45706
3 0 4 65011
4 0 5 8270
5 0 6 129028
6 0 7 28793
7 0 8 15811
8 0 9 295847
9 0 10 7104
physicalDamageDealtToChampions physicalDamageTaken role \
0 25453 20856 SOLO
1 24704 22452 NONE
2 5451 17899 SOLO
3 2792 5803 CARRY
4 1088 6854 SUPPORT
5 9045 21527 SOLO
6 1098 21025 NONE
7 720 16234 SOLO
8 38435 14085 CARRY
9 527 11086 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 5 12 5 4 274
1 5 4 22 11 15
2 5 4 4 12 348
3 1 7 0 4 81
4 4 12 5 4 24
5 6 4 8 14 12
6 3 4 17 11 25
7 4 4 0 14 189
8 4 4 5 7 349
9 4 3 4 4 92
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 Shalashaskaa False 100 TOP 13
1 RyeBreadPitt False 100 JUNGLE 35
2 Rotome False 100 MIDDLE 12
3 Dublaiar False 100 BOTTOM 0
4 Luminier1 False 100 UTILITY 25
5 Yakyek False 200 TOP 27
6 Wastopalia False 200 JUNGLE 6
7 treytin False 200 MIDDLE 0
8 Acearrow False 200 BOTTOM 26
9 Isithlord1996 False 200 UTILITY 23
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 2122 189397 30863
1 2122 246834 28070
2 2122 212667 32769
3 2122 83210 5031
4 2122 57149 9052
5 2122 137898 14994
6 2122 148284 12272
7 2122 86211 15770
8 2122 314618 42162
9 2122 25593 5993
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 31665 10961 215 205
1 33221 10354 80 747
2 25600 15142 245 317
3 8957 1180 104 18
4 18509 5520 45 450
5 30844 2022 150 139
6 30100 5672 37 134
7 26081 3632 139 29
8 23244 2502 270 107
9 21735 5439 34 97
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 290 1 18560
1 43 1 15198
2 85 5 10231
3 73 2 8294
4 146 5 0
5 236 1 5049
6 378 1 16996
7 252 1 1540
8 151 2 18771
9 201 4 4184
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 4023 0 6
1 2107 2112 0 6
2 1824 1768 3 6
3 0 814 2 6
4 0 658 0 6
5 5049 870 2 6
6 601 665 1 6
7 0 838 0 6
8 3726 622 3 6
9 0 935 0 6
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 18 0 1 11 True
1 23 0 5 1 True
2 24 0 6 10 True
3 16 0 0 12 True
4 34 0 4 16 True
5 19 0 1 10 False
6 18 0 1 10 False
7 23 2 0 13 False
8 42 3 1 13 False
9 74 1 3 36 False ,
assists baronKills bountyLevel champLevel championName \
0 3 0 0 15 Mordekaiser
1 2 0 0 13 Kayn
2 2 0 0 14 Pantheon
3 2 0 0 12 Ezreal
4 3 0 0 11 MissFortune
5 8 0 0 15 Ornn
6 8 1 4 15 Khazix
7 6 0 7 15 AurelionSol
8 7 0 9 14 Caitlyn
9 20 0 1 14 Yuumi
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 1806 9485 1806
1 264 17278 264
2 1553 7106 1553
3 580 1015 580
4 416 1959 416
5 3150 4810 3150
6 2807 20583 2807
7 3883 12159 3883
8 9121 22845 9121
9 532 952 532
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 3 1 0 False False
1 5 1 1 False False
2 5 4 0 False False
3 7 0 0 False False
4 8 0 1 False False
5 7 1 0 False False
6 4 5 0 False False
7 2 4 2 False True
8 1 1 0 False False
9 1 5 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 True False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 10740 TOP 0
1 False 9078 JUNGLE 0
2 False 9166 MIDDLE 0
3 False 7548 BOTTOM 0
4 False 6481 UTILITY 0
5 False 8475 TOP 0
6 False 10610 JUNGLE 1
7 False 11914 MIDDLE 0
8 False 13362 BOTTOM 0
9 False 8444 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 1054 2421 4633 3111 4637 3108 3340
1 1 3158 2031 6630 6333 3044 0 3364
2 1 6692 2033 3071 3111 0 0 3363
3 1 3508 3158 3004 0 0 1055 3340
4 1 6653 1052 3020 3853 3070 0 3340
5 0 1054 3111 7004 3075 1006 0 3340
6 0 3158 6693 6695 3134 1037 2055 3364
7 0 2421 3116 2033 7010 3020 1058 3340
8 0 1038 2420 7006 3006 3095 3094 3340
9 0 2065 3011 3853 0 3504 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 6 6 1
1 1 3 2 1
2 1 3 3 2
3 0 2 0 1
4 0 0 0 0
5 0 0 0 0
6 1 5 4 1
7 2 11 7 3
8 2 11 9 2
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 1331 110474 15003
1 960 7770 0
2 954 4906 475
3 789 3504 1482
4 438 32926 7435
5 404 27362 8030
6 463 8874 742
7 713 106837 15033
8 698 6480 2388
9 702 7417 4134
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 6625 8 1 0
1 10066 123 1 0
2 5507 15 1 0
3 4154 0 1 0
4 5292 4 1 1
5 10778 0 0 0
6 6804 130 0 0
7 5648 24 0 0
8 3924 12 0 0
9 1184 4 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 16177
1 0 2 116993
2 0 3 111261
3 0 4 49743
4 0 5 18719
5 0 6 63567
6 0 7 136681
7 0 8 11926
8 0 9 143195
9 0 10 1534
physicalDamageDealtToChampions physicalDamageTaken role \
0 2182 18714 SOLO
1 8610 19588 NONE
2 11120 12447 SOLO
3 3804 9052 CARRY
4 6411 8603 SUPPORT
5 5725 12173 SOLO
6 13964 21771 NONE
7 1579 16250 SOLO
8 21933 8037 CARRY
9 385 4809 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 2 12 179
1 16 11 4 4 63
2 4 4 4 14 348
3 3 7 1 4 81
4 4 4 3 3 155
5 4 4 3 12 176
6 3 4 16 11 298
7 5 4 5 14 339
8 4 7 2 4 317
9 5 3 5 14 210
summonerName teamEarlySurrendered teamId teamPosition \
0 Coolgum15 False 100 TOP
1 Liquid Toaster False 100 JUNGLE
2 Rotome False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 Blame This Guy False 100 UTILITY
5 PotatoGuy319 False 200 TOP
6 BundtCakes69 False 200 JUNGLE
7 Katnip Everdank False 200 MIDDLE
8 MadokaMagiCat False 200 BOTTOM
9 supafierce False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 5 1743 134505 18019
1 12 1743 138564 9199
2 16 1743 120972 12397
3 0 1743 53247 5286
4 16 1743 52539 14740
5 35 1743 100975 13792
6 7 1743 153381 15329
7 22 1743 121459 16924
8 28 1743 152694 25680
9 8 1743 9960 5528
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 26009 7209 172 46
1 31583 12568 26 355
2 18236 4013 159 40
3 13426 1080 114 0
4 14320 238 37 307
5 26632 3431 162 435
6 29429 14614 27 150
7 22972 7247 144 341
8 13378 7194 162 114
9 6088 12617 7 33
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 91 1 7854
1 191 1 13801
2 129 1 4804
3 220 3 0
4 234 1 893
5 175 1 10046
6 100 1 7826
7 67 1 2696
8 21 3 3018
9 21 5 1008
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 833 670 1 7
1 589 1928 1 7
2 802 282 0 7
3 0 220 0 7
4 893 424 0 7
5 36 3680 1 3
6 622 853 1 3
7 311 1074 2 3
8 1358 1416 3 3
9 1008 93 0 3
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 16 1 2 8 False
1 15 1 3 2 False
2 21 4 0 8 False
3 16 0 2 9 False
4 31 0 3 18 False
5 17 1 1 10 True
6 28 7 3 5 True
7 27 4 2 13 True
8 13 2 4 5 True
9 47 5 4 22 True ,
assists baronKills bountyLevel champLevel championName \
0 0 0 0 3 Mordekaiser
1 0 0 0 3 Karthus
2 0 0 0 3 Veigar
3 0 0 0 1 Ezreal
4 0 0 0 3 Pantheon
5 0 0 0 3 Aatrox
6 0 0 0 3 Sett
7 0 0 0 3 Viktor
8 0 0 0 2 Twitch
9 0 0 0 2 Soraka
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 0 0 0
1 0 0 0
2 0 0 0
3 0 0 0
4 0 0 0
5 0 0 0
6 0 0 0
7 0 0 0
8 272 272 272
9 82 82 82
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 0 0 0 False False
1 0 0 0 False False
2 0 0 0 False False
3 0 0 0 False False
4 0 0 0 False False
5 0 0 0 False False
6 0 0 0 False False
7 0 0 0 False False
8 0 0 0 False False
9 0 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False True
1 False False True
2 False False True
3 False False True
4 False False True
5 False False True
6 False False True
7 False False True
8 False False True
9 False False True
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 946 TOP 0
1 False 1068 JUNGLE 0
2 False 907 MIDDLE 0
3 False 683 AFK 0
4 False 715 UTILITY 0
5 False 904 TOP 0
6 False 1053 JUNGLE 0
7 False 1002 MIDDLE 0
8 False 1016 BOTTOM 0
9 False 761 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1054 2003 0 0 0 0 3340
1 0 1039 2031 0 0 0 0 3340
2 0 1056 2003 0 0 0 0 3340
3 0 2003 2010 0 0 0 1055 3340
4 0 3854 2003 0 0 0 0 3340
5 0 1054 0 0 0 0 0 3340
6 0 1035 2031 0 0 0 0 3364
7 0 1056 2003 2010 0 0 0 3340
8 0 1056 2003 0 0 0 0 3340
9 0 3850 2003 0 0 0 0 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 0 0 0 0
1 0 0 0 0
2 0 0 0 0
3 0 0 0 0
4 0 0 0 0
5 0 0 0 0
6 0 0 0 0
7 0 0 0 0
8 0 0 0 0
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 0 2011 326
1 0 7454 0
2 0 2433 33
3 0 0 0
4 0 0 0
5 0 0 0
6 0 1731 0
7 0 654 323
8 0 272 0
9 0 261 91
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 0 0 0 0
1 359 16 0 0
2 323 0 0 0
3 0 0 0 0
4 91 0 0 0
5 326 0 0 0
6 293 16 0 0
7 33 0 0 0
8 0 0 0 0
9 0 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 1253
1 0 2 1058
2 0 3 799
3 0 4 0
4 0 5 867
5 0 6 3345
6 0 7 6788
7 0 8 1269
8 0 9 2502
9 0 10 416
physicalDamageDealtToChampions physicalDamageTaken role summoner1Casts \
0 225 512 DUO 1
1 0 1362 DUO 0
2 0 0 DUO 0
3 0 0 DUO 0
4 270 93 DUO 0
5 302 342 DUO 1
6 0 1537 DUO 0
7 0 183 DUO 0
8 40 33 DUO 0
9 0 427 DUO 0
summoner1Id summoner2Casts summoner2Id summonerLevel summonerName \
0 4 0 12 179 Coolgum15
1 4 1 11 102 tekstudios
2 4 0 12 348 Rotome
3 7 0 4 81 Dublaiar
4 4 1 14 273 SkybeatzTech
5 4 0 12 222 QianNidalao
6 4 1 11 159 S0ULmann
7 12 0 4 83 Uzi RNG
8 4 0 7 259 gilgadu
9 4 0 7 106 Deez Nuts Vlogs
teamEarlySurrendered teamId teamPosition timeCCingOthers timePlayed \
0 True 100 TOP 0 199
1 True 100 JUNGLE 0 199
2 True 100 MIDDLE 0 199
3 True 100 AFK 0 199
4 True 100 UTILITY 0 199
5 False 200 TOP 0 199
6 False 200 JUNGLE 0 199
7 False 200 MIDDLE 0 199
8 False 200 BOTTOM 0 199
9 False 200 UTILITY 0 199
totalDamageDealt totalDamageDealtToChampions totalDamageTaken totalHeal \
0 5649 551 512 0
1 9200 0 1721 674
2 3232 33 323 20
3 0 0 0 0
4 889 292 196 0
5 3345 302 669 68
6 9977 0 1831 785
7 1924 323 216 0
8 3162 51 33 0
9 678 91 449 50
totalMinionsKilled totalTimeCCDealt totalTimeSpentDead totalUnitsHealed \
0 12 1 0 0
1 0 37 0 1
2 13 0 0 1
3 0 0 0 0
4 1 1 0 0
5 10 5 0 1
6 0 8 0 1
7 16 0 0 0
8 17 21 0 0
9 0 3 0 1
trueDamageDealt trueDamageDealtToChampions trueDamageTaken turretKills \
0 2385 0 0 0
1 688 0 0 0
2 0 0 0 0
3 0 0 0 0
4 22 22 11 0
5 0 0 0 0
6 1456 0 0 0
7 0 0 0 0
8 387 11 0 0
9 0 0 22 0
turretsLost visionScore visionWardsBoughtInGame wardsKilled \
0 0 0 0 0
1 0 0 0 0
2 0 1 0 0
3 0 0 0 0
4 0 0 0 0
5 0 0 0 0
6 0 1 0 0
7 0 0 0 0
8 0 0 0 0
9 0 0 0 0
wardsPlaced win
0 1 False
1 0 False
2 1 False
3 0 False
4 1 False
5 0 True
6 1 True
7 0 True
8 0 True
9 1 True ,
assists baronKills bountyLevel champLevel championName \
0 7 0 0 16 Kindred
1 1 0 0 14 Mordekaiser
2 3 0 0 18 Tryndamere
3 5 0 0 16 Draven
4 15 0 0 15 Zilean
5 9 0 0 16 Ezreal
6 14 1 1 18 Pantheon
7 11 0 2 18 Evelynn
8 19 0 2 18 Senna
9 20 0 0 16 Zyra
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 986 6489 986
1 1411 9828 1411
2 949 5968 949
3 4196 4196 4196
4 1938 2752 1938
5 1073 7558 1073
6 4955 16787 4955
7 2772 27039 2772
8 6862 13150 6862
9 852 2364 852
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 15 0 1 False False
1 10 1 0 False False
2 9 0 0 False False
3 12 0 0 False False
4 12 6 0 False False
5 4 0 0 False False
6 5 1 1 False False
7 4 1 2 False False
8 8 1 0 False True
9 11 1 1 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 13497 JUNGLE 0
1 False 9606 TOP 0
2 False 16004 MIDDLE 0
3 False 16117 BOTTOM 0
4 False 9856 UTILITY 0
5 False 9541 BOTTOM 0
6 False 16035 TOP 1
7 False 17276 JUNGLE 0
8 False 18010 MIDDLE 0
9 False 10557 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 6676 3031 3006 6672 3086 1042 3340
1 1 1054 3076 3068 3047 4637 2420 3340
2 1 3158 3508 6631 3031 3046 3035 3340
3 1 3072 6691 3006 6676 3031 1031 3340
4 1 3020 3853 3040 6653 3108 0 3364
5 0 3508 3158 3004 3133 1036 1055 3340
6 0 6692 1033 3111 3071 3053 6333 3363
7 0 4636 3157 3100 3089 3020 3102 3340
8 0 3031 6691 3009 3042 6676 3094 3340
9 0 3853 6653 3020 3165 1011 1052 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 7 2 2
1 0 2 0 1
2 3 10 3 2
3 4 13 4 2
4 0 0 0 0
5 0 2 0 1
6 3 14 5 3
7 5 22 8 2
8 4 17 6 2
9 1 3 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 564 18279 3086
1 686 79430 8111
2 570 0 0
3 338 0 0
4 390 59326 14306
5 691 9882 1974
6 865 11343 2499
7 715 168410 34320
8 711 725 407
9 336 73881 27194
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 15518 113 1 0
1 7673 16 1 0
2 15457 15 1 0
3 17990 18 1 0
4 11730 2 1 0
5 3976 5 0 0
6 8027 25 0 0
7 5364 140 0 0
8 6007 8 0 0
9 4735 11 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 113338
1 0 2 12895
2 0 3 200260
3 0 4 158972
4 0 5 2504
5 0 6 73527
6 0 7 173371
7 0 8 15545
8 0 9 162649
9 0 10 2348
physicalDamageDealtToChampions physicalDamageTaken role \
0 14704 21875 NONE
1 1028 22494 SOLO
2 21002 20653 CARRY
3 30024 24953 SOLO
4 245 12317 SUPPORT
5 4655 9518 SOLO
6 26272 21568 NONE
7 752 27792 NONE
8 41372 18796 SOLO
9 319 16640 NONE
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 11 11 328
1 3 4 2 12 48
2 6 14 5 4 111
3 5 4 7 7 232
4 2 4 0 14 423
5 4 7 2 4 81
6 5 4 3 12 348
7 6 4 23 11 179
8 6 4 5 14 216
9 4 4 8 21 50
summonerName teamEarlySurrendered teamId teamPosition \
0 Poor Lost Soulz False 100 JUNGLE
1 crackerkelly1023 False 100 TOP
2 SirTuck11 False 100 MIDDLE
3 KHAhoot Me Daddy False 100 BOTTOM
4 Boast False 100 UTILITY
5 Dublaiar False 200 BOTTOM
6 Rotome False 200 TOP
7 Coolgum15 False 200 JUNGLE
8 PoweradePal False 200 MIDDLE
9 Tatertits524 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 4 2163 143959 20186
1 3 2163 95318 9140
2 11 2163 215593 22704
3 14 2163 168693 30489
4 12 2163 61830 14552
5 0 2163 83409 6630
6 32 2163 189038 28979
7 15 2163 193615 36678
8 29 2163 166085 44105
9 20 2163 81190 27514
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 38296 12849 33 172
1 31267 4415 126 44
2 37560 8576 210 238
3 43478 9867 167 143
4 24199 7968 49 133
5 13510 2797 112 0
6 31702 10007 188 92
7 34399 15984 16 269
8 25862 14047 188 85
9 21927 1106 56 62
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 534 10 12340
1 360 1 2992
2 303 1 15333
3 414 3 9720
4 380 3 0
5 140 3 0
6 221 1 4324
7 158 1 9658
8 344 4 2710
9 343 1 4960
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 2395 902 0 7
1 0 1098 1 7
2 1702 1449 1 7
3 465 535 3 7
4 0 151 0 7
5 0 15 0 5
6 208 2106 3 5
7 1604 1242 1 5
8 2324 1058 1 5
9 0 551 1 5
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 23 0 1 12 False
1 30 1 2 11 False
2 18 0 3 9 False
3 19 0 1 10 False
4 54 6 6 17 False
5 10 0 0 9 True
6 39 2 0 10 True
7 28 1 1 13 True
8 15 1 1 7 True
9 42 1 0 25 True ,
assists baronKills bountyLevel champLevel championName \
0 17 0 0 17 Shen
1 11 0 0 15 Warwick
2 10 0 0 17 Pantheon
3 15 0 0 15 Jhin
4 15 0 0 15 Leona
5 11 0 0 18 Mordekaiser
6 22 2 0 17 Zac
7 8 0 12 18 Zed
8 7 0 3 18 Samira
9 25 0 0 16 Nami
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 246 1856 246
1 477 8929 477
2 961 8596 961
3 2805 6961 2805
4 876 2676 876
5 4194 28476 4194
6 364 17732 364
7 7483 18191 7483
8 1802 9625 1802
9 1491 2750 1491
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 8 1 0 False False
1 13 0 2 False False
2 8 1 1 False True
3 9 0 0 False False
4 6 0 0 False False
5 6 2 1 False False
6 7 2 2 False False
7 8 1 0 False False
8 15 0 0 False False
9 5 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 11073 TOP 0
1 False 13681 JUNGLE 0
2 False 15109 MIDDLE 0
3 False 12500 BOTTOM 0
4 False 9782 UTILITY 0
5 False 16650 TOP 1
6 False 11934 JUNGLE 1
7 False 20168 MIDDLE 0
8 False 15137 BOTTOM 0
9 False 11519 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 2 1054 3068 3111 4401 1011 3077 3340
1 2 6632 3047 3748 3053 3211 3067 3340
2 2 6692 6609 3158 3053 3071 1057 3363
3 2 6671 3009 6676 3036 3123 1055 3340
4 2 3190 3860 3050 3117 3109 1033 3340
5 0 3157 4633 3047 3075 4637 1011 3340
6 0 3047 3083 3068 3075 0 0 3364
7 0 6692 6694 3158 6676 3814 3071 3340
8 0 3031 6673 3006 6676 3123 1018 3340
9 0 3860 2065 3222 3157 2055 3158 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 4 0 1
1 2 13 3 1
2 4 14 7 2
3 1 5 2 1
4 1 5 4 1
5 1 9 7 3
6 0 3 0 1
7 3 18 12 2
8 3 11 3 2
9 1 3 3 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 1050 48650 16034
1 305 41496 15922
2 845 3051 2060
3 512 7978 2154
4 998 27658 6846
5 586 177435 30751
6 558 115551 22157
7 493 15491 1519
8 337 21047 3407
9 601 20285 11383
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 14705 4 1 0
1 23462 88 1 0
2 14841 12 1 0
3 8776 1 1 0
4 9539 0 1 0
5 13664 24 0 0
6 14132 115 0 0
7 4834 78 0 0
8 11519 8 0 0
9 4169 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 45630
1 0 2 61514
2 0 3 178633
3 0 4 141336
4 0 5 17080
5 0 6 20225
6 0 7 23100
7 0 8 227048
8 0 9 155106
9 0 10 3876
physicalDamageDealtToChampions physicalDamageTaken role \
0 11311 24580 SOLO
1 12409 27607 NONE
2 34509 21971 SOLO
3 16990 16337 CARRY
4 3976 15553 SUPPORT
5 2581 23732 SOLO
6 1597 28969 NONE
7 37105 22537 SOLO
8 26716 25268 CARRY
9 912 10735 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 12 5 4 252
1 22 11 4 4 247
2 4 4 2 12 348
3 6 7 2 4 81
4 9 14 6 4 88
5 4 4 6 14 221
6 5 4 20 11 203
7 5 4 7 14 249
8 6 14 6 4 40
9 8 3 5 4 186
summonerName teamEarlySurrendered teamId teamPosition \
0 Zodiacsquad False 100 TOP
1 itrior False 100 JUNGLE
2 Rotome False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 GodLikeLawl False 100 UTILITY
5 Shamallama21 False 200 TOP
6 MooMan89 False 200 JUNGLE
7 Yoseb False 200 MIDDLE
8 EmpressQiyana20 False 200 BOTTOM
9 Pepperbaker False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 57 2320 122774 28863
1 42 2320 109027 28982
2 37 2320 182130 37016
3 31 2320 155123 19233
4 78 2320 63526 12400
5 11 2320 204742 38444
6 62 2320 149430 25173
7 11 2320 258126 40788
8 2 2320 191908 31883
9 66 2320 26400 12295
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 41429 4392 143 265
1 54035 20177 22 351
2 38331 9266 217 59
3 26098 7453 178 113
4 27851 3580 68 150
5 37942 14770 227 59
6 45461 36732 31 423
7 27981 6347 174 335
8 37819 5610 203 3
9 15037 13821 28 336
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 387 1 28492
1 411 1 6016
2 316 1 445
3 255 3 5808
4 257 5 18787
5 252 1 7081
6 251 5 10779
7 262 1 15585
8 496 1 15755
9 125 5 2238
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1517 2144 0 10
1 650 2965 0 10
2 445 1518 1 10
3 88 984 1 10
4 1577 2758 0 10
5 5112 545 1 2
6 1419 2358 1 2
7 2163 610 4 2
8 1760 1030 0 2
9 0 132 1 2
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 20 2 1 14 False
1 24 0 3 10 False
2 17 1 1 9 False
3 12 0 0 8 False
4 36 1 2 19 False
5 35 2 4 14 True
6 25 2 3 5 True
7 28 1 2 14 True
8 20 0 2 10 True
9 55 3 7 20 True ,
assists baronKills bountyLevel champLevel championName \
0 9 0 0 18 Mordekaiser
1 13 0 0 17 Ekko
2 3 0 0 16 Talon
3 10 0 0 14 Aphelios
4 16 0 0 15 Morgana
5 7 0 0 17 Tryndamere
6 8 0 10 18 Khazix
7 19 0 0 17 Pantheon
8 15 0 0 17 Ezreal
9 26 0 0 16 Nautilus
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3441 8366 3441
1 0 30601 0
2 2342 6581 2342
3 4608 8746 4608
4 1919 4129 1919
5 8350 9983 8350
6 2642 31021 2642
7 4843 20165 4843
8 3006 3859 3006
9 346 3548 346
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 13 1 0 False False
1 11 1 4 False False
2 11 0 0 False False
3 17 0 0 False False
4 11 3 0 False False
5 12 2 0 False False
6 11 4 1 False False
7 7 0 1 False False
8 7 0 0 True False
9 9 11 0 False True
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 True False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 18002 TOP 0
1 True 14433 JUNGLE 0
2 True 12845 MIDDLE 0
3 True 10460 BOTTOM 0
4 True 11555 UTILITY 0
5 True 17312 TOP 1
6 True 17377 JUNGLE 0
7 True 16550 MIDDLE 0
8 True 13624 BOTTOM 0
9 True 9650 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 3157 3116 3047 4637 4633 3075 3340
1 1 3157 3152 1058 3020 3165 3100 3364
2 1 3814 6693 3158 3042 3133 1036 3340
3 1 1018 6672 3006 3085 1037 1053 3340
4 1 3117 6656 3853 3157 3165 1026 3364
5 0 6694 6672 6675 3006 3031 3123 3340
6 0 6691 3111 6676 3814 6694 0 3364
7 0 6692 3071 3158 3814 3074 1057 3363
8 0 3508 3158 3042 6691 3035 3133 3363
9 0 3860 3190 4643 3117 3067 3076 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 5 18 5 2
1 3 10 3 1
2 2 8 3 1
3 0 5 0 1
4 1 4 2 1
5 6 17 3 2
6 4 20 10 2
7 3 16 7 2
8 2 9 3 1
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 310 150690 40727
1 371 161613 26855
2 506 10 10
3 319 1022 799
4 560 49606 14747
5 501 0 0
6 465 8984 2221
7 616 4936 1062
8 662 12730 7343
9 767 20416 10757
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 3648 30 0 0
1 6967 143 0 0
2 3054 36 0 0
3 4309 6 0 0
4 4610 0 0 0
5 26013 32 0 0
6 15831 131 0 0
7 18193 23 0 0
8 11038 0 0 0
9 14164 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 24821
1 0 2 32839
2 0 3 141997
3 0 4 73148
4 0 5 6042
5 0 6 186829
6 0 7 182876
7 0 8 183331
8 0 9 95043
9 0 10 8045
physicalDamageDealtToChampions physicalDamageTaken role \
0 5293 52101 DUO
1 3390 39862 NONE
2 13068 26815 DUO
3 14316 27521 CARRY
4 452 22576 SUPPORT
5 41568 17933 SOLO
6 33177 21174 NONE
7 45937 12601 SOLO
8 16877 8693 CARRY
9 2421 8379 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 5 12 6 4 225
1 6 4 21 11 310
2 4 4 7 14 171
3 6 4 10 11 33
4 2 14 6 4 79
5 4 4 4 6 191
6 6 4 21 11 101
7 5 4 2 12 348
8 6 7 3 4 81
9 5 4 6 14 124
summonerName teamEarlySurrendered teamId teamPosition \
0 Kaizer X King False 100 TOP
1 Frank the Tank09 False 100 JUNGLE
2 0020002 False 100 MIDDLE
3 KirandyNA False 100 BOTTOM
4 MystikPeanut False 100 UTILITY
5 TheNeoKnight01 False 200 TOP
6 OnelyEbi False 200 JUNGLE
7 Rotome False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 cherrisu False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 27 2281 183892 50299
1 25 2281 211599 31940
2 3 2281 143464 14123
3 24 2281 94180 16430
4 69 2281 56704 16254
5 11 2281 200439 45657
6 13 2281 204105 37373
7 41 2281 191045 47000
8 1 2281 109782 24508
9 84 2281 35327 14138
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 57993 20532 140 342
1 48215 21439 51 522
2 31122 5954 132 204
3 33054 4121 89 113
4 28394 5055 56 97
5 46344 12665 160 88
6 38953 15773 45 355
7 32751 8385 187 70
8 21445 4029 162 11
9 23917 1593 34 342
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 433 1 8380
1 402 1 17146
2 365 1 1457
3 537 1 20009
4 318 1 1054
5 454 1 13610
6 369 1 12244
7 293 1 2777
8 249 3 2008
9 280 5 6865
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 4278 2243 0 6
1 1694 1385 0 6
2 1045 1253 1 6
3 1314 1222 3 6
4 1054 1207 0 6
5 4089 2397 4 4
6 1974 1947 0 4
7 0 1957 0 4
8 288 1712 2 4
9 960 1372 0 4
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 23 1 3 14 False
1 37 1 7 8 False
2 23 0 2 12 False
3 13 0 3 6 False
4 86 3 10 34 False
5 23 2 2 8 True
6 25 8 2 5 True
7 11 0 0 8 True
8 20 0 3 10 True
9 84 10 9 38 True ,
assists baronKills bountyLevel champLevel championName \
0 16 0 2 17 Teemo
1 9 0 1 15 Elise
2 9 0 0 15 Sylas
3 12 0 0 14 Ezreal
4 23 0 0 15 Yuumi
5 5 0 0 14 Akali
6 10 1 0 15 LeeSin
7 6 0 0 15 Ryze
8 4 0 0 15 Twitch
9 14 0 0 14 Thresh
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 9418 18394 9418
1 1929 10419 1929
2 2295 4671 2295
3 5762 6723 5762
4 1916 2032 1916
5 0 1645 0
6 0 10929 0
7 1267 4771 1267
8 5709 13532 5709
9 824 2733 824
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 1 1 False True
1 7 0 2 False False
2 11 0 0 False False
3 6 0 0 False False
4 3 0 0 False False
5 10 0 0 False False
6 8 0 1 False False
7 7 0 0 False False
8 11 3 0 False False
9 9 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False True False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 15405 TOP 0
1 False 10957 JUNGLE 0
2 False 12667 MIDDLE 1
3 False 12789 BOTTOM 0
4 False 9695 UTILITY 0
5 False 8070 TOP 0
6 False 12277 JUNGLE 0
7 False 10597 MIDDLE 0
8 False 15763 BOTTOM 0
9 False 9102 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 4637 3020 6653 0 3165 3115 3340
1 0 4636 3100 3020 4630 1026 0 3340
2 0 2421 6656 1082 3020 3100 3089 3340
3 0 3508 3158 3042 6691 3035 3133 3340
4 0 3853 6617 6616 3222 3114 0 3340
5 1 3157 3152 3020 1052 0 1082 3364
6 1 3071 6630 3053 1031 3111 1036 3340
7 1 3040 3158 6656 3157 1028 0 3340
8 1 6653 3089 1052 3040 3115 3006 3340
9 1 3857 3190 3050 3117 3076 1011 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 4 11 3 2
1 2 8 3 3
2 2 13 6 2
3 2 9 7 3
4 1 4 3 2
5 1 3 2 1
6 2 8 4 2
7 2 6 3 1
8 4 16 4 2
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 600 125422 36830
1 624 96235 14696
2 538 106316 31420
3 822 14912 6913
4 803 16791 10930
5 499 43630 9860
6 963 33481 3258
7 475 100484 14218
8 379 58647 13359
9 432 17244 6494
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 11671 12 0 0
1 8363 131 0 0
2 19766 0 0 0
3 5592 0 0 0
4 2964 0 0 0
5 22349 0 1 0
6 24540 113 1 0
7 20615 2 1 0
8 17757 25 1 0
9 17560 0 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 24758
1 0 2 25383
2 0 3 15458
3 0 4 95103
4 0 5 2296
5 0 6 9471
6 0 7 88635
7 0 8 9264
8 0 9 55784
9 0 10 9084
physicalDamageDealtToChampions physicalDamageTaken role \
0 2384 8430 SOLO
1 1749 20707 NONE
2 2091 21734 SOLO
3 11210 8645 CARRY
4 904 4042 SUPPORT
5 376 4985 SOLO
6 17220 16514 NONE
7 940 4099 SOLO
8 11353 8988 CARRY
9 803 4792 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 5 4 7 14 120
1 13 11 4 4 59
2 4 4 7 14 62
3 5 7 1 4 81
4 7 3 10 14 133
5 3 4 2 14 44
6 15 11 5 4 64
7 4 4 5 12 17
8 5 4 6 7 697
9 4 4 1 14 49
summonerName teamEarlySurrendered teamId teamPosition \
0 LIION28 False 100 TOP
1 CarbonInfinity False 100 JUNGLE
2 hildris False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 Alece False 100 UTILITY
5 VscoGuy False 200 TOP
6 Attor0 False 200 JUNGLE
7 SpiderRamen False 200 MIDDLE
8 RoboRexton False 200 BOTTOM
9 LastOfTheNinjas False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 61 1985 153335 40399
1 27 1985 131684 17773
2 39 1985 139512 34339
3 0 1985 110914 18189
4 29 1985 23045 13297
5 0 1985 58066 10577
6 13 1985 129463 20899
7 9 1985 121638 15159
8 13 1985 142033 33153
9 32 1985 33735 7397
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 20910 2160 185 550
1 31076 10126 7 272
2 44072 8791 143 351
3 16569 2137 160 37
4 8591 18281 12 58
5 27879 995 70 37
6 42354 11652 25 399
7 25710 2458 128 71
8 28103 7156 142 448
9 23024 1351 48 91
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 305 1 3154
1 227 1 10065
2 340 1 17738
3 159 3 898
4 92 5 3957
5 339 1 4964
6 274 1 7346
7 258 1 11890
8 317 3 27601
9 255 4 7405
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1184 808 3 3
1 1327 2005 2 3
2 828 2571 1 3
3 66 2331 1 3
4 1462 1583 1 3
5 340 544 0 8
6 420 1299 0 8
7 0 995 1 8
8 8440 1357 2 8
9 100 671 0 8
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 37 2 2 11 True
1 18 0 1 9 True
2 12 0 0 8 True
3 13 0 0 8 True
4 10 0 1 5 True
5 4 0 0 2 False
6 23 0 1 12 False
7 3 0 0 2 False
8 26 3 0 11 False
9 13 0 0 7 False ,
assists baronKills bountyLevel champLevel championName \
0 2 0 0 13 Sett
1 6 0 0 11 LeeSin
2 1 0 0 13 Veigar
3 1 0 0 10 Vayne
4 4 0 0 9 Senna
5 0 0 0 11 Kayle
6 4 0 2 13 Jax
7 2 0 3 13 Irelia
8 4 0 0 10 Jhin
9 8 0 0 11 Seraphine
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3228 10575 3228
1 0 2315 0
2 4053 4053 4053
3 103 103 103
4 0 4717 0
5 2157 2285 2157
6 2801 22424 2801
7 3062 5865 3062
8 3275 3275 3275
9 2023 2533 2023
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 4 2 0 False False
1 3 1 0 False False
2 6 1 0 False False
3 3 0 0 False False
4 3 0 0 False False
5 4 0 0 False False
6 1 0 2 True False
7 6 1 0 False True
8 3 0 0 False False
9 2 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 8700 TOP 0
1 True 6997 JUNGLE 0
2 True 8479 MIDDLE 0
3 True 5459 BOTTOM 0
4 True 5237 UTILITY 0
5 True 5662 TOP 0
6 True 11203 JUNGLE 0
7 True 10366 MIDDLE 0
8 True 5550 BOTTOM 0
9 True 5683 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 6631 3075 3047 2055 1028 1036 3340
1 0 3047 2055 3067 3133 6692 1036 3340
2 0 1056 6656 3020 3135 1052 0 3340
3 0 6672 3006 1042 0 0 1055 3340
4 0 3864 6662 3047 3086 0 0 3364
5 0 1054 3006 1043 1026 4635 0 3340
6 0 3078 2031 3053 3047 3091 0 3340
7 0 6670 3111 1057 3153 1018 1053 3340
8 0 1055 2003 3009 6670 1037 1018 3340
9 0 3853 2003 3158 6617 0 0 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 2 6 3 1
1 1 3 2 1
2 1 4 2 1
3 1 2 2 1
4 0 1 0 1
5 0 0 0 0
6 2 12 10 2
7 1 7 3 2
8 0 0 0 0
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 696 458 58
1 537 19621 1782
2 411 68553 6362
3 577 0 0
4 618 755 211
5 326 21877 1309
6 1034 25884 5852
7 305 10957 3327
8 548 605 236
9 545 21550 6191
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 4992 4 0 0
1 4491 82 0 0
2 2958 4 0 0
3 3158 0 0 0
4 2343 0 0 0
5 280 4 0 0
6 4339 96 0 0
7 4027 18 0 1
8 497 0 0 0
9 747 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 63163
1 0 2 47189
2 0 3 9773
3 0 4 22058
4 0 5 9259
5 0 6 24686
6 0 7 77087
7 0 8 78200
8 0 9 48734
9 0 10 2414
physicalDamageDealtToChampions physicalDamageTaken role \
0 9605 11695 NONE
1 9467 13572 NONE
2 569 8731 SOLO
3 1436 4995 CARRY
4 4574 5888 SUPPORT
5 228 7710 SOLO
6 16708 15112 NONE
7 9147 13894 SOLO
8 3347 5076 CARRY
9 458 5566 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 12 3 4 233
1 2 4 11 11 136
2 3 4 1 12 85
3 3 7 2 4 81
4 3 4 2 14 133
5 2 4 2 12 27
6 3 4 13 11 39
7 6 14 3 4 60
8 0 4 0 14 29
9 3 4 3 3 94
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 Grav333 False 100 TOP 26
1 LordTaxEvasion False 100 JUNGLE 17
2 toetoethumb False 100 MIDDLE 12
3 Dublaiar False 100 BOTTOM 2
4 Alece False 100 UTILITY 28
5 kyliekan False 200 TOP 2
6 LunaChanss False 200 JUNGLE 21
7 tankNspank7 False 200 MIDDLE 10
8 SkyraLoL False 200 BOTTOM 10
9 Taco121 False 200 UTILITY 18
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1293 78529 12064
1 1293 75873 11528
2 1293 78326 6931
3 1293 23903 1891
4 1293 13335 4972
5 1293 58579 1538
6 1293 117831 23271
7 1293 92417 13239
8 1293 52179 3584
9 1293 23965 6650
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 17069 1168 113 227
1 18664 6972 10 423
2 12037 0 134 69
3 8201 1416 76 2
4 8329 5204 5 132
5 8828 1065 89 119
6 20542 12430 24 278
7 18697 3057 126 51
8 5699 856 86 33
9 6804 1408 12 130
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 139 1 14907
1 37 1 9062
2 155 0 0
3 72 2 1845
4 71 5 3321
5 99 2 12015
6 38 1 14859
7 163 1 3259
8 67 1 2840
9 44 4 0
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 2400 381 1 6
1 278 600 0 6
2 0 347 1 6
3 454 48 0 6
4 186 97 0 6
5 0 837 1 2
6 709 1090 2 2
7 764 774 1 2
8 0 126 2 2
9 0 490 0 2
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 15 3 0 7 False
1 13 2 0 8 False
2 17 1 1 4 False
3 9 0 0 6 False
4 21 0 1 9 False
5 9 0 0 6 True
6 15 0 1 7 True
7 10 1 0 7 True
8 6 0 0 4 True
9 21 0 1 12 True ,
assists baronKills bountyLevel champLevel championName \
0 12 0 0 17 Illaoi
1 6 1 0 18 Jax
2 5 0 0 17 Pantheon
3 5 0 0 14 Ezreal
4 8 0 2 14 Xerath
5 1 0 0 16 Camille
6 3 0 3 17 Kindred
7 6 0 0 17 Akali
8 6 0 0 14 Jinx
9 6 0 0 15 Lux
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 4303 9415 4303
1 7210 32106 7210
2 3802 8884 3802
3 2757 16557 2757
4 1312 6247 1312
5 6276 6276 6276
6 0 29080 0
7 4536 4536 4536
8 3723 7134 3723
9 3174 4310 3174
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 6 1 0 False False
1 7 2 2 False False
2 6 3 0 False False
3 6 0 1 False False
4 2 2 0 False False
5 11 1 0 False False
6 4 0 3 False True
7 11 3 0 True False
8 5 2 0 False False
9 3 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 True False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 14294 TOP 0
1 False 15560 JUNGLE 0
2 False 15432 MIDDLE 1
3 False 9712 BOTTOM 0
4 False 9258 UTILITY 0
5 False 11445 TOP 1
6 False 16335 JUNGLE 0
7 False 13016 MIDDLE 0
8 False 10181 BOTTOM 0
9 False 12023 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 3053 6630 3065 3047 0 6333 3340
1 1 3078 3047 3071 3074 3053 0 3364
2 1 6692 3053 3158 3814 3074 0 3363
3 1 3508 3158 3004 3133 1036 1055 3363
4 1 3853 3020 6655 4628 1052 0 3364
5 1 1055 3078 3074 3047 3044 1028 3340
6 1 6672 3072 3006 6676 3153 0 3340
7 1 3100 3165 3157 4636 3020 0 3363
8 1 3085 3036 6672 0 1001 0 3340
9 1 3853 3020 3157 6655 1052 4628 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 6 3 1
1 4 10 3 2
2 4 15 5 2
3 0 1 0 1
4 1 2 2 1
5 0 1 0 1
6 3 11 4 2
7 3 8 3 2
8 1 2 2 1
9 1 4 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 778 147 122
1 904 47042 3531
2 800 4520 1667
3 540 4628 1264
4 1216 66349 23912
5 384 1512 1512
6 1071 29109 5669
7 532 114492 24824
8 1561 3098 1388
9 1184 89847 17846
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 15376 16 0 0
1 10558 142 0 0
2 15350 14 0 0
3 8401 8 0 0
4 4632 8 0 0
5 3450 32 1 0
6 8631 159 1 0
7 7144 0 1 0
8 7617 4 1 0
9 6218 18 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 169582
1 0 2 198552
2 0 3 181106
3 0 4 77106
4 0 5 3306
5 0 6 153388
6 0 7 168755
7 0 8 18594
8 0 9 109198
9 0 10 6908
physicalDamageDealtToChampions physicalDamageTaken role \
0 24510 18937 SOLO
1 11982 22933 NONE
2 25892 16074 SOLO
3 4279 6868 CARRY
4 86 6133 SUPPORT
5 10002 33058 SOLO
6 16847 21846 NONE
7 1319 26259 SOLO
8 11979 9149 CARRY
9 318 6922 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 4 12 88
1 5 4 24 11 65
2 6 4 4 12 348
3 5 7 1 4 81
4 2 3 1 4 176
5 6 14 4 4 478
6 20 11 5 4 221
7 6 4 5 14 195
8 3 4 5 7 267
9 3 4 3 21 220
summonerName teamEarlySurrendered teamId teamPosition \
0 GasStationSushi False 100 TOP
1 GandalfTheTHICC False 100 JUNGLE
2 Rotome False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 Thick2BThighs False 100 UTILITY
5 Twink Xrath False 200 TOP
6 Black Twink False 200 JUNGLE
7 A40N15 False 200 MIDDLE
8 StridingSnow False 200 BOTTOM
9 RosePaladin False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 5 2362 169807 24711
1 12 2362 260787 16587
2 27 2362 185626 27559
3 0 2362 83854 5544
4 16 2362 69656 23998
5 19 2362 211980 18766
6 15 2362 246222 28128
7 1 2362 136375 26592
8 22 2362 118982 14143
9 39 2362 105236 19074
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 42398 15438 167 50
1 37311 17765 83 347
2 34544 12345 196 62
3 15758 3504 118 0
4 11283 2342 32 116
5 36902 8311 156 320
6 30783 18245 66 236
7 33547 5930 160 55
8 17039 3676 149 71
9 13177 1540 72 347
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 170 1 78
1 167 1 15192
2 204 1 0
3 170 4 2119
4 58 1 0
5 379 1 57079
6 110 10 48358
7 355 1 3288
8 171 3 6685
9 127 1 8479
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 78 8084 3 7
1 1074 3819 2 7
2 0 3118 2 7
3 0 488 0 7
4 0 517 1 7
5 7251 394 3 8
6 5610 306 1 8
7 448 144 1 8
8 774 272 0 8
9 909 36 2 8
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 24 1 3 12 True
1 22 2 5 3 True
2 31 3 3 10 True
3 14 0 0 10 True
4 58 3 3 26 True
5 22 1 1 13 False
6 32 0 4 13 False
7 41 4 5 16 False
8 26 2 0 15 False
9 80 1 3 36 False ,
assists baronKills bountyLevel champLevel championName \
0 0 0 0 11 Vayne
1 2 0 0 10 Tryndamere
2 0 0 0 11 Zed
3 1 0 0 9 Samira
4 2 0 0 10 Lux
5 2 0 8 12 Sett
6 6 0 5 11 Kayn
7 3 0 1 12 Veigar
8 3 0 0 10 Jhin
9 10 0 0 10 Soraka
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 1970 2679 1970
1 196 1761 196
2 247 1297 247
3 193 459 193
4 0 484 0
5 5752 18901 5752
6 0 21783 0
7 2916 7136 2916
8 2317 2702 2317
9 312 2089 312
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 1 0 False False
1 7 0 0 False False
2 5 0 0 False False
3 2 0 0 False False
4 2 1 0 False False
5 0 0 0 False True
6 2 1 2 True False
7 3 0 0 False False
8 1 0 0 False False
9 2 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 4946 TOP 0
1 True 5138 JUNGLE 0
2 True 5638 MIDDLE 0
3 True 5242 BOTTOM 0
4 True 5874 UTILITY 0
5 True 8781 TOP 1
6 True 8695 JUNGLE 0
7 True 6288 MIDDLE 0
8 True 5889 BOTTOM 0
9 True 5325 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 1055 2003 6673 0 0 0 3340
1 1 6670 2031 3006 1053 1037 0 3340
2 1 6692 2031 3158 0 0 0 3340
3 1 6673 3047 0 0 0 1055 3340
4 1 3853 6655 1052 3158 0 0 3364
5 0 6631 1055 3153 3047 0 0 3340
6 0 6693 3004 2031 3158 1037 0 3340
7 0 6655 2423 3020 3108 0 1056 3340
8 0 1055 6671 1036 3009 0 0 3340
9 0 3851 3047 6617 0 0 0 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 0 0 0 0
1 0 1 0 1
2 0 4 0 1
3 0 1 0 1
4 1 2 2 1
5 1 8 8 2
6 2 8 5 3
7 0 3 0 1
8 1 2 2 1
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 595 0 0
1 689 3533 0
2 392 3175 549
3 1049 2998 298
4 1045 35572 7577
5 0 240 240
6 535 6377 887
7 700 47006 3462
8 1108 2891 1137
9 360 16757 4239
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 1185 0 0 0
1 3213 69 0 0
2 2458 0 0 0
3 2668 1 0 0
4 1440 0 0 0
5 1411 4 0 0
6 1624 95 0 0
7 480 0 0 0
8 2563 0 0 0
9 2984 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 37022
1 0 2 52438
2 0 3 46886
3 0 4 29405
4 0 5 3180
5 0 6 65162
6 0 7 82051
7 0 8 7385
8 0 9 63429
9 0 10 5225
physicalDamageDealtToChampions physicalDamageTaken role \
0 3851 6320 SOLO
1 6332 17272 NONE
2 7815 5858 SOLO
3 1623 6177 CARRY
4 209 3810 SUPPORT
5 10082 10491 SOLO
6 9540 13218 NONE
7 314 5992 SOLO
8 5573 4832 CARRY
9 249 2627 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 14 3 4 226
1 11 11 2 4 124
2 3 4 4 14 92
3 3 7 1 4 80
4 2 14 1 4 50
5 1 12 4 4 77
6 2 4 12 11 140
7 0 14 2 4 48
8 2 4 2 7 48
9 2 4 3 3 68
summonerName teamEarlySurrendered teamId teamPosition \
0 Yuimii False 100 TOP
1 Darkknight777777 False 100 JUNGLE
2 Kibaa False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 R00MCAJS False 100 UTILITY
5 YourUrinal False 200 TOP
6 Pr1nceoftroy False 200 JUNGLE
7 itzzBearded False 200 MIDDLE
8 ApollonBesT7 False 200 BOTTOM
9 DeCaro91 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 2 1237 45321 4530
1 9 1237 60540 6872
2 4 1237 50598 8901
3 0 1237 32404 1922
4 50 1237 39052 8086
5 9 1237 73741 10848
6 4 1237 98705 10878
7 2 1237 57384 3777
8 16 1237 69515 6711
9 30 1237 25157 4489
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 8033 409 89 2
1 20578 6615 4 140
2 8393 767 78 84
3 9125 2123 84 1
4 5251 0 46 273
5 12849 2446 117 47
6 15232 7037 15 174
7 6868 80 88 6
8 7612 1425 78 102
9 5717 8642 22 194
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 116 1 8299
1 144 1 4568
2 140 1 536
3 56 3 0
4 61 0 300
5 0 1 8338
6 42 1 10276
7 90 1 2992
8 30 2 3194
9 24 5 3175
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 678 527 0 5
1 540 92 0 5
2 536 76 0 5
3 0 279 0 5
4 300 0 0 5
5 525 946 4 0
6 449 390 0 0
7 0 396 0 0
8 0 216 1 0
9 0 106 0 0
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 12 1 0 7 False
1 10 0 1 4 False
2 10 0 0 6 False
3 7 0 0 5 False
4 29 1 1 13 False
5 6 0 1 3 True
6 14 1 0 2 True
7 8 0 0 5 True
8 8 0 1 5 True
9 15 1 0 11 True ,
assists baronKills bountyLevel champLevel championName \
0 4 0 2 14 Malphite
1 3 0 0 14 Nocturne
2 4 0 0 13 MasterYi
3 4 0 0 12 Ezreal
4 5 0 0 10 Maokai
5 4 0 0 14 Sett
6 4 0 2 11 Amumu
7 1 0 0 13 Akali
8 8 0 0 12 Aphelios
9 10 0 1 10 Anivia
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 915 3530 915
1 0 17645 0
2 686 11884 686
3 2514 3076 2514
4 0 88 0
5 5638 7563 5638
6 501 7351 501
7 986 3853 986
8 1370 3578 1370
9 969 2074 969
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 3 2 0 False False
1 2 2 2 False False
2 7 0 0 False False
3 4 0 0 False False
4 6 2 0 False False
5 2 0 0 False False
6 5 0 1 False False
7 3 2 0 False True
8 5 0 0 False False
9 4 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 True False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 7222 TOP 0
1 True 12418 JUNGLE 0
2 True 7861 MIDDLE 0
3 True 7338 BOTTOM 0
4 True 4632 UTILITY 0
5 True 9366 TOP 0
6 True 8307 JUNGLE 0
7 True 9514 MIDDLE 0
8 True 7311 BOTTOM 0
9 True 6769 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3047 3068 3082 3024 0 0 3340
1 0 6691 2031 3814 3158 3026 0 3364
2 0 6691 2031 3006 6676 0 0 3340
3 0 3508 3158 3070 3133 1036 1055 3340
4 0 3859 6662 2033 2055 1033 0 3364
5 0 1055 6630 3158 3053 3067 0 3340
6 0 3068 2031 3076 0 0 3047 3340
7 0 3157 4633 3020 1026 1054 1011 3340
8 0 6671 3006 3086 1042 1042 0 3340
9 0 3853 6655 1001 3070 1052 1052 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 2 2 1
1 2 11 9 3
2 1 5 2 1
3 0 1 0 1
4 0 0 0 0
5 1 4 4 2
6 1 4 2 1
7 2 9 6 2
8 1 3 3 1
9 0 2 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 404 34584 13515
1 776 9586 930
2 433 0 0
3 709 5143 3208
4 358 19861 6146
5 925 905 905
6 653 56086 5562
7 886 63864 11486
8 955 940 489
9 964 25816 11433
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 2423 0 0 0
1 5623 144 0 0
2 8592 4 0 0
3 4309 0 0 0
4 9890 0 0 0
5 11508 12 0 1
6 5483 93 0 0
7 2491 6 0 0
8 2663 0 0 0
9 3722 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 22602
1 0 2 130725
2 0 3 71337
3 0 4 54795
4 0 5 3250
5 0 6 83843
6 0 7 17624
7 0 8 16042
8 0 9 49386
9 0 10 1805
physicalDamageDealtToChampions physicalDamageTaken role \
0 2492 7738 SOLO
1 16163 12951 NONE
2 8672 6705 SOLO
3 2707 4082 CARRY
4 776 5971 SUPPORT
5 11909 13432 SOLO
6 1112 11043 NONE
7 546 14962 SOLO
8 6671 7397 CARRY
9 739 6777 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 12 3 4 64
1 13 11 3 4 87
2 3 14 2 4 92
3 3 7 2 4 80
4 4 4 5 7 76
5 2 12 3 4 199
6 1 4 9 11 46
7 3 4 3 14 84
8 3 4 2 7 88
9 4 14 3 4 176
summonerName teamEarlySurrendered teamId teamPosition \
0 WaffleMan1212 False 100 TOP
1 Huroku False 100 JUNGLE
2 SoggyTatorTot12 False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 manono1311 False 100 UTILITY
5 ForeverExi1e False 200 TOP
6 asianBred False 200 JUNGLE
7 asianpoop1122 False 200 MIDDLE
8 pwner100000 False 200 BOTTOM
9 ShungiteKnight69 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 31 1486 66679 16007
1 116 1486 152803 18809
2 0 1486 80943 11402
3 0 1486 62324 5915
4 34 1486 25297 6922
5 25 1486 101402 14919
6 20 1486 84215 7782
7 0 1486 84852 13234
8 14 1486 50347 7181
9 38 1486 28648 13146
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 12633 2194 124 414
1 19428 10513 22 463
2 15578 3631 100 4
3 8555 1404 142 0
4 17499 3417 23 251
5 25551 6858 138 165
6 17155 3863 13 162
7 18840 4680 133 34
8 11246 1930 97 90
9 11131 264 17 349
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 76 1 9492
1 27 1 12491
2 136 1 9605
3 113 2 2385
4 141 5 2185
5 73 1 16653
6 147 1 10504
7 82 1 4945
8 134 2 20
9 121 1 1025
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 2471 0 4
1 1716 853 0 4
2 2729 280 0 4
3 0 164 1 4
4 0 1637 0 4
5 2104 611 3 1
6 1107 629 0 1
7 1201 1387 0 1
8 20 1186 0 1
9 973 631 1 1
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 16 2 1 8 False
1 11 2 2 4 False
2 11 0 1 7 False
3 9 0 0 7 False
4 22 4 2 10 False
5 15 0 2 8 True
6 16 0 3 6 True
7 27 2 1 9 True
8 13 0 2 7 True
9 53 2 6 18 True ,
assists baronKills bountyLevel champLevel championName \
0 0 0 0 9 Tryndamere
1 0 0 0 7 Graves
2 0 0 0 8 Heimerdinger
3 3 0 0 8 Ezreal
4 3 0 0 7 Morgana
5 1 0 8 11 Renekton
6 8 0 3 10 Warwick
7 10 0 3 11 Lux
8 2 0 8 9 Tristana
9 3 0 1 8 Blitzcrank
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 0 0 0
1 0 1082 0
2 0 414 0
3 0 3500 0
4 0 1789 0
5 2910 2910 2910
6 1233 8533 1233
7 2089 5754 2089
8 1697 3526 1697
9 1234 1354 1234
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 0 0 False False
1 5 0 0 False False
2 7 1 0 False False
3 6 0 1 False False
4 7 2 0 False False
5 0 0 0 False True
6 3 0 0 False False
7 0 0 0 False False
8 0 3 1 False False
9 2 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False True False
7 True False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 3834 TOP 0
1 True 4015 JUNGLE 0
2 True 4016 MIDDLE 0
3 True 4562 BOTTOM 0
4 True 3879 UTILITY 0
5 True 7942 TOP 0
6 True 8618 JUNGLE 0
7 True 6669 MIDDLE 0
8 True 6859 BOTTOM 0
9 True 3952 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1055 6670 1018 1037 0 0 3340
1 0 6673 0 0 0 0 0 3364
2 0 1056 3802 1001 1026 0 0 3340
3 0 3508 1001 1036 3070 0 1055 3340
4 0 2424 3851 2003 3802 2055 3020 3340
5 0 1054 3047 3044 6630 1037 1028 3340
6 0 0 2031 3748 3111 6660 0 3340
7 0 3020 6655 0 1052 0 1056 3340
8 0 6672 3047 2031 1043 0 0 3340
9 0 3858 2031 3009 3067 0 0 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 0 0 0 0
1 0 1 0 1
2 0 2 0 2
3 0 1 0 1
4 0 1 0 1
5 1 8 8 2
6 3 9 3 3
7 1 3 3 1
8 1 8 8 2
9 0 2 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 205 0 0
1 364 3843 85
2 233 23905 6625
3 320 2509 1216
4 274 11066 4388
5 0 1097 461
6 405 23941 4201
7 0 33296 5471
8 0 10513 2260
9 306 2848 1254
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 565 0 0 0
1 2661 48 0 0
2 4703 4 0 0
3 3208 4 0 0
4 3215 0 0 0
5 1479 4 0 0
6 4764 72 0 0
7 1457 0 0 0
8 2404 8 0 0
9 3644 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 33889
1 0 2 31624
2 0 3 4179
3 0 4 28398
4 0 5 1570
5 0 6 65204
6 0 7 34008
7 0 8 12661
8 0 9 38518
9 0 10 6175
physicalDamageDealtToChampions physicalDamageTaken role \
0 5020 9926 SUPPORT
1 2118 6425 SUPPORT
2 254 4689 SUPPORT
3 3986 5964 SUPPORT
4 256 5530 SUPPORT
5 10327 7572 DUO
6 4235 12595 SUPPORT
7 504 1350 SUPPORT
8 6082 3301 SUPPORT
9 708 2820 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 14 2 6 53
1 1 4 5 11 227
2 2 4 2 12 104
3 3 7 3 4 80
4 3 4 1 14 60
5 3 14 2 4 137
6 2 4 7 11 107
7 2 12 0 21 154
8 2 4 3 7 74
9 2 4 2 7 38
summonerName teamEarlySurrendered teamId teamPosition \
0 CapPvtParts False 100 TOP
1 ForbiddenTickle False 100 JUNGLE
2 kohauro False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 QueensLyre False 100 UTILITY
5 Warky84 False 200 TOP
6 DrummingGamer779 False 200 JUNGLE
7 GoldenJet360 False 200 MIDDLE
8 SupportForHonor False 200 BOTTOM
9 Ryboe059 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1 928 34229 5360
1 3 928 38949 2329
2 10 928 30579 6880
3 0 928 34427 5202
4 33 928 12708 4716
5 14 928 70325 11116
6 12 928 63261 8708
7 13 928 53455 6298
8 2 928 49919 8540
9 12 928 14045 1962
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 10597 3287 82 8
1 9314 2239 3 218
2 9927 212 58 84
3 9294 1043 69 0
4 8876 685 12 38
5 9392 3911 114 29
6 17485 9619 16 188
7 2807 222 76 232
8 5706 1954 81 41
9 6537 1049 21 60
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 85 1 340
1 82 1 3482
2 130 1 2495
3 86 2 3520
4 103 1 72
5 0 1 4023
6 59 1 5311
7 0 1 7497
8 0 3 886
9 22 3 5021
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 340 106 0 4
1 126 227 0 4
2 0 534 0 4
3 0 121 0 4
4 72 130 0 4
5 328 340 1 0
6 272 126 1 0
7 322 0 1 0
8 197 0 0 0
9 0 72 0 0
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 4 0 0 3 False
1 0 0 0 0 False
2 10 1 1 5 False
3 7 0 0 5 False
4 14 3 1 7 False
5 7 0 0 4 True
6 7 0 0 4 True
7 6 0 1 3 True
8 11 3 0 8 True
9 3 0 1 2 True ,
assists baronKills bountyLevel champLevel championName \
0 3 0 2 13 Pantheon
1 5 0 1 11 Nocturne
2 6 0 6 12 Ryze
3 2 0 2 9 Ezreal
4 5 0 1 10 Yuumi
5 2 0 0 11 Tryndamere
6 1 0 0 10 LeeSin
7 3 0 0 10 Lucian
8 1 0 0 10 Teemo
9 4 0 0 9 Braum
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 0 699 0
1 208 11881 208
2 2321 4371 2321
3 963 4454 963
4 801 851 801
5 1140 1140 1140
6 0 26500 0
7 676 676 676
8 838 1124 838
9 0 0 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 1 1 0 False False
1 2 3 0 False True
2 3 0 0 True False
3 2 0 2 False False
4 0 0 0 False False
5 2 1 0 False False
6 4 2 1 False False
7 8 2 0 False False
8 3 1 0 False False
9 2 6 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 7021 TOP 0
1 True 7083 JUNGLE 0
2 True 9559 MIDDLE 0
3 True 5311 BOTTOM 0
4 True 4345 UTILITY 0
5 True 5388 TOP 0
6 True 6874 JUNGLE 0
7 True 5866 MIDDLE 0
8 True 6334 BOTTOM 0
9 True 4319 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 6692 2033 2055 3158 1036 0 3363
1 0 2031 6631 3158 3082 1029 0 3364
2 0 3040 3020 2031 6656 2420 0 3340
3 0 3508 3158 3070 0 0 1055 3340
4 0 3853 6617 3114 0 0 0 3340
5 0 1055 6672 3006 0 0 0 3340
6 0 2055 3047 3134 1028 6692 0 3513
7 0 3006 2033 6671 2055 1042 0 3363
8 0 3006 6672 0 0 3123 1055 3340
9 0 1033 2055 3857 3067 3111 1029 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 4 2 1
1 1 4 2 1
2 2 8 6 3
3 1 2 2 1
4 0 1 0 1
5 0 0 0 0
6 1 4 2 1
7 1 2 2 1
8 1 2 2 1
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 917 3614 111
1 565 6202 466
2 400 92189 16859
3 365 2937 1194
4 0 3626 2292
5 758 0 0
6 460 16458 1047
7 234 3687 862
8 660 16374 3095
9 793 3736 2163
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 473 0 0 0
1 2700 80 0 0
2 2057 5 0 0
3 2235 8 0 0
4 315 0 0 0
5 669 4 0 0
6 5832 102 0 0
7 6993 0 0 0
8 3095 0 0 0
9 5170 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 54182
1 0 2 82171
2 0 3 6430
3 0 4 40897
4 0 5 1606
5 0 6 54990
6 0 7 59075
7 0 8 48993
8 0 9 32344
9 0 10 5254
physicalDamageDealtToChampions physicalDamageTaken role \
0 8579 6517 SUPPORT
1 5549 12550 SUPPORT
2 976 9771 SUPPORT
3 3513 3680 SUPPORT
4 577 1218 SUPPORT
5 4021 8838 SUPPORT
6 5415 6171 SUPPORT
7 7110 7626 SUPPORT
8 2044 3742 SUPPORT
9 803 4542 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 4 1 12 348
1 2 4 10 11 262
2 3 12 2 4 226
3 2 7 0 4 80
4 5 14 3 3 133
5 3 6 1 4 110
6 9 11 1 4 242
7 3 12 2 4 314
8 2 7 1 4 202
9 4 14 2 4 395
summonerName teamEarlySurrendered teamId teamPosition \
0 Rotome False 100 TOP
1 StalwartHide False 100 JUNGLE
2 Philileo False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 pokemonmaster217 False 100 UTILITY
5 esordraug False 200 TOP
6 mE INt False 200 JUNGLE
7 Xayahri False 200 MIDDLE
8 Feed Poro False 200 BOTTOM
9 G1izzieMcGuire False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 6 1111 59337 8691
1 84 1111 94201 6544
2 27 1111 101004 17836
3 0 1111 46330 4707
4 12 1111 5716 3353
5 3 1111 54990 4021
6 11 1111 92418 6730
7 0 1111 55066 7973
8 9 1111 59146 5242
9 14 1111 14263 3585
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 7110 1383 133 17
1 15539 8163 28 346
2 12135 1942 131 53
3 6190 1151 82 0
4 1533 3095 3 28
5 9507 3594 113 21
6 12097 3645 4 286
7 14840 431 109 12
8 7060 1281 137 101
9 10188 1335 33 90
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 35 1 1540
1 40 1 5828
2 52 1 2385
3 26 3 2495
4 0 5 484
5 65 1 0
6 76 1 16884
7 159 1 2385
8 51 2 10427
9 21 3 5272
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 120 0 1
1 528 288 0 1
2 0 306 1 1
3 0 274 0 1
4 484 0 0 1
5 0 0 0 1
6 268 94 0 1
7 0 220 0 1
8 102 222 1 1
9 618 476 0 1
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 6 2 2 3 True
1 13 3 2 4 True
2 11 0 3 5 True
3 10 0 2 6 True
4 18 0 0 12 True
5 13 1 1 6 False
6 15 3 0 7 False
7 18 3 0 8 False
8 11 1 3 5 False
9 35 7 3 18 False ,
assists baronKills bountyLevel champLevel championName \
0 4 0 0 14 Gnar
1 1 1 0 14 MasterYi
2 5 0 0 15 Anivia
3 4 0 4 14 Jinx
4 13 0 0 12 Sona
5 2 0 0 13 Taric
6 3 0 0 12 Kindred
7 3 0 1 15 Kayle
8 4 0 0 11 Jhin
9 2 0 1 10 Soraka
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 4426 6758 4426
1 771 21933 771
2 1385 5604 1385
3 12454 31737 12454
4 4131 5781 4131
5 0 4348 0
6 0 10581 0
7 3716 3716 3716
8 132 132 132
9 0 264 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 0 0 False False
1 2 1 3 False False
2 0 1 0 False False
3 1 1 1 False False
4 1 5 0 False False
5 3 1 0 False True
6 1 1 0 False False
7 1 0 0 False False
8 4 0 0 False False
9 7 5 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False True False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 8241 TOP 0
1 False 11071 JUNGLE 0
2 False 8326 MIDDLE 0
3 False 13221 BOTTOM 0
4 False 8569 UTILITY 2
5 False 8340 TOP 0
6 False 8726 JUNGLE 0
7 False 10764 MIDDLE 0
8 False 6511 BOTTOM 0
9 False 5976 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1055 6631 3071 0 3047 0 3340
1 0 6691 2031 3006 6676 0 0 3364
2 0 1056 2420 0 3916 3020 6653 3363
3 0 1018 3123 3006 6672 3085 3035 3363
4 0 6616 3853 6617 0 3158 0 3364
5 2 2033 6664 3143 3158 1011 1029 3340
6 2 6671 3094 3006 2015 0 0 3340
7 2 1056 3115 1082 3006 4633 3108 3363
8 2 6671 3009 3134 1018 0 1055 3340
9 2 3853 6617 3158 3114 2055 1052 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 0 0 0
1 1 6 5 4
2 0 0 0 0
3 2 9 5 2
4 0 1 0 1
5 1 4 3 1
6 1 3 3 2
7 0 1 0 1
8 0 0 0 0
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 812 6847 1274
1 1396 6245 0
2 0 58819 8604
3 701 2114 646
4 886 16493 5233
5 1487 32146 4619
6 1723 26217 3652
7 1727 100482 4831
8 815 2919 351
9 712 15800 5551
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 5167 8 0 0
1 4427 170 0 0
2 4403 0 0 0
3 3721 32 0 0
4 3923 0 0 0
5 7050 0 1 0
6 2045 111 1 0
7 3756 32 1 0
8 1212 0 1 0
9 3471 0 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 87298
1 0 2 127042
2 0 3 15721
3 0 4 171166
4 0 5 2318
5 0 6 19831
6 0 7 76374
7 0 8 43271
8 0 9 53821
9 0 10 1669
physicalDamageDealtToChampions physicalDamageTaken role \
0 7185 7866 SOLO
1 6366 12749 NONE
2 352 3813 SOLO
3 20828 8197 CARRY
4 820 4785 SUPPORT
5 2274 10823 SOLO
6 4294 15195 NONE
7 1415 7383 SOLO
8 4506 12279 CARRY
9 467 8190 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 2 12 97
1 17 11 2 4 264
2 2 4 1 12 205
3 4 7 4 4 277
4 2 4 4 3 282
5 4 4 5 6 262
6 11 11 2 4 121
7 1 4 2 12 348
8 4 7 2 4 80
9 4 14 3 4 154
summonerName teamEarlySurrendered teamId teamPosition \
0 Alightfire False 100 TOP
1 giantkevmiester False 100 JUNGLE
2 jindogay False 100 MIDDLE
3 ZhangDumpy5 False 100 BOTTOM
4 CeriseTears False 100 UTILITY
5 StalwartHide False 200 TOP
6 SaranghaeImma False 200 JUNGLE
7 Rotome False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 Glorÿ False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 26 1775 99015 8459
1 1 1775 161698 7618
2 27 1775 87415 9311
3 19 1775 189100 22936
4 12 1775 18812 6054
5 37 1775 59317 6893
6 4 1775 111302 8397
7 3 1775 147512 6454
8 25 1775 56740 4857
9 34 1775 18058 6606
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 14527 2362 131 324
1 19544 9408 16 135
2 8277 1686 154 763
3 12119 3158 186 148
4 8831 13358 20 30
5 18867 8590 114 197
6 17955 9513 33 172
7 11647 5189 232 229
8 13871 2236 91 101
9 12134 10651 13 192
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 79 1 4870
1 37 1 28410
2 0 1 12874
3 27 4 15819
4 21 5 0
5 51 5 7340
6 41 8 8710
7 0 5 3759
8 94 3 0
9 135 5 588
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 1492 0 2
1 1252 2367 0 2
2 354 61 0 2
3 1460 200 7 2
4 0 123 2 2
5 0 994 0 9
6 450 714 0 9
7 207 507 1 9
8 0 379 1 9
9 588 471 0 9
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 13 0 0 9 True
1 18 1 3 5 True
2 26 2 3 9 True
3 14 1 3 8 True
4 70 5 9 28 True
5 20 1 4 10 False
6 32 1 5 10 False
7 13 0 3 7 False
8 10 0 1 6 False
9 50 6 4 27 False ,
assists baronKills bountyLevel champLevel championName \
0 5 0 3 15 Darius
1 9 0 3 15 Sylas
2 9 0 4 16 Pantheon
3 7 0 2 13 Jhin
4 18 0 0 12 Nami
5 10 0 0 13 Ivern
6 7 0 0 14 Malphite
7 7 0 0 15 Ryze
8 6 0 0 14 Ashe
9 13 0 0 11 Bard
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 14725 27164 14725
1 297 17012 297
2 2955 9082 2955
3 5156 8520 5156
4 1533 3527 1533
5 227 227 227
6 2139 2139 2139
7 4754 4754 4754
8 3690 3690 3690
9 750 942 750
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 6 1 0 False False
1 6 1 3 False False
2 5 2 0 False False
3 5 0 1 False False
4 6 6 0 False False
5 10 0 0 True False
6 7 4 0 False True
7 10 0 0 False False
8 8 2 0 True False
9 11 2 0 True False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 True False False
9 True False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 15549 TOP 3
1 False 13349 JUNGLE 0
2 False 13150 MIDDLE 0
3 False 9745 BOTTOM 1
4 False 7678 UTILITY 0
5 False 7828 JUNGLE 0
6 False 7833 TOP 0
7 False 17090 MIDDLE 0
8 False 11846 BOTTOM 0
9 False 7210 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3133 3078 3071 3158 1083 3053 3340
1 0 3157 3082 3041 3020 4636 3024 3364
2 0 6692 2033 3158 3071 3065 1036 3340
3 0 6671 3009 6676 1018 0 1055 3340
4 0 3853 6617 3117 3011 0 0 3364
5 4 1082 4005 3157 3117 3916 0 3364
6 4 2033 3075 3047 3068 0 0 3340
7 4 3157 6656 3020 3089 3041 3040 3340
8 4 6672 3085 1037 3006 3033 1018 3363
9 4 3853 1028 4005 3117 3066 1031 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 4 12 3 2
1 3 13 6 2
2 5 15 4 2
3 3 6 2 2
4 0 0 0 0
5 0 2 0 1
6 0 1 0 1
7 5 18 6 2
8 2 5 2 1
9 0 2 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 487 1040 517
1 575 112086 26244
2 380 3398 1147
3 570 4638 443
4 501 10764 2748
5 472 10363 6177
6 508 50170 7381
7 461 201489 44801
8 576 1223 1223
9 587 18025 8006
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 16736 8 0 0
1 18972 118 0 0
2 15774 12 0 0
3 7241 4 0 0
4 10282 0 0 0
5 5289 98 1 0
6 484 0 1 0
7 7062 24 1 0
8 8301 12 1 0
9 10229 0 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 159658
1 0 2 14786
2 0 3 122417
3 0 4 77178
4 0 5 2922
5 0 6 4615
6 0 7 27089
7 0 8 8926
8 0 9 118071
9 0 10 2517
physicalDamageDealtToChampions physicalDamageTaken role \
0 20317 12821 NONE
1 328 18781 NONE
2 25009 8326 SOLO
3 5551 4745 CARRY
4 318 2826 SUPPORT
5 2259 11986 NONE
6 1272 10852 SOLO
7 1222 21603 SOLO
8 9854 9644 CARRY
9 1624 12907 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 6 6 262
1 16 11 3 4 239
2 5 4 6 14 347
3 2 7 2 4 80
4 4 14 3 4 154
5 17 11 4 4 166
6 2 12 4 4 165
7 7 14 5 4 94
8 3 4 3 1 180
9 5 4 8 14 191
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 StalwartHide False 100 TOP 29
1 Th30rangeDw4rf False 100 JUNGLE 18
2 Rotome False 100 MIDDLE 30
3 Dublaiar False 100 BOTTOM 19
4 Glorÿ False 100 UTILITY 16
5 You Idiot False 200 JUNGLE 30
6 cybermanscott False 200 TOP 22
7 Don Kreg 2 False 200 MIDDLE 21
8 HoIisticDrops False 200 BOTTOM 29
9 twcarp1214 False 200 UTILITY 22
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1748 179643 24907
1 1748 136468 27590
2 1748 132964 26906
3 1748 81816 5995
4 1748 24563 3381
5 1748 265645 8957
6 1748 87101 8780
7 1748 211762 47042
8 1748 134621 12209
9 1748 21770 10858
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 30599 6884 186 123
1 39564 16933 14 432
2 25060 6805 130 67
3 12142 1755 110 69
4 13165 8923 11 160
5 17869 2033 13 123
6 13668 959 132 557
7 30091 6319 165 94
8 18625 291 172 747
9 24260 2716 11 167
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 221 1 18945
1 132 1 9595
2 152 1 7149
3 119 1 0
4 143 5 10876
5 304 1 250667
6 170 1 9841
7 293 1 1347
8 227 1 15326
9 271 5 1228
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 4072 1041 6 3
1 1017 1811 0 3
2 750 959 1 3
3 0 156 2 3
4 314 56 2 3
5 521 593 0 11
6 126 2331 0 11
7 1019 1425 3 11
8 1130 679 0 11
9 1228 1123 0 11
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 21 1 3 11 True
1 19 1 2 2 True
2 10 2 0 6 True
3 8 0 1 5 True
4 73 6 5 30 True
5 12 0 3 4 False
6 18 4 1 9 False
7 10 0 1 7 False
8 22 3 2 9 False
9 27 2 0 16 False ,
assists baronKills bountyLevel champLevel championName \
0 4 0 0 15 Sylas
1 2 0 0 15 Shyvana
2 2 0 0 17 Yone
3 2 0 1 16 Xayah
4 6 0 0 13 Lux
5 11 0 3 18 Aatrox
6 8 0 5 17 Jax
7 11 0 0 14 Seraphine
8 13 0 0 16 Jhin
9 10 0 0 15 Ahri
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3908 4081 3908
1 0 7307 0
2 8374 10798 8374
3 2404 5737 2404
4 108 1205 108
5 11336 22007 11336
6 3753 24285 3753
7 823 11034 823
8 3046 7898 3046
9 2614 5746 2614
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 12 1 0 False False
1 11 0 2 False False
2 12 0 0 False False
3 9 1 0 False False
4 8 0 0 False False
5 2 0 1 False False
6 5 0 2 False False
7 10 0 0 False False
8 5 0 0 False True
9 10 1 0 True False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 8041 TOP 0
1 True 10537 JUNGLE 0
2 True 15951 MIDDLE 0
3 True 14327 BOTTOM 0
4 True 7782 UTILITY 0
5 True 19439 TOP 1
6 True 12860 JUNGLE 0
7 True 8370 MIDDLE 0
8 True 14677 BOTTOM 0
9 True 10578 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 6656 2420 3165 3020 2031 0 3340
1 1 3115 3067 4636 3158 3108 0 3364
2 1 3031 3006 6632 3033 3072 3044 3340
3 1 3072 6676 6672 3006 3033 1018 3340
4 1 3853 6655 3020 1058 1052 0 3340
5 0 3053 6630 3111 3075 3074 3026 3340
6 0 6632 3153 3047 6609 2031 0 3364
7 0 3157 6653 3158 0 0 1056 3340
8 0 6671 3009 6676 3036 3033 1031 3340
9 0 6655 3853 3020 4628 1058 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 1 0 1
1 0 3 0 1
2 5 16 6 2
3 3 10 2 1
4 0 2 0 1
5 3 21 13 4
6 2 9 5 3
7 0 2 0 1
8 2 14 6 3
9 0 5 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 470 59351 9654
1 730 115947 16071
2 597 40452 7660
3 518 0 0
4 729 36953 18284
5 1038 3155 833
6 580 31420 4879
7 319 59400 7673
8 1278 8145 1789
9 369 45933 10018
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 3862 4 0 0
1 5292 118 0 1
2 8057 4 0 0
3 4660 25 0 0
4 4461 1 0 0
5 22411 40 0 0
6 9838 108 0 0
7 5087 8 0 0
8 6823 4 0 0
9 8317 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 8386
1 0 2 37856
2 0 3 170441
3 0 4 154921
4 0 5 4786
5 0 6 215904
6 0 7 122501
7 0 8 7848
8 0 9 127250
9 0 10 8518
physicalDamageDealtToChampions physicalDamageTaken role \
0 112 28137 SOLO
1 2549 28812 NONE
2 24997 36018 SOLO
3 24580 12948 CARRY
4 204 9967 SUPPORT
5 50955 31402 SOLO
6 15711 15475 NONE
7 730 11673 SOLO
8 21828 9275 CARRY
9 792 13216 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 5 4 1 12 49
1 3 4 16 11 114
2 5 4 9 14 105
3 7 14 5 4 320
4 0 14 3 4 64
5 6 14 5 4 96
6 15 11 3 14 30
7 1 14 1 4 30
8 4 7 1 4 79
9 4 4 5 12 105
summonerName teamEarlySurrendered teamId teamPosition \
0 Tr1ckylol False 100 TOP
1 JobieWanKenobi False 100 JUNGLE
2 Ravenouscrowz False 100 MIDDLE
3 Toggo The Doggo False 100 BOTTOM
4 DJDylpickle False 100 UTILITY
5 ZPSenpai False 200 TOP
6 IdiotusThe3rD False 200 JUNGLE
7 almightylucario7 False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 PwnMasterBadass False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 14 2046 76267 9766
1 5 2046 175886 19457
2 34 2046 231054 39669
3 26 2046 167376 27756
4 53 2046 41740 18488
5 34 2046 224724 53372
6 10 2046 166390 21393
7 16 2046 71303 8505
8 18 2046 140534 23838
9 13 2046 84891 13450
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 32884 5772 95 296
1 35051 6926 58 175
2 45459 7298 194 222
3 19081 664 171 50
4 15090 532 17 226
5 58441 36649 171 371
6 26723 12006 46 243
7 18877 1966 75 149
8 18136 5209 159 120
9 22366 2418 69 48
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 358 1 8530
1 356 1 22084
2 451 1 20160
3 312 1 12455
4 228 1 0
5 94 1 5665
6 155 1 12469
7 270 4 4054
8 240 4 5139
9 338 1 30439
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 884 2 8
1 836 946 0 8
2 7011 1383 3 8
3 3175 1472 1 8
4 0 660 0 8
5 1584 4627 4 6
6 802 1409 1 6
7 102 2116 0 6
8 220 2037 1 6
9 2640 832 1 6
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 17 1 0 11 False
1 9 0 2 0 False
2 9 0 1 5 False
3 20 1 0 12 False
4 13 0 0 8 False
5 21 0 1 12 True
6 11 0 1 0 True
7 1 0 0 0 True
8 18 0 1 11 True
9 25 1 2 8 True ,
assists baronKills bountyLevel champLevel championName \
0 2 0 0 14 Yasuo
1 4 0 3 13 Kayn
2 2 0 1 13 Ekko
3 2 0 2 11 MissFortune
4 4 0 1 10 Seraphine
5 2 0 0 12 Tryndamere
6 4 0 0 10 TahmKench
7 1 0 0 12 Veigar
8 2 0 0 10 Twitch
9 1 0 0 9 Lux
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 6423 11296 6423
1 341 23359 341
2 926 4555 926
3 7277 9239 7277
4 1227 2248 1227
5 4380 7175 4380
6 4254 4263 4254
7 1583 1583 1583
8 976 976 976
9 803 803 803
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 0 0 False False
1 2 1 3 False False
2 0 0 0 False False
3 1 0 0 False False
4 1 3 0 False False
5 7 1 0 True False
6 5 0 0 False True
7 2 3 0 False False
8 2 0 0 False False
9 3 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False True False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 10939 TOP 0
1 True 9221 JUNGLE 0
2 True 7668 MIDDLE 0
3 True 7016 BOTTOM 0
4 True 6378 UTILITY 0
5 True 7513 TOP 0
6 True 8132 JUNGLE 0
7 True 6358 MIDDLE 0
8 True 6732 BOTTOM 0
9 True 5143 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 6672 3006 3072 1031 3133 0 3340
1 0 3158 2031 6693 3070 3133 0 3364
2 0 3152 1082 1026 3020 1043 1052 3340
3 0 1055 6672 1001 1042 0 0 3340
4 0 3853 6617 2055 3158 3114 1052 3364
5 0 3133 1018 0 6672 3006 0 3340
6 0 2003 1039 6662 3748 1028 0 3340
7 0 1056 6656 3020 3916 2055 0 3363
8 0 6672 3006 3134 0 0 1055 3340
9 0 6655 3853 2003 0 1001 0 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 2 10 7 2
1 2 5 3 2
2 0 1 0 1
3 1 2 2 1
4 0 1 0 1
5 1 4 2 1
6 1 5 3 1
7 0 0 0 0
8 1 2 2 1
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 391 2862 983
1 671 7176 883
2 0 79856 7129
3 703 3328 747
4 690 17796 3994
5 292 0 0
6 775 26812 5670
7 1126 62108 7325
8 811 0 0
9 813 25209 6050
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 5415 0 0 0
1 4033 140 0 0
2 5443 16 0 0
3 3259 0 0 0
4 2925 0 0 0
5 1017 12 0 0
6 5889 32 0 0
7 2982 0 0 0
8 2662 0 0 0
9 2167 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 100454
1 0 2 109576
2 0 3 14675
3 0 4 53913
4 0 5 2371
5 0 6 73548
6 0 7 17994
7 0 8 11627
8 0 9 44025
9 0 10 2540
physicalDamageDealtToChampions physicalDamageTaken role \
0 17363 9940 NONE
1 8608 12832 NONE
2 1135 6239 SOLO
3 6046 2876 CARRY
4 762 3135 SUPPORT
5 6045 14199 SOLO
6 2788 16009 NONE
7 362 4815 SOLO
8 3062 6338 CARRY
9 359 3591 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 14 3 4 134
1 9 11 1 4 49
2 2 4 3 14 72
3 1 4 2 14 47
4 1 4 2 3 84
5 3 4 2 6 29
6 4 11 5 14 88
7 2 7 2 4 61
8 2 7 2 4 79
9 3 7 2 4 151
summonerName teamEarlySurrendered teamId teamPosition \
0 REEET21 False 100 TOP
1 snoopega False 100 JUNGLE
2 Cocó False 100 MIDDLE
3 RadMax False 100 BOTTOM
4 darkbrenda False 100 UTILITY
5 thiccmasterflex False 200 TOP
6 waterstone12 False 200 JUNGLE
7 DokjaKim False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 a floating sperm False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 19 1381 111390 20447
1 3 1381 128775 9544
2 15 1381 101533 8915
3 4 1381 63634 7432
4 16 1381 20168 4756
5 4 1381 76206 6167
6 22 1381 47625 9259
7 19 1381 73736 7687
8 5 1381 56322 3747
9 51 1381 27994 6654
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 16021 3117 128 101
1 17018 9611 17 236
2 11846 2748 138 195
3 6656 733 93 96
4 6412 2827 17 105
5 16384 2712 88 29
6 23485 5360 28 364
7 8317 1056 124 62
8 9168 1747 111 252
9 5759 826 28 195
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 187 1 8073
1 51 1 12022
2 0 1 7001
3 16 1 6392
4 16 5 0
5 184 1 2657
6 145 1 2818
7 78 2 0
8 58 2 12296
9 81 2 244
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 2099 665 3 3
1 52 152 1 3
2 650 162 0 3
3 638 520 2 3
4 0 351 0 3
5 121 1166 1 6
6 800 1586 1 6
7 0 519 1 6
8 685 168 0 6
9 244 0 0 6
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 4 0 1 2 True
1 15 1 4 2 True
2 13 0 2 6 True
3 8 0 2 3 True
4 45 5 4 19 True
5 12 1 1 7 False
6 12 0 1 6 False
7 19 4 0 10 False
8 7 0 1 4 False
9 23 2 1 16 False ,
assists baronKills bountyLevel champLevel championName \
0 0 0 0 11 Poppy
1 1 0 0 9 Lillia
2 0 0 1 10 Akali
3 1 0 0 9 Ezreal
4 3 0 0 9 Brand
5 2 0 3 12 Jax
6 3 0 1 11 XinZhao
7 5 0 3 12 Galio
8 1 0 1 10 Samira
9 6 0 0 9 Leona
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 613 933 613
1 0 1800 0
2 0 0 0
3 2545 2545 2545
4 1596 2450 1596
5 1922 15046 1922
6 0 22189 0
7 873 873 873
8 2830 5461 2830
9 0 1524 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 6 0 0 False False
1 3 0 0 False False
2 3 1 0 False False
3 3 0 0 False False
4 4 0 0 False False
5 1 1 0 False False
6 2 0 3 False False
7 2 1 0 False False
8 2 0 0 True False
9 1 1 0 False True
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 5089 TOP 0
1 True 5339 JUNGLE 0
2 True 4964 MIDDLE 0
3 True 6011 BOTTOM 0
4 True 5327 UTILITY 0
5 True 8858 TOP 0
6 True 7389 JUNGLE 0
7 True 6245 MIDDLE 0
8 True 7113 BOTTOM 0
9 True 5008 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1054 6662 3047 3076 0 0 3340
1 0 6653 2031 3020 0 0 0 3340
2 0 4633 1052 1054 1001 1029 0 3340
3 0 3508 3158 3070 3133 0 1055 3340
4 0 3853 2420 3020 3802 2055 3108 3364
5 0 2033 3153 2055 3057 3111 3067 3340
6 0 6692 2031 3047 3044 1037 1028 3340
7 0 1056 3145 3111 6660 1057 2055 3340
8 0 1055 6673 3111 3134 0 0 3340
9 0 3857 3190 2031 1028 1001 1006 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 0 1 0 1
1 0 1 0 1
2 0 2 0 1
3 1 2 2 2
4 0 1 0 1
5 2 6 3 1
6 1 5 3 2
7 1 3 3 1
8 1 4 2 2
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 287 12847 1771
1 568 38449 3712
2 564 18454 4514
3 737 2744 1166
4 431 35036 10011
5 948 10853 2394
6 644 7736 312
7 380 60255 13674
8 679 7971 1175
9 847 3218 1491
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 3656 0 0 0
1 5284 68 0 0
2 7299 0 0 0
3 1871 0 0 0
4 2230 0 0 0
5 4339 12 0 0
6 5564 96 0 0
7 3364 0 0 0
8 4678 0 0 0
9 4146 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 33943
1 0 2 8626
2 0 3 5368
3 0 4 44859
4 0 5 1762
5 0 6 52407
6 0 7 72269
7 0 8 4235
8 0 9 40502
9 0 10 6909
physicalDamageDealtToChampions physicalDamageTaken role \
0 6476 7967 SOLO
1 450 9164 NONE
2 1175 5490 SOLO
3 5006 4826 CARRY
4 930 6135 SUPPORT
5 5914 7876 SOLO
6 6273 11228 NONE
7 347 7647 SOLO
8 4614 3924 CARRY
9 2101 4745 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 3 12 94
1 2 4 5 11 39
2 2 4 2 14 186
3 4 7 3 4 79
4 3 4 3 3 133
5 1 12 2 4 120
6 11 11 3 4 74
7 3 7 1 4 82
8 2 4 3 7 187
9 4 14 1 4 110
summonerName teamEarlySurrendered teamId teamPosition \
0 SPAC3PASTA False 100 TOP
1 TicklePickled False 100 JUNGLE
2 Mettaphør False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 Lockelucky25084 False 100 UTILITY
5 1PyreX1 False 200 TOP
6 TheBlzPhoenix False 200 JUNGLE
7 zeromecha False 200 MIDDLE
8 Acegull False 200 BOTTOM
9 DoubleAgent44 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 40 1218 50352 8355
1 13 1218 60995 5663
2 0 1218 24146 6000
3 0 1218 47604 6172
4 8 1218 36798 10941
5 10 1218 68873 8309
6 12 1218 89907 7084
7 41 1218 64490 14022
8 0 1218 48474 5789
9 25 1218 16832 4014
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 11874 138 89 637
1 14686 3965 5 271
2 12857 1111 56 16
3 6904 1622 97 0
4 8523 1000 21 18
5 12688 2514 111 51
6 17192 10831 9 266
7 11980 2265 90 91
8 8651 1795 127 0
9 8921 632 24 55
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 119 1 3561
1 74 1 13919
2 78 1 323
3 82 3 0
4 41 1 0
5 35 1 5612
6 42 1 9901
7 48 2 0
8 48 2 0
9 21 5 6704
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 108 250 0 3
1 1500 238 0 3
2 310 68 0 3
3 0 206 0 3
4 0 158 1 3
5 0 472 2 1
6 498 399 0 1
7 0 968 0 1
8 0 48 1 1
9 422 29 0 1
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 9 0 0 6 False
1 2 0 0 1 False
2 11 1 1 6 False
3 8 0 0 6 False
4 17 1 0 9 False
5 10 2 0 5 True
6 14 0 1 6 True
7 4 2 0 3 True
8 7 0 0 5 True
9 21 1 0 8 True ,
assists baronKills bountyLevel champLevel championName \
0 3 0 0 15 Jax
1 5 0 0 15 Kayn
2 4 0 0 16 Neeko
3 6 0 0 14 Samira
4 20 0 0 13 Leona
5 10 0 2 17 MonkeyKing
6 9 1 2 16 Warwick
7 18 0 2 16 Ziggs
8 7 0 2 16 MissFortune
9 11 0 0 14 Morgana
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2242 5309 2242
1 784 13730 784
2 4120 7202 4120
3 1446 14303 1446
4 464 1543 464
5 6280 11498 6280
6 1588 31073 1588
7 2364 5230 2364
8 6007 17478 6007
9 584 7806 584
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 9 2 0 False False
1 12 0 1 True False
2 8 2 0 False True
3 8 1 0 False False
4 8 4 0 False False
5 6 1 0 False False
6 7 4 3 False False
7 10 4 1 False False
8 5 3 0 False False
9 9 4 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False True False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 10678 TOP 0
1 False 12225 JUNGLE 0
2 False 14089 MIDDLE 0
3 False 13179 BOTTOM 0
4 False 8414 UTILITY 0
5 False 13078 TOP 0
6 False 12828 JUNGLE 1
7 False 11873 MIDDLE 0
8 False 14774 BOTTOM 0
9 False 9715 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 0 3133 3078 3158 3067 3153 3340
1 1 6676 6693 3042 3158 3134 1028 3340
2 1 3157 6655 3165 3020 3089 0 3340
3 1 3033 6673 3006 3072 1038 1018 3340
4 1 3860 3117 3075 3190 1028 1057 3364
5 0 3074 3047 6333 6632 0 0 3340
6 0 6630 3140 1011 3076 3748 3047 3364
7 0 6655 4628 1058 3020 3070 1052 3363
8 0 1036 6691 3142 3033 3006 6676 3363
9 0 3853 6653 3020 2424 4637 3916 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 6 3 2
1 1 8 2 2
2 3 12 4 3
3 3 10 5 2
4 0 0 0 0
5 2 10 6 2
6 3 9 4 2
7 1 6 2 1
8 4 16 8 4
9 1 4 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 845 20652 4147
1 406 9701 3032
2 364 114430 26770
3 817 17861 3191
4 785 8347 4249
5 629 17998 4643
6 922 36350 6103
7 348 103586 31129
8 674 1500 818
9 533 31117 11415
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 11424 20 1 0
1 10713 155 1 0
2 13977 4 1 0
3 9722 12 1 0
4 11441 4 1 0
5 12037 4 0 0
6 10432 107 0 0
7 9488 20 0 0
8 5802 4 0 0
9 4759 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 99959
1 0 2 158327
2 0 3 11561
3 0 4 112393
4 0 5 7829
5 0 6 94084
6 0 7 61860
7 0 8 6399
8 0 9 123953
9 0 10 4564
physicalDamageDealtToChampions physicalDamageTaken role \
0 12346 19425 SOLO
1 16858 18802 NONE
2 1267 9839 SOLO
3 19231 19093 CARRY
4 2064 14320 SUPPORT
5 20384 15420 SOLO
6 4628 24149 NONE
7 1063 8498 SOLO
8 20777 10055 CARRY
9 648 13013 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 5 4 5 12 58
1 5 4 18 11 82
2 4 4 5 14 215
3 4 4 6 7 76
4 3 4 6 14 135
5 3 12 4 4 75
6 17 11 4 4 42
7 7 3 5 4 90
8 5 4 6 7 113
9 1 14 4 4 78
summonerName teamEarlySurrendered teamId teamPosition \
0 Mace 1234 False 100 TOP
1 SeaDiem False 100 JUNGLE
2 Træy False 100 MIDDLE
3 Amajing88 False 100 BOTTOM
4 HoIdenFIoss False 100 UTILITY
5 SSwics False 200 TOP
6 Simpin4Ashtro False 200 JUNGLE
7 The Sandy Sailor False 200 MIDDLE
8 Mondolax False 200 BOTTOM
9 Dublaiar False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 29 1957 136672 16839
1 3 1957 181434 20098
2 62 1957 126985 28695
3 0 1957 131904 22592
4 39 1957 22321 7231
5 22 1957 119928 25178
6 28 1957 116664 11368
7 30 1957 110316 32193
8 5 1957 135558 21652
9 52 1957 35814 12196
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 31009 2580 140 111
1 29807 9251 35 197
2 24083 1997 137 205
3 28902 5444 167 4
4 25933 2081 37 72
5 28020 7691 170 91
6 35401 15008 32 249
7 18509 2922 98 314
8 15982 3103 173 73
9 18106 2565 17 81
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 327 1 16060
1 423 1 13406
2 286 1 993
3 266 2 1649
4 289 5 6144
5 251 1 7846
6 268 1 18453
7 297 1 330
8 169 3 10105
9 274 1 132
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 344 160 0 7
1 208 290 0 7
2 657 266 2 7
3 169 86 1 7
4 918 172 0 7
5 150 562 2 3
6 637 820 1 3
7 0 522 1 3
8 56 124 1 3
9 132 334 1 3
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 22 2 4 12 False
1 13 0 2 4 False
2 21 2 2 12 False
3 33 1 8 11 False
4 71 4 11 25 False
5 12 1 2 7 True
6 36 4 6 6 True
7 26 4 1 14 True
8 27 3 3 14 True
9 40 4 1 26 True ,
assists baronKills bountyLevel champLevel championName \
0 10 0 0 17 Gwen
1 15 0 0 17 Rammus
2 9 0 2 18 Zoe
3 11 0 5 17 Vayne
4 28 0 1 16 Morgana
5 4 0 0 13 Sett
6 9 0 1 18 Taliyah
7 12 0 0 16 Galio
8 8 0 0 17 Ezreal
9 10 0 0 14 Lulu
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 6174 9023 6174
1 734 20370 734
2 6427 6607 6427
3 2200 13397 2200
4 1622 5247 1622
5 4169 9777 4169
6 0 20944 0
7 267 267 267
8 0 0 0
9 838 838 838
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 9 0 0 False False
1 5 0 3 False False
2 4 2 0 False False
3 6 0 1 True False
4 6 0 0 False True
5 9 0 0 False False
6 11 5 1 False False
7 9 2 0 False False
8 12 1 0 False False
9 14 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 15678 TOP 0
1 True 14070 JUNGLE 0
2 True 14391 MIDDLE 1
3 True 14425 BOTTOM 0
4 True 12270 UTILITY 0
5 True 9088 TOP 0
6 True 17471 JUNGLE 0
7 True 9752 MIDDLE 0
8 True 15902 BOTTOM 0
9 True 8428 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3089 4633 3047 3100 4629 1033 3340
1 0 3111 3001 3211 6664 3067 4401 3340
2 0 3157 6655 3020 4628 4630 0 3364
3 0 6672 3006 3046 3153 3033 1055 3340
4 0 3853 6655 3020 4628 1058 1058 3364
5 1 6630 3006 1054 6609 0 0 3340
6 1 3157 3020 3165 6655 3102 3135 3364
7 1 3152 3076 3916 3065 3111 0 3340
8 1 1038 3074 6694 3158 6632 3042 3363
9 1 3853 3157 6617 3020 1004 1052 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 4 14 5 2
1 2 8 3 2
2 3 14 8 2
3 4 13 5 2
4 2 6 2 3
5 0 2 0 1
6 4 13 3 1
7 0 2 0 1
8 2 12 4 2
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 576 85086 15601
1 750 148926 14238
2 1106 109184 21453
3 495 115 115
4 630 66130 33226
5 398 0 0
6 450 174594 33757
7 493 101111 12967
8 426 34680 11847
9 332 34699 6129
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 20803 18 0 0
1 18022 176 0 0
2 9669 9 0 0
3 10847 4 0 0
4 6890 0 0 0
5 13216 4 0 0
6 23899 148 0 0
7 11076 0 0 0
8 23199 15 0 0
9 15274 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 41386
1 0 2 39982
2 0 3 24350
3 0 4 123788
4 0 5 4725
5 0 6 83215
6 0 7 12832
7 0 8 5759
8 0 9 160960
9 0 10 6302
physicalDamageDealtToChampions physicalDamageTaken role \
0 4833 21741 NONE
1 3838 20002 NONE
2 3166 9366 SOLO
3 16407 12400 CARRY
4 875 11926 SUPPORT
5 11041 8652 SOLO
6 1103 11071 NONE
7 570 14825 SOLO
8 26745 11375 NONE
9 1131 8099 SOLO
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 5 4 6 12 68
1 6 4 25 11 53
2 3 4 5 14 60
3 6 7 5 4 78
4 4 4 3 14 151
5 3 4 4 12 98
6 17 11 4 4 40
7 6 4 3 12 63
8 6 7 5 4 46
9 6 6 7 7 53
summonerName teamEarlySurrendered teamId teamPosition \
0 griffeni False 100 TOP
1 RealDangerKim False 100 JUNGLE
2 Ratchet Queen False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 Panarojusts False 100 UTILITY
5 Duckgod21 False 200 TOP
6 bruhfrog42 False 200 JUNGLE
7 Rigbae87 False 200 MIDDLE
8 I1II1III1IIII1II False 200 BOTTOM
9 Big Bang G0d False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 11 2305 157565 28166
1 70 2305 206607 20073
2 44 2305 140129 28283
3 1 2305 175063 25879
4 101 2305 72256 35502
5 18 2305 99069 14873
6 23 2305 204176 36865
7 29 2305 106871 13537
8 3 2305 199118 38822
9 29 2305 41001 7261
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 44465 14827 150 138
1 39820 15877 22 1042
2 19407 6530 175 150
3 23991 10169 165 4
4 20054 4621 48 120
5 26601 2897 107 166
6 37191 11351 58 495
7 35108 1926 128 71
8 38507 5902 211 115
9 27429 4430 29 352
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 352 1 31093
1 180 5 17700
2 175 3 6594
3 184 3 51158
4 187 1 1401
5 277 1 15853
6 407 1 16750
7 298 1 0
8 378 3 3477
9 391 5 0
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 7730 1920 3 2
1 1996 1795 1 2
2 3663 370 2 2
3 9356 742 1 2
4 1401 1237 0 2
5 3832 4733 1 7
6 2004 2220 1 7
7 0 9205 0 7
8 230 3933 0 7
9 0 4055 0 7
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 20 0 2 9 True
1 25 0 2 10 True
2 35 2 4 10 True
3 17 0 1 11 True
4 70 0 8 30 True
5 12 0 0 8 False
6 15 7 1 5 False
7 23 2 2 14 False
8 19 2 3 8 False
9 29 0 2 16 False ,
assists baronKills bountyLevel champLevel championName \
0 5 0 0 13 Gnar
1 8 0 0 12 Morgana
2 5 0 2 12 Lux
3 3 0 0 12 Aphelios
4 13 0 0 11 Soraka
5 4 0 0 12 Riven
6 7 0 0 13 Nasus
7 1 0 0 10 Talon
8 6 0 0 11 Jinx
9 3 0 0 11 Zoe
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3586 11848 3586
1 282 20162 282
2 2915 8646 2915
3 3568 4200 3568
4 180 740 180
5 488 605 488
6 0 5449 0
7 0 2616 0
8 0 576 0
9 78 1302 78
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 4 1 0 False True
1 2 2 2 False False
2 2 0 0 False False
3 4 1 0 False False
4 5 1 0 False False
5 8 0 0 False False
6 3 0 1 False False
7 6 0 0 False False
8 8 1 0 False False
9 2 3 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 8809 TOP 0
1 True 7727 JUNGLE 0
2 True 8037 MIDDLE 0
3 True 10526 BOTTOM 0
4 True 6372 UTILITY 1
5 True 5787 TOP 0
6 True 9583 JUNGLE 0
7 True 5583 MIDDLE 0
8 True 8650 BOTTOM 0
9 True 6443 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 6631 1055 3047 3133 1036 3067 3340
1 0 6653 2031 2421 3158 1029 0 3364
2 0 3157 2031 0 6655 3020 0 3363
3 0 1055 3006 6672 3072 1038 1018 3340
4 0 3853 6617 2031 3158 3067 3114 3364
5 1 1055 3158 1036 6630 0 0 3340
6 1 2031 6632 3111 3110 3211 3067 3364
7 1 6693 3158 3070 2031 1036 1036 3340
8 1 6672 3085 1018 3006 0 0 3340
9 1 3853 3111 6655 0 1052 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 5 2 2
1 1 3 2 1
2 3 7 3 2
3 2 11 5 2
4 0 0 0 0
5 0 1 0 1
6 1 6 4 1
7 0 1 0 1
8 2 6 2 3
9 1 3 3 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 485 4581 877
1 1160 74719 11044
2 1047 53634 11884
3 671 929 403
4 469 4702 2676
5 318 0 0
6 814 25952 2865
7 729 0 0
8 344 1795 795
9 685 22294 8786
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 2617 4 0 0
1 2640 88 0 0
2 793 4 0 0
3 4645 0 0 0
4 2747 0 0 0
5 4113 0 0 0
6 10013 100 0 0
7 7550 4 0 0
8 5014 0 0 0
9 1909 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 73812
1 0 2 10696
2 0 3 13904
3 0 4 66017
4 0 5 2521
5 0 6 45851
6 0 7 67327
7 0 8 53730
8 0 9 56984
9 0 10 5479
physicalDamageDealtToChampions physicalDamageTaken role \
0 11290 11837 SOLO
1 668 17123 NONE
2 883 6972 SOLO
3 14826 12677 CARRY
4 468 5831 SUPPORT
5 6158 12791 SOLO
6 9893 15809 NONE
7 5571 5642 SOLO
8 12937 7986 CARRY
9 1401 5243 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 12 2 4 97
1 12 11 2 4 78
2 3 4 3 14 57
3 4 4 4 7 117
4 3 4 2 3 261
5 3 4 1 12 40
6 5 6 14 11 61
7 4 14 2 4 78
8 3 4 5 7 108
9 2 4 4 21 105
summonerName teamEarlySurrendered teamId teamPosition \
0 PoWeRPiGPR False 100 TOP
1 drcolephd False 100 JUNGLE
2 PARTYNEXTKi False 100 MIDDLE
3 nuerton snek101 False 100 BOTTOM
4 Rayvanna False 100 UTILITY
5 xPartyJesterx False 200 TOP
6 alikkun False 200 JUNGLE
7 Dublaiar False 200 MIDDLE
8 KeyKeyyy False 200 BOTTOM
9 3lindfolded False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 28 1490 82889 12167
1 60 1490 94537 12921
2 42 1490 71040 13056
3 15 1490 71417 16925
4 27 1490 7223 3144
5 11 1490 49026 6158
6 14 1490 100832 13581
7 2 1490 57623 6289
8 24 1490 60890 14832
9 36 1490 28945 11178
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 15167 1946 105 303
1 20440 9827 23 225
2 8023 944 74 252
3 18782 2984 118 123
4 9101 14809 11 91
5 17638 742 90 35
6 27200 5034 16 480
7 13676 884 91 125
8 13458 2573 117 64
9 7292 360 20 107
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 124 1 4495
1 67 1 9121
2 70 1 3502
3 121 2 4470
4 122 5 0
5 236 1 3175
6 107 1 7552
7 186 1 3893
8 201 2 2110
9 50 2 1170
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 711 2 0
1 1208 676 0 0
2 288 257 4 0
3 1695 1460 1 0
4 0 522 0 0
5 0 733 0 7
6 822 1377 0 7
7 718 483 0 7
8 1098 457 0 7
9 990 139 0 7
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 11 1 0 8 True
1 13 3 0 3 True
2 8 0 0 7 True
3 12 1 2 7 True
4 26 3 2 14 True
5 8 0 0 5 False
6 14 0 5 1 False
7 13 0 2 6 False
8 11 1 2 6 False
9 44 3 2 20 False ,
assists baronKills bountyLevel champLevel championName \
0 1 0 0 14 Illaoi
1 6 0 0 14 LeeSin
2 4 0 0 15 Zed
3 4 0 0 13 Vayne
4 4 0 0 12 Shaco
5 5 0 1 16 Teemo
6 9 0 1 14 Warwick
7 9 0 1 14 Zoe
8 10 0 4 13 Jhin
9 10 0 1 13 Senna
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 889 2717 889
1 854 11299 854
2 5598 10614 5598
3 2618 3487 2618
4 708 1305 708
5 4220 6512 4220
6 647 3333 647
7 1866 4269 1866
8 1294 4659 1294
9 1227 3416 1227
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 6 0 0 False True
1 7 1 2 False False
2 5 0 1 False False
3 5 0 0 False False
4 6 4 0 False False
5 4 2 0 False False
6 7 0 0 False False
7 5 3 1 False False
8 1 0 0 False False
9 3 3 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False True False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 8150 TOP 0
1 True 10351 JUNGLE 0
2 True 12198 MIDDLE 0
3 True 8780 BOTTOM 0
4 True 7025 UTILITY 0
5 True 12278 TOP 0
6 True 10838 JUNGLE 0
7 True 8199 MIDDLE 0
8 True 9654 BOTTOM 0
9 True 9151 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 0 6630 3111 3065 1029 0 3364
1 0 2031 6630 1031 3074 3047 3133 3340
2 0 3142 2031 3047 6692 3814 3035 3340
3 0 3153 6672 1036 0 0 3006 3340
4 0 3853 6656 3020 2055 3191 1052 3364
5 0 3157 4633 3115 2055 3020 1058 3340
6 0 3047 3748 6632 3044 1028 0 3340
7 0 2031 3191 6655 1056 1052 3020 3363
8 0 6671 3009 6676 0 0 1055 3340
9 0 6672 3864 2055 3009 3124 3086 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 3 2 1
1 0 4 0 1
2 3 9 3 1
3 1 2 2 1
4 0 2 0 1
5 3 9 4 1
6 1 7 3 1
7 0 1 0 1
8 1 5 4 1
9 1 7 4 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 476 0 0
1 627 46388 2487
2 642 7773 1106
3 773 0 0
4 896 30344 8473
5 561 85613 15582
6 395 35721 9616
7 559 55362 12502
8 944 5970 942
9 1066 0 0
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 9312 4 0 0
1 10342 135 0 0
2 10106 8 0 0
3 3950 0 0 0
4 6487 0 0 0
5 1315 28 0 0
6 6654 100 0 0
7 1756 4 0 0
8 2400 0 0 0
9 1618 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 88013
1 0 2 101877
2 0 3 104678
3 0 4 68970
4 0 5 6095
5 0 6 27236
6 0 7 66469
7 0 8 12826
8 0 9 99158
9 0 10 30925
physicalDamageDealtToChampions physicalDamageTaken role \
0 7696 11418 SOLO
1 11336 17465 NONE
2 24398 8424 SOLO
3 7216 11746 CARRY
4 1218 11659 SUPPORT
5 1631 14210 SOLO
6 8471 23210 NONE
7 797 13519 SOLO
8 12192 10925 CARRY
9 12019 8004 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 12 3 4 36
1 3 4 17 11 43
2 4 4 3 14 120
3 5 7 2 4 120
4 2 3 4 4 195
5 2 4 3 14 48
6 3 4 8 11 29
7 2 4 2 14 100
8 5 7 3 4 78
9 1 3 1 4 41
summonerName teamEarlySurrendered teamId teamPosition \
0 jakegk False 100 TOP
1 tealdog100 False 100 JUNGLE
2 hoeslapper6969 False 100 MIDDLE
3 BlackFalcon95 False 100 BOTTOM
4 Shrodingers Fox False 100 UTILITY
5 JefferyRW False 200 TOP
6 ThsWoshi123 False 200 JUNGLE
7 OscarC1602 False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 Chtwd False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1 1845 88013 7696
1 13 1845 163191 14057
2 7 1845 113538 26590
3 7 1845 84283 9525
4 41 1845 36439 9691
5 27 1845 118292 18874
6 28 1845 108853 18583
7 52 1845 78357 15360
8 26 1845 105553 13177
9 37 1845 36060 12801
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 21719 3594 118 18
1 28952 9932 30 403
2 20188 4226 150 82
3 16120 5446 131 8
4 18973 2572 35 343
5 16364 3226 163 364
6 31159 15492 16 289
7 15695 2351 116 155
8 13481 4403 146 132
9 10543 7641 10 137
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 157 1 0
1 190 1 14926
2 204 1 1085
3 176 4 15313
4 155 1 0
5 86 1 5442
6 218 1 6662
7 159 1 10168
8 30 3 424
9 109 5 5134
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 987 0 3
1 234 1144 0 3
2 1085 1657 2 3
3 2308 424 1 3
4 0 826 0 3
5 1660 838 1 3
6 496 1294 0 3
7 2060 419 2 3
8 42 155 0 3
9 781 920 0 3
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 7 0 0 4 False
1 17 2 2 7 False
2 18 0 2 9 False
3 13 0 2 6 False
4 35 5 4 16 False
5 17 3 0 5 True
6 16 0 1 7 True
7 19 3 0 12 True
8 18 0 2 10 True
9 30 4 2 17 True ,
assists baronKills bountyLevel champLevel championName \
0 6 0 0 13 Gangplank
1 3 0 0 16 Diana
2 2 0 0 13 Yasuo
3 2 0 0 11 Ashe
4 8 0 0 11 Nautilus
5 10 0 3 15 Kayle
6 15 0 2 13 Volibear
7 9 0 7 15 MasterYi
8 14 0 0 13 Ezreal
9 15 0 0 13 Senna
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3333 4295 3333
1 2061 20752 2061
2 532 3908 532
3 1541 2499 1541
4 193 193 193
5 3564 7913 3564
6 2780 25650 2780
7 3162 8511 3162
8 3400 6301 3400
9 6750 8174 6750
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 6 0 0 False False
1 5 4 0 False False
2 4 4 1 False False
3 8 0 0 False False
4 9 1 0 False False
5 3 2 0 False False
6 6 0 3 False False
7 5 0 0 False False
8 2 0 0 True False
9 5 0 0 False True
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 True False False
7 False True False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 7549 TOP 0
1 True 15705 JUNGLE 0
2 True 7580 MIDDLE 0
3 True 7248 BOTTOM 0
4 True 6380 UTILITY 0
5 True 10310 TOP 0
6 True 10091 JUNGLE 0
7 True 11381 MIDDLE 0
8 True 9576 BOTTOM 1
9 True 10217 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 3042 3078 3158 0 0 0 3340
1 1 4636 3020 3157 3115 3100 3916 3364
2 1 6673 3006 1038 1018 0 0 3340
3 1 6673 1055 3006 3086 1042 0 3340
4 1 3859 3047 3068 2010 1028 3076 3340
5 0 1029 2421 3115 4633 3006 1052 3340
6 0 3009 6664 3742 3066 1028 0 3340
7 0 6691 3156 1054 3047 0 0 3340
8 0 3508 3158 3004 3123 3133 1055 3340
9 0 3864 6692 3094 3035 3009 1018 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 0 1 0 1
1 3 15 7 3
2 1 2 2 1
3 0 2 0 1
4 0 1 0 1
5 1 3 3 2
6 1 4 2 2
7 2 10 7 3
8 2 7 5 1
9 3 8 2 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 706 13195 5137
1 700 177959 30923
2 1388 3121 404
3 591 2532 1432
4 428 12808 4433
5 645 66651 13075
6 432 57253 4887
7 381 0 0
8 1429 11186 5837
9 543 2148 1138
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 7627 0 1 0
1 8530 155 1 0
2 2089 4 1 0
3 2249 8 1 0
4 5703 0 1 0
5 9117 10 0 0
6 12968 85 0 0
7 7614 0 0 0
8 6207 0 0 0
9 6738 4 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 60613
1 0 2 31050
2 0 3 79281
3 0 4 61768
4 0 5 6360
5 0 6 37038
6 0 7 35545
7 0 8 70717
8 0 9 64975
9 0 10 40228
physicalDamageDealtToChampions physicalDamageTaken role \
0 7995 17130 NONE
1 3448 17224 NONE
2 6178 10824 SOLO
3 5033 14137 CARRY
4 1478 14652 SUPPORT
5 5092 11190 SOLO
6 5972 16445 NONE
7 14533 9509 SOLO
8 7163 3344 CARRY
9 22011 6228 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 14 5 4 36
1 13 11 5 4 66
2 6 14 4 4 317
3 5 7 4 4 32
4 2 14 5 4 60
5 4 4 3 12 63
6 18 11 5 4 246
7 4 4 4 14 75
8 3 7 2 4 78
9 0 14 2 4 49
summonerName teamEarlySurrendered teamId teamPosition \
0 Melancholyism False 100 TOP
1 bigdongle2000 False 100 JUNGLE
2 HyruleSavior19 False 100 MIDDLE
3 ChaosDiamond1 False 100 BOTTOM
4 knives and pens False 100 UTILITY
5 Pulsk False 200 TOP
6 SexualYordle False 200 JUNGLE
7 akwardflex False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 RubyAntihelios False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 8 1709 81367 14153
1 14 1709 217665 35797
2 12 1709 83723 7903
3 28 1709 67108 6466
4 45 1709 22394 6245
5 7 1709 112051 18535
6 26 1709 110888 11513
7 5 1709 94487 17692
8 0 1709 78006 13000
9 35 1709 42377 23150
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 25592 8331 115 214
1 27436 10529 65 280
2 14011 923 116 83
3 16593 2076 87 633
4 20715 1593 31 259
5 21276 6117 150 153
6 30989 6736 35 312
7 18463 2791 100 51
8 9664 1941 116 0
9 13070 9034 9 171
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 200 1 7558
1 178 1 8655
2 173 1 1320
3 187 3 2807
4 195 1 3225
5 106 5 8362
6 188 1 18090
7 152 1 23769
8 37 3 1845
9 128 5 0
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1021 834 0 7
1 1425 1681 1 7
2 1320 1097 0 7
3 0 206 1 7
4 334 358 0 7
5 367 968 0 3
6 653 1575 1 3
7 3158 1340 2 3
8 0 112 1 3
9 0 104 3 3
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 13 0 1 7 False
1 25 4 6 5 False
2 22 4 2 11 False
3 5 0 0 1 False
4 30 1 2 15 False
5 18 2 2 11 True
6 27 0 5 9 True
7 11 0 0 8 True
8 15 0 1 9 True
9 27 0 0 15 True ,
assists baronKills bountyLevel champLevel championName \
0 2 0 1 10 Darius
1 4 0 4 10 Volibear
2 2 0 4 11 Ahri
3 4 0 1 9 Kaisa
4 4 0 2 8 Pyke
5 0 0 0 11 Fiora
6 0 0 0 6 Kindred
7 0 0 0 10 TwistedFate
8 0 0 0 8 Ezreal
9 2 0 0 8 Blitzcrank
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 617 617 617
1 344 6866 344
2 942 1533 942
3 836 836 836
4 166 166 166
5 1861 1861 1861
6 0 3630 0
7 1070 1070 1070
8 0 511 0
9 0 0 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 3 0 0 False False
1 0 0 1 False False
2 0 1 0 False False
3 1 3 0 False False
4 1 0 0 False False
5 2 2 0 False True
6 3 1 1 False False
7 4 0 0 False False
8 2 0 0 False False
9 5 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 4481 TOP 0
1 True 6012 JUNGLE 0
2 True 4990 MIDDLE 0
3 True 6352 BOTTOM 0
4 True 4469 UTILITY 0
5 True 5460 TOP 0
6 True 3194 JUNGLE 0
7 True 4237 MIDDLE 0
8 True 4787 BOTTOM 0
9 True 3241 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3051 1055 3067 3047 0 0 3340
1 0 6664 2031 3158 2055 0 0 3340
2 0 1001 2033 0 6656 1029 0 3340
3 0 6672 1042 3006 0 0 1055 3340
4 0 3854 6691 1001 0 0 0 3340
5 0 1055 6630 3047 0 0 0 3340
6 0 2031 3006 1042 1036 0 0 3340
7 0 2403 2033 3020 3802 1026 0 3340
8 0 3508 3158 0 0 0 1055 3340
9 0 3859 1033 2031 3067 3117 1029 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 0 2 0 1
1 1 4 4 2
2 1 4 4 1
3 1 3 2 1
4 1 3 2 2
5 1 3 3 1
6 0 0 0 0
7 0 0 0 0
8 1 2 2 1
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 354 0 0
1 0 31168 838
2 0 18391 3957
3 772 3683 1991
4 586 0 0
5 746 998 448
6 377 7616 203
7 470 35827 3934
8 491 2675 1387
9 299 5028 2652
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 793 4 0 0
1 1858 84 0 0
2 2957 0 0 0
3 1991 0 0 0
4 1979 0 0 0
5 312 0 0 0
6 1804 48 0 0
7 3145 0 0 0
8 1052 0 0 0
9 1452 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 33471
1 0 2 30906
2 0 3 10392
3 0 4 42139
4 0 5 5351
5 0 6 31965
6 0 7 19697
7 0 8 7445
8 0 9 27190
9 0 10 3762
physicalDamageDealtToChampions physicalDamageTaken role \
0 4298 5821 SUPPORT
1 2740 7082 SUPPORT
2 1055 1431 SUPPORT
3 3184 3040 DUO
4 2835 2689 SUPPORT
5 4704 8378 DUO
6 773 6577 SUPPORT
7 330 2552 SUPPORT
8 3624 2445 SUPPORT
9 1065 5844 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 4 2 6 93
1 8 11 2 4 83
2 1 14 1 4 91
3 2 7 1 4 166
4 2 4 3 14 146
5 2 4 1 12 53
6 6 11 2 4 46
7 2 4 1 14 79
8 3 7 1 4 78
9 1 14 1 4 55
summonerName teamEarlySurrendered teamId teamPosition \
0 VOLTRONVL False 100 TOP
1 Simlessard21 False 100 JUNGLE
2 ThisGameBlows8D False 100 MIDDLE
3 0neSing1eMan False 100 BOTTOM
4 hoolzjr False 100 UTILITY
5 PPLongExtendo False 200 TOP
6 Echoclaww False 200 JUNGLE
7 Soccer7pvp False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 SorinsMaster False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 7 908 41040 4706
1 6 908 68167 3778
2 8 908 39429 6773
3 0 908 52081 5199
4 13 908 8295 4119
5 4 908 37790 6460
6 0 908 30033 1086
7 4 908 47836 4474
8 0 908 31435 5011
9 20 908 12932 3887
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 7922 1541 68 53
1 9051 4511 11 267
2 4599 842 84 21
3 5201 1217 119 0
4 4669 981 9 39
5 9054 2610 102 46
6 8669 5170 1 49
7 7121 1070 77 37
8 4436 715 86 0
9 7960 262 22 38
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 53 1 7568
1 0 1 6092
2 0 1 10645
3 27 2 6258
4 16 1 2943
5 67 1 4827
6 42 9 2720
7 78 1 4563
8 43 2 1570
9 90 2 4141
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 408 1307 0 0
1 200 110 0 0
2 1759 210 0 0
3 24 170 0 0
4 1284 0 0 0
5 1307 363 0 0
6 110 287 0 0
7 210 1424 0 0
8 0 938 0 0
9 170 663 0 0
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 6 0 1 4 True
1 10 1 1 4 True
2 6 1 0 5 True
3 14 3 3 7 True
4 6 0 0 5 True
5 11 3 2 5 False
6 7 1 0 4 False
7 4 0 0 3 False
8 6 0 0 5 False
9 8 0 0 7 False ,
assists baronKills bountyLevel champLevel championName \
0 2 0 3 13 Ziggs
1 7 0 0 12 Shaco
2 6 0 2 15 Azir
3 11 0 0 13 Ashe
4 11 0 3 13 Lux
5 3 0 0 14 Riven
6 6 0 0 11 Evelynn
7 3 0 0 14 Viego
8 5 0 0 11 Vayne
9 7 0 1 10 Senna
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 12097 17097 12097
1 1261 20978 1261
2 2170 4799 2170
3 6182 19298 6182
4 2211 5586 2211
5 1090 1370 1090
6 805 1994 805
7 1850 3970 1850
8 1408 1408 1408
9 0 2571 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 4 0 1 False False
1 4 4 3 False False
2 0 0 0 False False
3 4 0 0 False True
4 3 1 0 True False
5 5 1 0 False False
6 7 0 0 False False
7 2 2 0 False False
8 8 0 0 False False
9 5 3 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False True False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 8026 TOP 1
1 True 7421 JUNGLE 0
2 True 9187 MIDDLE 0
3 True 11920 BOTTOM 0
4 True 10923 UTILITY 0
5 True 8362 TOP 0
6 True 6908 JUNGLE 0
7 True 10190 MIDDLE 0
8 True 7202 BOTTOM 0
9 True 6303 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1056 6655 3020 3157 0 0 3340
1 0 3009 2031 6691 3134 1018 2055 3364
2 0 1056 6655 3020 3115 0 0 3340
3 0 1055 3006 3153 6672 3085 0 3340
4 0 3853 6655 3157 3020 3916 1028 3364
5 1 1055 3158 6630 3133 3067 1036 3340
6 1 4636 3916 1028 3020 0 0 3340
7 1 1054 6672 3153 3111 0 0 3340
8 1 6672 3006 1036 1036 3086 1055 3340
9 1 3864 6662 1036 3111 3211 0 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 1 4 3 1
1 0 0 0 0
2 1 2 2 1
3 2 10 6 2
4 4 11 4 2
5 1 5 4 1
6 0 3 0 1
7 1 4 3 1
8 0 2 0 1
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 405 59599 6811
1 628 29099 3636
2 0 108781 7970
3 607 2159 1359
4 857 29274 15831
5 817 0 0
6 491 44315 5732
7 993 3495 1035
8 480 0 0
9 261 829 84
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 1287 8 0 0
1 2604 90 0 0
2 477 8 0 0
3 2246 12 0 0
4 1747 4 0 0
5 9623 0 0 0
6 9307 60 0 0
7 7111 17 0 0
8 6985 0 0 0
9 3942 4 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 14030
1 0 2 40759
2 0 3 8801
3 0 4 108085
4 0 5 4769
5 0 6 81880
6 0 7 8736
7 0 8 89314
8 0 9 33467
9 0 10 14490
physicalDamageDealtToChampions physicalDamageTaken role \
0 863 6924 SOLO
1 1204 13095 NONE
2 368 5692 SOLO
3 18333 10328 CARRY
4 984 5186 SUPPORT
5 7497 9046 SOLO
6 316 8132 NONE
7 6932 5168 SOLO
8 3812 8081 CARRY
9 4456 5616 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 1 7 3 4 107
1 3 4 15 11 197
2 3 4 2 12 39
3 4 7 4 4 186
4 2 4 1 14 68
5 4 4 2 12 39
6 12 11 4 4 49
7 2 4 1 12 72
8 3 7 3 4 78
9 4 4 3 14 101
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 LostSymbl False 100 TOP 8
1 VVBeerusVV False 100 JUNGLE 14
2 beninjator False 100 MIDDLE 8
3 sPradeePs False 100 BOTTOM 35
4 ipargolf False 100 UTILITY 40
5 Icanbeyourpapi False 200 TOP 17
6 Locafactor1234 False 200 JUNGLE 4
7 iamagamerr False 200 MIDDLE 5
8 Dublaiar False 200 BOTTOM 0
9 ShonenTwenty False 200 UTILITY 32
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1641 87264 7674
1 1641 83498 4881
2 1641 117667 8339
3 1641 130123 21338
4 1641 34104 16875
5 1641 100218 7549
6 1641 59316 6260
7 1641 96557 8325
8 1641 47495 5089
9 1641 18688 5010
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 8212 422 89 145
1 16148 5192 26 478
2 6558 97 162 233
3 13802 1725 132 598
4 7236 58 28 111
5 18829 2233 134 84
6 17720 3843 12 105
7 12478 2942 171 44
8 15708 2862 76 0
9 10026 3176 12 224
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 100 2 13635
1 105 1 13639
2 0 1 84
3 87 3 19878
4 95 1 60
5 160 1 18338
6 201 1 6264
7 35 1 3746
8 219 3 14027
9 64 5 3368
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 0 2 1
1 40 448 1 1
2 0 388 1 1
3 1646 1228 1 1
4 60 302 0 1
5 52 159 0 6
6 212 280 0 6
7 357 197 2 6
8 1277 641 0 6
9 469 467 0 6
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 7 0 1 4 True
1 26 5 4 5 True
2 11 0 0 7 True
3 23 0 4 8 True
4 58 1 12 17 True
5 22 1 2 9 False
6 9 0 1 5 False
7 22 2 2 10 False
8 7 0 0 7 False
9 30 3 1 21 False ,
assists baronKills bountyLevel champLevel championName \
0 5 0 0 12 Talon
1 10 0 1 13 Graves
2 6 0 0 14 Yasuo
3 12 0 1 14 Senna
4 11 0 2 13 TwistedFate
5 13 0 0 13 Taric
6 14 0 0 13 Nunu
7 5 0 1 15 Pantheon
8 9 0 0 12 Vayne
9 10 0 0 12 Seraphine
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 60 60 60
1 914 16432 914
2 3214 3868 3214
3 6564 6564 6564
4 7710 7710 7710
5 1486 3564 1486
6 0 4496 0
7 1866 12056 1866
8 544 2995 544
9 36 36 36
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 10 0 0 False False
1 5 0 1 False False
2 10 0 0 False False
3 4 2 0 False False
4 4 0 0 False False
5 4 1 0 False True
6 9 0 1 False False
7 5 2 1 False False
8 11 0 1 False False
9 6 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 True False False
4 False True False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 9123 TOP 0
1 False 9464 JUNGLE 0
2 False 9316 MIDDLE 0
3 False 12549 UTILITY 0
4 False 12278 BOTTOM 1
5 False 8430 TOP 0
6 False 8123 JUNGLE 0
7 False 14513 MIDDLE 0
8 False 6524 BOTTOM 0
9 False 7215 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 6693 2031 3042 3158 3133 0 3340
1 0 6673 2031 3006 6676 0 0 3340
2 0 1055 3086 6673 3006 1018 1038 3340
3 0 3086 6632 3111 2055 3124 3071 3364
4 0 3094 6672 3111 3046 1043 0 3340
5 1 2033 6664 3143 3158 3076 1028 3340
6 1 3047 3067 6664 3076 3211 1028 3364
7 1 6692 2033 3158 3814 3074 6333 3340
8 1 6672 3006 1036 1036 1042 1055 3340
9 1 3853 6617 3158 6616 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 11 4 1
1 0 1 0 1
2 0 3 0 1
3 2 12 5 3
4 3 7 2 2
5 2 5 3 1
6 0 2 0 1
7 5 21 5 3
8 0 2 0 1
9 1 3 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 302 0 0
1 492 7981 348
2 353 11261 943
3 728 0 0
4 403 38591 9635
5 629 35193 7140
6 293 43808 7642
7 525 5332 902
8 295 0 0
9 399 31003 9669
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 6197 0 0 0
1 4077 92 0 0
2 5397 5 0 0
3 4765 4 0 0
4 5693 19 0 0
5 1954 4 1 0
6 4170 92 1 0
7 3221 16 1 0
8 2599 4 1 0
9 841 0 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 56415
1 0 2 101599
2 0 3 101800
3 0 4 63784
4 0 5 69876
5 0 6 22532
6 0 7 15171
7 0 8 107358
8 0 9 29622
9 0 10 2525
physicalDamageDealtToChampions physicalDamageTaken role \
0 17765 13930 SOLO
1 7628 13585 NONE
2 16320 17539 SOLO
3 32115 14535 SUPPORT
4 10844 11905 CARRY
5 4740 22838 SOLO
6 839 28558 NONE
7 28444 19284 SOLO
8 7439 20132 CARRY
9 1084 17031 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 6 14 4 4 27
1 2 4 10 11 37
2 5 14 4 4 105
3 4 3 4 4 201
4 4 7 4 4 15
5 6 6 3 12 15
6 16 11 5 4 24
7 5 4 6 14 347
8 3 7 2 4 78
9 5 4 5 14 133
summonerName teamEarlySurrendered teamId teamPosition \
0 hardstuck345 False 100 TOP
1 Alpacability False 100 JUNGLE
2 Yąsuicide False 100 MIDDLE
3 SnipeosaurusRex False 100 UTILITY
4 Snipeosaurus False 100 BOTTOM
5 RyeBreadPitt False 200 TOP
6 GwenTheDol False 200 JUNGLE
7 Rotome False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 Alece False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 9 1628 58837 18647
1 15 1628 122408 8587
2 28 1628 116674 18036
3 80 1628 64916 32981
4 65 1628 121030 23349
5 44 1628 59296 11881
6 30 1628 99608 9108
7 24 1628 116114 29962
8 4 1628 35254 9218
9 27 1628 34091 11316
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 20466 2141 62 133
1 17770 4954 53 518
2 23456 2280 137 91
3 20589 13311 32 320
4 18926 7815 139 267
5 26764 15028 88 228
6 34340 12983 27 257
7 24031 6583 127 52
8 23269 3569 66 32
9 18227 7320 24 170
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 261 1 2421
1 149 1 12827
2 330 1 3612
3 135 5 1132
4 101 3 12561
5 137 5 1570
6 208 1 40628
7 144 1 3423
8 280 2 5632
9 155 5 562
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 881 338 0 0
1 611 108 0 0
2 772 520 1 0
3 866 1288 3 0
4 2870 1327 4 0
5 0 1972 0 8
6 626 1611 0 8
7 616 1525 0 8
8 1778 537 0 8
9 562 355 0 8
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 6 0 0 4 True
1 3 0 0 1 True
2 8 0 1 4 True
3 37 3 2 16 True
4 11 0 1 5 True
5 17 1 0 9 False
6 7 0 1 0 False
7 24 2 1 7 False
8 11 0 1 7 False
9 5 0 0 3 False ,
assists baronKills bountyLevel champLevel championName \
0 6 0 3 11 Shen
1 2 0 3 10 Khazix
2 4 0 0 11 Galio
3 5 0 3 9 Samira
4 8 0 2 9 Morgana
5 2 0 0 10 Taric
6 1 0 0 9 Nunu
7 1 0 0 11 Leblanc
8 2 0 0 8 Jhin
9 0 0 0 8 Senna
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 1474 1474 1474
1 719 16406 719
2 1523 5609 1523
3 1558 3192 1558
4 898 1407 898
5 146 146 146
6 0 2048 0
7 0 2061 0
8 0 0 0
9 211 211 211
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 1 1 0 True False
1 0 2 2 True False
2 1 1 0 False True
3 2 2 0 True False
4 0 3 0 True False
5 4 0 0 False False
6 5 0 0 False False
7 1 1 0 False False
8 4 0 0 False False
9 2 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 True False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 5863 TOP 0
1 True 6108 JUNGLE 0
2 True 6393 MIDDLE 0
3 True 6646 BOTTOM 0
4 True 5174 UTILITY 0
5 True 4402 TOP 0
6 True 4454 JUNGLE 0
7 True 4394 MIDDLE 0
8 True 4366 BOTTOM 0
9 True 5245 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3047 3068 1029 1054 0 0 3340
1 0 6691 3158 2055 0 0 0 3340
2 0 2031 3152 3111 2420 1082 0 3363
3 0 1055 3134 6673 3006 0 0 3340
4 0 0 3853 3802 3117 2424 0 3364
5 0 2033 6664 0 0 2422 0 3340
6 0 3111 2031 6660 1029 1033 0 3340
7 0 2033 3802 3020 1026 0 0 3340
8 0 6671 1001 0 0 0 1055 3340
9 0 1018 3864 1037 6670 3123 3009 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 4 3 1
1 1 3 3 1
2 1 2 2 1
3 2 5 3 2
4 1 2 2 1
5 0 1 0 1
6 0 0 0 0
7 0 0 0 0
8 0 0 0 0
9 1 3 3 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 472 15323 4733
1 0 6678 161
2 847 58697 4685
3 462 5650 1186
4 0 11786 3082
5 423 17294 2944
6 466 24382 1990
7 851 17983 3433
8 449 543 0
9 850 0 0
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 3935 0 0 0
1 2156 92 0 0
2 1736 4 0 0
3 493 4 0 0
4 926 0 0 0
5 5095 0 0 0
6 2980 80 0 0
7 3109 0 0 0
8 2149 0 0 0
9 1525 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 24604
1 0 2 73989
2 0 3 5756
3 0 4 42851
4 0 5 1756
5 0 6 11160
6 0 7 16313
7 0 8 13488
8 0 9 35545
9 0 10 15137
physicalDamageDealtToChampions physicalDamageTaken role \
0 5617 5358 SUPPORT
1 5258 9901 SUPPORT
2 207 4617 DUO
3 6646 5530 SUPPORT
4 894 4218 SUPPORT
5 1954 8901 SUPPORT
6 615 14569 SUPPORT
7 927 3337 DUO
8 2002 3472 SUPPORT
9 7580 3867 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 4 1 12 327
1 1 4 10 11 240
2 1 4 1 12 244
3 2 7 2 4 478
4 4 14 3 4 366
5 3 6 2 12 261
6 2 4 10 11 179
7 1 14 2 4 108
8 2 7 1 4 76
9 2 4 3 14 186
summonerName teamEarlySurrendered teamId teamPosition \
0 S A F E M Ö Ö N False 100 TOP
1 Crystallino False 100 JUNGLE
2 Buy SafeMoonCoin False 100 MIDDLE
3 NëF False 100 BOTTOM
4 BuySafeMoonToday False 100 UTILITY
5 StalwartHide False 200 TOP
6 Coolgum15 False 200 JUNGLE
7 you51f False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 Ëye of the Void False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 28 1012 41915 10828
1 1 1012 88643 5480
2 11 1012 66733 4893
3 0 1012 48501 7832
4 22 1012 13906 4340
5 29 1012 31059 4899
6 13 1012 65903 3010
7 12 1012 38493 4485
8 8 1012 36088 2002
9 18 1012 15705 8068
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 9479 601 68 189
1 12268 7455 20 162
2 6585 122 118 32
3 6410 1505 88 1
4 5144 738 11 42
5 14408 4867 73 150
6 17664 7028 4 210
7 6489 937 101 12
8 5954 883 86 27
9 5392 2595 16 108
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 16 1 1987
1 0 1 7975
2 32 1 2280
3 24 2 0
4 0 1 364
5 93 2 2605
6 108 1 25207
7 32 1 7021
8 57 2 0
9 55 4 568
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 477 186 1 0
1 59 210 0 0
2 0 232 0 0
3 0 387 1 0
4 364 0 0 0
5 0 412 0 2
6 403 114 0 2
7 123 42 0 2
8 0 332 0 2
9 488 0 0 2
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 9 1 0 6 True
1 16 3 1 7 True
2 17 1 1 5 True
3 16 2 3 6 True
4 24 3 2 10 True
5 7 0 1 4 False
6 7 0 0 4 False
7 5 1 0 6 False
8 9 0 2 5 False
9 17 4 4 9 False ,
assists baronKills bountyLevel champLevel championName \
0 9 0 3 13 Renekton
1 12 0 1 11 Kindred
2 11 0 1 12 Galio
3 5 0 6 10 Ezreal
4 12 0 0 10 Seraphine
5 3 0 0 10 Kled
6 5 0 0 12 Udyr
7 2 0 0 11 Talon
8 1 0 0 9 Kaisa
9 4 0 0 9 Soraka
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2678 3761 2678
1 2841 26488 2841
2 2312 3842 2312
3 2160 2945 2160
4 1334 1796 1334
5 0 0 0
6 3337 8957 3337
7 3022 3022 3022
8 0 1075 0
9 0 738 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 3 0 0 False False
1 2 0 1 False False
2 2 0 0 False False
3 0 0 0 False False
4 1 2 0 False False
5 7 1 0 True False
6 4 2 1 False True
7 7 0 0 False False
8 4 0 0 False False
9 3 4 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 True False False
2 False True False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 10356 TOP 1
1 True 8092 JUNGLE 0
2 True 8087 MIDDLE 0
3 True 7359 BOTTOM 0
4 True 6001 UTILITY 0
5 True 5451 TOP 0
6 True 6975 JUNGLE 0
7 True 6911 MIDDLE 0
8 True 6850 BOTTOM 0
9 True 4754 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1055 6630 3047 3071 1031 1036 3340
1 0 6672 2031 3006 3134 1037 0 3340
2 0 1056 6656 3191 3020 3108 0 3340
3 0 3070 3158 3508 3133 1036 0 3340
4 0 3853 6617 2055 3158 3916 1004 3364
5 1 1055 2031 3748 1028 1001 0 3364
6 1 6632 2031 3044 1001 0 0 3364
7 1 3158 6693 3134 0 1037 0 3340
8 1 6672 3006 3134 1018 0 1055 3340
9 1 3853 6617 2055 0 3158 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 10 6 2
1 1 3 2 2
2 1 4 2 1
3 1 6 6 2
4 1 2 2 1
5 0 1 0 1
6 0 1 0 1
7 0 3 0 1
8 1 3 2 1
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 528 2943 1570
1 794 9548 972
2 654 69291 16363
3 0 4726 2664
4 1121 14778 6029
5 382 0 0
6 363 3409 0
7 355 0 0
8 950 3936 2126
9 821 24425 7057
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 1475 4 0 0
1 2951 69 0 0
2 294 0 0 0
3 3210 0 0 0
4 2052 0 0 0
5 4523 0 0 0
6 6931 96 0 0
7 5717 8 0 0
8 6589 0 0 0
9 5102 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 74049
1 0 2 56203
2 0 3 3073
3 0 4 28927
4 0 5 7246
5 0 6 38997
6 0 7 82732
7 0 8 59436
8 0 9 41740
9 0 10 2926
physicalDamageDealtToChampions physicalDamageTaken role \
0 19238 17143 SOLO
1 7829 10155 NONE
2 456 13773 SOLO
3 5390 2275 CARRY
4 1756 4755 SUPPORT
5 7300 15180 SOLO
6 7407 11239 NONE
7 9874 10807 SOLO
8 3732 6440 CARRY
9 444 4202 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 14 3 4 196
1 2 4 9 11 469
2 3 4 2 12 436
3 2 7 1 4 84
4 3 14 3 4 324
5 2 12 2 4 88
6 3 4 12 11 261
7 3 14 2 4 251
8 2 7 2 4 76
9 2 4 1 14 123
summonerName teamEarlySurrendered teamId teamPosition \
0 Zbradley False 100 TOP
1 Tactical Inter23 False 100 JUNGLE
2 Hotspurs11 False 100 MIDDLE
3 Ovalawrd False 100 BOTTOM
4 log3000 False 100 UTILITY
5 Seeking Sea King False 200 TOP
6 StalwartHide False 200 JUNGLE
7 Sketchy tX False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 ZeikEndestroi False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 25 1265 81448 22364
1 4 1265 82041 9556
2 41 1265 79905 16819
3 0 1265 36373 8054
4 20 1265 22529 8290
5 5 1265 44177 7300
6 23 1265 97811 8153
7 4 1265 59868 10306
8 0 1265 51501 6256
9 36 1265 27542 7692
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 19622 6286 120 51
1 13227 7592 21 126
2 14497 784 106 112
3 5485 966 86 0
4 7019 4829 10 119
5 20901 882 80 37
6 18672 6084 32 154
7 17087 1037 97 94
8 13247 1237 116 1
9 9637 11592 22 249
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 57 1 4455
1 61 9 16289
2 51 1 7540
3 0 2 2720
4 30 5 504
5 158 1 5180
6 94 1 11669
7 194 1 432
8 120 2 5823
9 83 5 190
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1554 1004 1 1
1 754 119 3 1
2 0 429 2 1
3 0 0 0 1
4 504 212 0 1
5 0 1197 0 6
6 745 501 1 6
7 432 562 0 6
8 398 217 0 6
9 190 332 0 6
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 7 0 1 4 True
1 15 0 3 6 True
2 10 0 1 5 True
3 7 0 2 5 True
4 26 4 3 14 True
5 12 1 1 5 False
6 14 2 0 3 False
7 9 0 2 5 False
8 7 0 0 6 False
9 25 6 2 13 False ,
assists baronKills bountyLevel champLevel championName \
0 3 0 0 13 Camille
1 1 0 0 12 Viego
2 0 0 1 12 Neeko
3 5 0 1 12 Twitch
4 2 0 0 11 Lux
5 5 0 0 16 Heimerdinger
6 9 1 1 14 Nocturne
7 7 0 0 15 Viktor
8 6 0 1 13 Jhin
9 11 0 6 14 Sett
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 0 490 0
1 0 17416 0
2 1594 1594 1594
3 1961 1961 1961
4 1067 1067 1067
5 5749 11286 5749
6 731 24868 731
7 4592 15259 4592
8 3815 9200 3815
9 2744 6940 2744
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 8 1 0 False False
1 5 2 0 False False
2 5 0 0 False False
3 6 1 0 False False
4 9 0 0 False False
5 1 1 0 False False
6 2 0 4 False False
7 2 1 0 False False
8 4 0 0 False True
9 1 6 0 True False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 8136 TOP 0
1 True 9112 JUNGLE 0
2 True 7460 MIDDLE 0
3 True 8922 BOTTOM 0
4 True 5698 UTILITY 0
5 True 11872 TOP 0
6 True 8943 JUNGLE 1
7 True 10176 MIDDLE 0
8 True 11361 BOTTOM 0
9 True 9099 UTILITY 1
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 2 1055 6632 3111 3077 3133 0 3340
1 2 6672 2031 3153 1028 3111 0 3364
2 2 1056 6656 2031 3020 3191 3108 3363
3 2 1056 3085 6672 1018 1082 3006 3363
4 2 3851 6655 2010 3158 1029 0 3340
5 0 6655 2033 3157 3102 1026 3020 3340
6 0 6691 2031 3158 6676 1037 0 3363
7 0 1082 6655 3165 1058 3158 3070 3340
8 0 6671 3009 6676 3094 1036 1055 3340
9 0 3857 6664 2055 3111 3066 3742 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 1 0 1
1 1 5 5 2
2 0 1 0 1
3 0 2 0 1
4 0 0 0 0
5 1 7 7 1
6 1 3 2 1
7 2 4 2 1
8 3 13 8 3
9 1 6 6 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 402 808 808
1 1086 9587 453
2 609 53108 6160
3 471 3746 459
4 375 17640 2628
5 1252 113907 19675
6 761 8181 481
7 942 101433 14323
8 530 1734 361
9 350 8542 605
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 14085 8 0 0
1 7178 96 0 0
2 9979 0 0 0
3 1975 0 0 0
4 3277 0 0 0
5 2458 29 0 0
6 2929 128 0 0
7 3404 21 0 0
8 2816 0 0 0
9 1212 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 69256
1 0 2 88185
2 0 3 11683
3 0 4 77797
4 0 5 3059
5 0 6 15181
6 0 7 114826
7 0 8 14913
8 0 9 80886
9 0 10 40364
physicalDamageDealtToChampions physicalDamageTaken role \
0 5283 8434 SOLO
1 6362 14572 NONE
2 522 3319 SOLO
3 6415 11386 CARRY
4 397 8231 SUPPORT
5 1108 6588 NONE
6 8005 17197 NONE
7 511 6495 SOLO
8 10977 6559 CARRY
9 7015 10883 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 14 2 12 83
1 10 11 3 4 253
2 4 14 4 4 210
3 4 4 4 3 19
4 3 7 1 4 22
5 2 4 4 12 261
6 1 4 11 11 75
7 3 1 3 4 352
8 1 7 2 4 76
9 5 14 6 4 24
summonerName teamEarlySurrendered teamId teamPosition \
0 hungry kitten False 100 TOP
1 ŠHÂDY False 100 JUNGLE
2 Mirajuana False 100 MIDDLE
3 washed top laner False 100 BOTTOM
4 spliff353 False 100 UTILITY
5 StalwartHide False 200 TOP
6 NightsTerror718 False 200 JUNGLE
7 ShaolinVato False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 NJDude14 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 9 1565 84672 7962
1 10 1565 116427 7299
2 20 1565 65538 7428
3 9 1565 95980 9404
4 5 1565 25110 3026
5 21 1565 129089 20784
6 130 1565 131109 9159
7 13 1565 130163 14834
8 15 1565 83156 11439
9 18 1565 58358 8908
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 22896 2285 135 225
1 22326 9683 34 239
2 13446 634 128 141
3 14296 1895 161 363
4 11535 454 29 49
5 10245 2470 139 244
6 21148 12000 19 445
7 10804 2914 150 282
8 10442 3138 137 69
9 13536 2154 56 127
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 251 1 14606
1 153 1 18654
2 161 1 746
3 154 1 14437
4 201 2 4410
5 44 1 0
6 60 1 8101
7 80 1 13816
8 122 2 535
9 12 1 9450
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1870 376 0 8
1 483 575 0 8
2 746 148 1 8
3 2529 934 0 8
4 0 26 1 8
5 0 1197 3 2
6 673 1021 0 2
7 0 904 1 2
8 100 1065 1 2
9 1286 1439 2 2
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 11 1 0 8 False
1 21 2 2 4 False
2 10 0 0 7 False
3 13 1 1 9 False
4 11 0 1 7 False
5 23 1 2 9 True
6 8 0 1 1 True
7 25 1 1 9 True
8 10 0 0 7 True
9 54 7 5 23 True ,
assists baronKills bountyLevel champLevel championName \
0 7 0 5 14 Chogath
1 7 0 12 13 Khazix
2 7 0 0 12 Talon
3 10 0 2 11 Ezreal
4 9 0 1 11 Soraka
5 0 0 1 13 TahmKench
6 5 0 0 11 Taric
7 2 0 0 13 Viego
8 1 0 0 10 Jhin
9 8 0 0 10 Nautilus
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 1879 4241 1879
1 0 26394 0
2 2389 2389 2389
3 3499 5321 3499
4 1574 1872 1574
5 0 1110 0
6 0 2780 0
7 1333 7758 1333
8 389 3237 389
9 265 1003 265
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 1 1 1 False False
1 0 3 1 False False
2 5 2 0 False False
3 3 1 0 False False
4 6 1 0 False False
5 3 0 0 False True
6 3 0 0 False False
7 8 0 0 False False
8 5 0 1 False False
9 4 3 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 True False False
4 False True False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 9746 TOP 0
1 True 11378 JUNGLE 0
2 True 7396 MIDDLE 0
3 True 7917 BOTTOM 0
4 True 6501 UTILITY 0
5 True 7139 TOP 0
6 True 6132 JUNGLE 0
7 True 8116 MIDDLE 0
8 True 7724 BOTTOM 0
9 True 5595 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1054 3111 3068 3076 3083 0 3340
1 0 6692 1037 3158 6694 3134 2055 3364
2 0 3047 6630 3067 3133 1036 1036 3340
3 0 6691 3508 3158 1055 0 0 3340
4 0 3853 2065 3158 3114 1052 1052 3364
5 0 0 3076 1054 1011 6662 3047 3340
6 0 3047 6664 2033 1052 1052 3114 3364
7 0 6630 1037 3047 1053 1043 0 3340
8 0 6671 3009 3134 1037 1018 1055 3340
9 0 3047 3190 3076 3860 2055 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 5 5 1
1 1 12 12 3
2 0 2 0 1
3 1 2 2 1
4 0 2 0 1
5 0 2 0 1
6 0 1 0 1
7 1 4 2 2
8 1 7 5 1
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 115 78986 10835
1 0 7149 1353
2 702 0 0
3 515 6979 4499
4 302 16951 6001
5 786 57253 7791
6 970 38633 2944
7 298 1580 806
8 795 3285 1837
9 789 10778 5783
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 6459 4 0 0
1 4070 127 0 0
2 4392 0 0 0
3 2751 0 0 0
4 2446 0 0 0
5 6112 8 0 0
6 6157 84 0 0
7 5231 0 0 0
8 4068 4 0 0
9 3628 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 23119
1 0 2 110714
2 0 3 77798
3 0 4 63496
4 0 5 3538
5 0 6 20574
6 0 7 23383
7 0 8 83621
8 0 9 50903
9 0 10 6839
physicalDamageDealtToChampions physicalDamageTaken role \
0 1731 9603 SOLO
1 17582 13449 NONE
2 11228 14170 SOLO
3 12876 7274 CARRY
4 1171 6734 SUPPORT
5 2737 10671 SOLO
6 1607 11317 NONE
7 18896 20468 SOLO
8 8265 9000 CARRY
9 1985 11642 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 12 2 4 345
1 10 11 3 4 37
2 5 14 4 4 475
3 4 7 4 4 315
4 4 3 4 4 243
5 2 4 4 14 168
6 3 4 13 11 261
7 4 4 6 14 317
8 3 7 3 4 76
9 6 14 4 4 432
summonerName teamEarlySurrendered teamId teamPosition \
0 PuddinAxis False 100 TOP
1 ThePossumSlayer False 100 JUNGLE
2 Shiny Łucario False 100 MIDDLE
3 Dredeater False 100 BOTTOM
4 Shiny Clefairy False 100 UTILITY
5 mac n cheesex False 200 TOP
6 StalwartHide False 200 JUNGLE
7 CrypticCord False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 TheSeedsWeSow False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 71 1431 122591 14506
1 11 1431 131032 19788
2 5 1431 78770 12200
3 0 1431 70475 17376
4 37 1431 20490 7173
5 21 1431 78588 11288
6 25 1431 69738 5433
7 9 1431 90864 20539
8 22 1431 54189 10103
9 53 1431 23298 8256
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 17038 6123 180 692
1 17730 10423 1 286
2 19793 3640 116 158
3 10372 2441 114 0
4 9384 10146 9 194
5 18329 4440 141 626
6 18225 12553 12 235
7 26695 6835 155 20
8 13173 3121 110 85
9 15639 504 27 243
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 6 4 20485
1 0 1 13168
2 110 1 972
3 70 3 0
4 92 5 0
5 95 1 760
6 102 4 7721
7 248 1 5663
8 120 2 0
9 79 1 5680
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1939 975 1 0
1 853 211 1 0
2 972 1229 0 0
3 0 347 2 0
4 0 202 1 0
5 760 1545 0 5
6 881 749 0 5
7 836 996 0 5
8 0 104 0 5
9 488 369 0 5
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 10 1 0 7 True
1 16 4 0 4 True
2 13 2 0 9 True
3 18 1 3 9 True
4 29 1 2 17 True
5 10 0 1 5 False
6 10 0 1 1 False
7 9 1 3 3 False
8 11 0 3 4 False
9 41 5 5 16 False ,
assists baronKills bountyLevel champLevel championName \
0 6 0 0 13 Yasuo
1 10 0 0 14 Karthus
2 4 0 1 13 Viego
3 6 0 0 13 Kaisa
4 8 0 0 12 Swain
5 7 0 1 15 Tryndamere
6 10 0 1 15 LeeSin
7 9 1 1 15 Jax
8 9 0 1 16 Caitlyn
9 9 0 0 14 Nautilus
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 752 752 752
1 4081 7332 4081
2 4560 6512 4560
3 947 2968 947
4 441 1684 441
5 6408 34045 6408
6 1291 20007 1291
7 3519 8674 3519
8 10470 13269 10470
9 2639 5527 2639
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 8 1 0 False False
1 9 0 0 False False
2 8 1 0 False False
3 5 1 1 False False
4 10 1 0 False False
5 3 0 0 False False
6 5 0 3 True False
7 3 1 0 True False
8 7 0 0 False True
9 1 3 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 7992 TOP 0
1 False 10299 JUNGLE 0
2 False 10060 MIDDLE 0
3 False 8594 BOTTOM 0
4 False 8598 UTILITY 0
5 False 13841 TOP 0
6 False 10727 JUNGLE 1
7 False 10461 MIDDLE 1
8 False 16349 BOTTOM 2
9 False 9099 UTILITY 1
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 5 1055 3006 6673 1053 1018 1029 3340
1 5 2031 3157 1026 3020 6653 3916 3340
2 5 1055 3153 3006 6673 2055 3133 3340
3 5 6671 3006 6676 1042 1042 1055 3340
4 5 3853 3157 6653 3047 3916 0 3364
5 0 1055 6694 6693 3006 6676 1038 3340
6 0 3142 1036 3158 6692 3123 1036 3340
7 0 0 1043 3078 1053 3047 1037 3340
8 0 3095 3006 6673 3031 3094 3123 3340
9 0 3860 0 6662 3075 3067 3047 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 2 0 1
1 1 3 2 2
2 0 6 0 1
3 1 4 2 1
4 1 4 2 2
5 1 9 7 3
6 2 7 2 1
7 1 4 2 1
8 5 16 4 2
9 1 4 4 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 894 8583 969
1 777 134603 16238
2 301 4513 1382
3 476 9912 3836
4 303 33425 10450
5 625 0 0
6 487 25548 2991
7 1156 14132 1851
8 649 7827 3078
9 1551 23340 4800
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 2423 8 1 0
1 2700 78 1 0
2 2621 0 1 0
3 1890 4 1 0
4 4430 0 1 0
5 5722 24 0 0
6 7901 124 0 0
7 6841 24 0 0
8 11388 24 0 0
9 3908 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 89948
1 0 2 6125
2 0 3 89091
3 0 4 56609
4 0 5 2020
5 0 6 171246
6 0 7 85037
7 0 8 61350
8 0 9 176206
9 0 10 8682
physicalDamageDealtToChampions physicalDamageTaken role \
0 9644 18170 SOLO
1 25 22216 NONE
2 13858 21779 SOLO
3 4580 13508 NONE
4 1038 13352 SOLO
5 17421 19066 SOLO
6 12119 18595 NONE
7 7722 10233 SOLO
8 30156 15162 CARRY
9 1488 7303 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 5 4 5 6 176
1 12 11 3 4 191
2 3 4 5 14 335
3 6 7 4 4 68
4 3 14 2 4 164
5 5 3 5 21 416
6 12 11 4 4 215
7 5 4 4 14 110
8 4 4 5 7 113
9 6 14 4 4 53
summonerName teamEarlySurrendered teamId teamPosition \
0 Coolgum15 False 100 TOP
1 MoistureCreature False 100 JUNGLE
2 Rotome False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 Thick2BThighs False 100 UTILITY
5 MrBumpTastik False 200 TOP
6 Fruitymon False 200 JUNGLE
7 TacticalTard False 200 MIDDLE
8 Rosinator1 False 200 BOTTOM
9 Byjinn False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 15 1734 102761 10614
1 18 1734 146308 17020
2 14 1734 98573 15979
3 0 1734 82521 8416
4 44 1734 36138 12181
5 17 1734 176123 17631
6 13 1734 116931 15534
7 16 1734 79450 10143
8 11 1734 185714 33234
9 31 1734 39112 7199
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 21100 3197 130 88
1 25550 6153 62 218
2 24829 5001 148 31
3 15644 3139 91 0
4 18083 1498 33 232
5 25171 13928 171 118
6 26914 9026 11 347
7 17565 2290 110 68
8 27391 8404 203 82
9 11270 1570 38 347
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 265 1 4230
1 240 1 5580
2 251 1 4968
3 67 4 16000
4 242 1 692
5 108 1 4877
6 147 1 6346
7 98 1 3967
8 255 3 1680
9 40 1 7089
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 506 0 11
1 756 633 2 11
2 738 428 0 11
3 0 245 0 11
4 692 300 0 11
5 210 381 2 2
6 424 416 1 2
7 569 490 0 2
8 0 839 4 2
9 910 58 3 2
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 28 1 0 8 False
1 14 0 2 7 False
2 10 6 1 4 False
3 15 1 0 8 False
4 16 1 0 8 False
5 14 0 0 9 True
6 13 0 1 6 True
7 18 1 0 9 True
8 17 1 1 8 True
9 56 3 4 22 True ,
assists baronKills bountyLevel champLevel championName \
0 1 0 0 13 Darius
1 6 0 0 13 FiddleSticks
2 6 0 0 14 Viego
3 8 0 0 12 Jhin
4 5 0 0 11 Pyke
5 16 0 0 15 Ornn
6 8 0 0 13 Evelynn
7 8 0 3 15 Diana
8 9 0 4 14 Samira
9 25 0 0 13 Nautilus
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 5321 5321 5321
1 244 5255 244
2 1898 3940 1898
3 637 1387 637
4 0 0 0
5 5714 5714 5714
6 2095 14312 2095
7 7468 9090 7468
8 11403 17426 11403
9 2853 4281 2853
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 9 1 0 False False
1 8 0 1 False False
2 4 3 0 False False
3 7 0 0 True False
4 9 3 0 False True
5 4 0 0 False False
6 5 2 1 False False
7 3 0 0 False False
8 5 1 2 False False
9 4 3 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False True False
9 True False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 9080 TOP 0
1 False 9039 JUNGLE 0
2 False 11132 MIDDLE 0
3 False 7672 BOTTOM 0
4 False 9462 UTILITY 0
5 False 9285 TOP 0
6 False 9362 JUNGLE 2
7 False 10165 MIDDLE 0
8 False 15320 BOTTOM 0
9 False 9037 UTILITY 1
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 3 3053 6631 3111 3066 1055 0 3340
1 3 3157 3020 2031 6653 4630 0 3330
2 3 1055 3153 3006 6673 3133 3057 3364
3 3 6671 3009 3035 1018 0 1055 3340
4 3 3857 6693 3111 3814 1031 1036 3364
5 0 7003 3047 3083 3076 0 0 3340
6 0 3152 3100 3020 0 1082 0 3340
7 0 1056 4636 3020 1029 3100 0 3340
8 0 6676 3031 7008 3006 1038 0 3340
9 0 3860 7019 3117 3075 3024 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 4 2 1
1 2 6 4 2
2 1 4 2 1
3 1 3 2 2
4 0 4 0 1
5 1 5 4 1
6 1 5 3 2
7 2 5 3 1
8 5 19 5 3
9 1 3 3 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 450 0 0
1 696 105915 13378
2 814 8095 1115
3 364 5851 857
4 304 0 0
5 613 34307 8125
6 456 98434 9837
7 594 109355 15503
8 424 13200 4015
9 827 16953 8096
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 11615 8 1 0
1 13011 120 1 0
2 9512 4 1 0
3 6831 0 1 0
4 6878 0 1 0
5 3069 1 0 0
6 4629 125 0 0
7 4904 20 0 0
8 2231 8 0 0
9 3296 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 91269
1 0 2 5856
2 0 3 107852
3 0 4 45114
4 0 5 16037
5 0 6 45411
6 0 7 12221
7 0 8 15633
8 0 9 118740
9 0 10 7539
physicalDamageDealtToChampions physicalDamageTaken role \
0 11893 16515 SOLO
1 88 15300 NONE
2 10896 12514 SOLO
3 6141 6271 CARRY
4 5523 7943 SUPPORT
5 4841 15055 SOLO
6 397 19491 NONE
7 1435 7132 SOLO
8 25844 13926 CARRY
9 3026 8224 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 5 6 176
1 9 11 4 4 135
2 3 4 3 14 335
3 4 7 3 4 68
4 3 14 3 4 164
5 3 12 3 4 161
6 13 11 2 4 107
7 1 4 2 12 161
8 4 4 3 7 208
9 3 4 5 3 111
summonerName teamEarlySurrendered teamId teamPosition \
0 Coolgum15 False 100 TOP
1 SlothoftheAbyss False 100 JUNGLE
2 Rotome False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 Thick2BThighs False 100 UTILITY
5 CMiester False 200 TOP
6 scrappy131 False 200 JUNGLE
7 CelerityV2 False 200 MIDDLE
8 swart2330 False 200 BOTTOM
9 MakunMayo False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 22 1555 102261 13057
1 22 1555 116652 13880
2 7 1555 116231 12296
3 19 1555 55016 6999
4 21 1555 24741 6790
5 25 1555 79719 12966
6 3 1555 117739 10465
7 5 1555 124988 16938
8 1 1555 132151 30070
9 70 1555 29373 11879
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 28319 5094 141 150
1 28437 13475 9 491
2 22310 8104 194 22
3 13456 2364 91 125
4 15067 1399 35 66
5 20241 622 120 357
6 24768 11268 17 136
7 12416 2799 161 30
8 17001 4632 167 3
9 11662 250 37 263
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 309 1 10991
1 234 1 4880
2 163 1 284
3 184 3 4050
4 226 1 8703
5 136 1 0
6 143 1 7084
7 96 1 0
8 134 4 210
9 91 1 4880
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1163 188 1 11
1 414 125 1 11
2 284 283 0 11
3 0 353 0 11
4 1266 245 0 11
5 0 2116 2 2
6 230 646 0 2
7 0 379 3 2
8 210 844 4 2
9 756 141 2 2
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 15 1 1 8 False
1 13 0 2 3 False
2 15 7 2 4 False
3 7 0 0 5 False
4 27 3 2 12 False
5 6 0 0 4 True
6 26 2 1 9 True
7 8 0 0 4 True
8 14 1 1 9 True
9 45 3 7 15 True ,
assists baronKills bountyLevel champLevel championName \
0 6 0 6 13 Garen
1 10 0 1 12 Nunu
2 6 0 9 14 Kayle
3 4 0 1 10 Ezreal
4 5 0 2 10 Brand
5 0 0 0 11 Yone
6 0 0 0 11 Khazix
7 1 0 0 13 Chogath
8 2 0 0 10 Kaisa
9 3 0 0 9 Swain
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 4100 4100 4100
1 60 4187 60
2 3864 6683 3864
3 2381 3618 2381
4 1475 2865 1475
5 0 84 0
6 160 8431 160
7 3689 3689 3689
8 3914 5359 3914
9 2257 3264 2257
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 3 0 0 False False
1 2 0 1 False False
2 0 1 1 False False
3 3 0 0 False False
4 3 2 0 False False
5 5 0 0 False False
6 3 0 0 False False
7 9 0 0 False False
8 4 0 0 False True
9 6 0 1 True False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 9764 TOP 0
1 True 7642 JUNGLE 0
2 True 9992 MIDDLE 0
3 True 5893 UTILITY 0
4 True 6106 UTILITY 0
5 True 5057 MIDDLE 0
6 True 7017 JUNGLE 0
7 True 6770 TOP 0
8 True 7098 BOTTOM 0
9 True 6156 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 0 6631 0 1054 3742 3006 3340
1 0 3068 2031 3111 1031 3066 1028 3340
2 0 1056 2055 3006 3115 4635 1026 3340
3 0 3508 3158 1036 1036 0 1055 3340
4 0 3853 3020 6653 1028 2055 0 3364
5 0 1055 6673 0 1001 0 0 3340
6 0 6691 2031 3158 3134 1037 0 3340
7 0 3075 1054 3047 6660 1029 1033 3340
8 0 1055 6672 3006 3134 1037 0 3340
9 0 3853 6653 1001 2421 3191 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 9 6 1
1 0 3 0 1
2 1 9 9 2
3 0 3 0 1
4 1 3 2 1
5 0 0 0 0
6 2 4 2 1
7 1 2 2 1
8 1 3 2 2
9 0 2 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 324 893 191
1 406 34252 4679
2 0 59518 10141
3 437 5243 1793
4 586 24140 9583
5 497 9187 836
6 508 7351 356
7 188 33341 5682
8 561 5957 2554
9 428 29135 7706
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 6916 2 0 0
1 3861 96 0 0
2 947 12 0 0
3 4107 0 0 0
4 2327 0 0 0
5 5513 0 0 0
6 4184 114 0 0
7 7011 0 0 0
8 5319 4 0 0
9 6537 8 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 68424
1 0 2 21559
2 0 3 26743
3 0 4 32575
4 0 5 1535
5 0 6 32043
6 0 7 89354
7 0 8 20588
8 0 9 54366
9 0 10 5011
physicalDamageDealtToChampions physicalDamageTaken role \
0 14924 10253 NONE
1 1151 17361 NONE
2 4142 5428 SOLO
3 2863 2264 DUO
4 517 4452 DUO
5 1462 5986 SOLO
6 6129 15539 NONE
7 2055 12883 SOLO
8 5164 4084 CARRY
9 868 5415 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 5 14 375
1 5 11 2 4 135
2 2 4 1 12 335
3 2 7 1 4 68
4 2 14 1 4 164
5 1 14 3 4 41
6 3 4 14 11 86
7 4 4 2 12 38
8 4 4 4 7 116
9 4 4 4 14 555
summonerName teamEarlySurrendered teamId teamPosition \
0 vapeHawHaw False 100 TOP
1 SlothoftheAbyss False 100 JUNGLE
2 Rotome False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 Thick2BThighs False 100 UTILITY
5 Amaghi False 200 MIDDLE
6 SUP3RN0VA313 False 200 JUNGLE
7 x9 trash False 200 TOP
8 vahag False 200 BOTTOM
9 Lets Hug False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 36 1303 72609 18379
1 23 1303 97341 6203
2 9 1303 92347 14428
3 0 1303 39328 4657
4 8 1303 25951 10377
5 6 1303 45080 2873
6 1 1303 103590 6753
7 47 1303 64959 8092
8 0 1303 64283 7965
9 28 1303 34818 9226
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 18290 1650 103 101
1 21576 13637 18 398
2 6664 2429 149 223
3 6524 861 64 0
4 6959 673 20 15
5 11772 1774 93 23
6 19779 12093 5 143
7 21827 2618 114 311
8 10305 2424 115 0
9 12846 1534 30 170
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 76 1 3292
1 41 1 41530
2 0 3 6087
3 41 2 1510
4 53 1 276
5 159 1 3849
6 61 1 6885
7 185 1 11029
8 101 2 3959
9 118 1 671
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 3264 1119 1 2
1 372 353 0 2
2 144 287 1 2
3 0 153 1 2
4 276 178 0 2
5 574 272 0 3
6 267 56 0 3
7 354 1932 1 3
8 245 901 1 3
9 651 893 0 3
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 4 0 0 3 True
1 10 0 1 4 True
2 10 3 0 5 True
3 7 0 0 6 True
4 28 4 1 11 True
5 8 0 0 5 False
6 11 0 0 5 False
7 5 1 0 3 False
8 5 0 0 4 False
9 31 0 3 13 False ,
assists baronKills bountyLevel champLevel championName \
0 7 0 2 18 Yorick
1 15 0 0 16 Udyr
2 10 0 4 18 Viego
3 15 0 1 15 Jhin
4 19 0 0 15 Morgana
5 9 0 0 17 Mordekaiser
6 12 1 0 17 DrMundo
7 10 0 0 16 Talon
8 8 0 0 16 Darius
9 12 0 0 14 Pyke
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 12109 12109 12109
1 2187 30805 2187
2 4855 30498 4855
3 2067 7923 2067
4 739 4605 739
5 4224 6977 4224
6 875 11724 875
7 697 7146 697
8 6113 13337 6113
9 0 1563 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 8 0 0 False False
1 11 1 2 False False
2 4 1 1 False False
3 10 0 1 False False
4 11 6 0 False False
5 5 0 0 False False
6 5 0 2 False False
7 10 2 0 False False
8 7 0 0 True False
9 13 0 0 False True
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 True False False
1 False True False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 16001 TOP 1
1 False 12796 JUNGLE 0
2 False 19888 MIDDLE 0
3 False 11720 BOTTOM 1
4 False 10512 UTILITY 0
5 False 12011 TOP 0
6 False 15567 JUNGLE 0
7 False 15538 MIDDLE 0
8 False 14369 BOTTOM 0
9 False 13487 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 2033 3078 3111 3074 6694 6609 3340
1 0 3140 4401 6664 3111 3076 1053 3364
2 0 3033 6673 3006 3153 3508 3036 3364
3 0 6671 3009 3036 3086 2015 1055 3340
4 0 3853 3916 6653 3157 3158 1026 3364
5 2 1056 4633 3047 4637 3075 3211 3340
6 2 6664 3143 3111 3075 3742 3044 3340
7 2 6693 3004 3158 3142 3814 3134 3340
8 2 6609 6631 3047 3053 3742 1028 3340
9 2 3857 3142 6693 3179 3814 3117 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 2 6 2 1
1 1 5 2 1
2 4 21 7 2
3 1 5 2 1
4 0 3 0 1
5 1 5 4 1
6 2 8 5 2
7 3 16 5 3
8 1 7 3 2
9 2 7 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 554 24270 11842
1 531 65570 6506
2 799 9948 3515
3 445 9500 1509
4 542 50890 27322
5 878 114312 11952
6 703 115074 13895
7 1006 0 0
8 487 646 0
9 647 0 0
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 6232 1 0 0
1 6444 105 0 0
2 7334 30 0 0
3 2839 12 0 0
4 3921 9 0 0
5 9234 4 1 0
6 11704 156 1 0
7 10674 20 1 0
8 14169 48 1 0
9 8862 4 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 209605
1 0 2 70184
2 0 3 202556
3 0 4 92332
4 0 5 5163
5 0 6 24808
6 0 7 70933
7 0 8 138766
8 0 9 159887
9 0 10 49084
physicalDamageDealtToChampions physicalDamageTaken role \
0 29075 20063 SOLO
1 9656 36360 NONE
2 38049 26195 SOLO
3 12897 15301 CARRY
4 1860 19421 SUPPORT
5 1916 23415 SOLO
6 8742 32158 NONE
7 40203 24341 SOLO
8 17935 25886 CARRY
9 15025 19649 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 3 12 67
1 19 11 9 6 307
2 4 4 5 14 335
3 4 7 5 4 68
4 5 4 8 3 409
5 4 4 1 14 47
6 5 4 20 11 174
7 8 14 5 4 218
8 7 7 6 4 313
9 5 4 5 14 142
summonerName teamEarlySurrendered teamId teamPosition \
0 Scut Farkkus False 100 TOP
1 AhriMainz False 100 JUNGLE
2 Rotome False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 senshia False 100 UTILITY
5 ObiJuanKenbi False 200 TOP
6 SodaCARBON6 False 200 JUNGLE
7 MirrowRush False 200 MIDDLE
8 ChromosomeBandit False 200 BOTTOM
9 SkigaMonsterks False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 18 2308 249036 40918
1 35 2308 163436 17179
2 17 2308 220231 42825
3 25 2308 101833 14407
4 93 2308 56053 29182
5 4 2308 175377 14387
6 17 2308 197945 23380
7 4 2308 143120 41206
8 20 2308 168763 21888
9 30 2308 62579 17593
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 28190 6266 236 234
1 44284 15719 45 152
2 35556 15170 198 119
3 19035 2230 114 138
4 25831 4344 21 167
5 32933 13069 151 22
6 44708 26318 59 378
7 35393 9173 131 118
8 40555 13113 146 376
9 28781 3995 51 157
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 343 1 15161
1 412 1 27682
2 175 1 7726
3 277 2 0
4 310 1 0
5 240 1 36257
6 157 1 11938
7 406 1 4353
8 209 4 8229
9 459 1 13494
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 1894 4 5
1 1016 1479 2 5
2 1260 2026 2 5
3 0 894 2 5
4 0 2489 0 5
5 518 284 2 10
6 742 844 0 10
7 1003 378 0 10
8 3952 500 2 10
9 2567 270 0 10
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 16 0 1 10 True
1 21 1 2 4 True
2 30 2 2 4 True
3 21 0 3 10 True
4 101 6 1 56 True
5 9 0 0 6 False
6 16 0 1 9 False
7 22 2 1 13 False
8 27 0 4 11 False
9 30 0 3 16 False ,
assists baronKills bountyLevel champLevel championName \
0 6 0 0 13 Sylas
1 10 0 0 14 Lillia
2 7 0 0 13 Lissandra
3 5 0 0 14 Jinx
4 14 0 0 12 Karma
5 2 0 0 14 Fiora
6 5 0 1 12 Amumu
7 6 0 0 13 Viego
8 4 0 0 12 Jhin
9 5 0 0 11 Lux
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 1127 1442 1127
1 1270 5692 1270
2 2451 2570 2451
3 9210 19863 9210
4 2875 4883 2875
5 3746 8279 3746
6 0 7182 0
7 0 2856 0
8 0 1130 0
9 0 2097 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 6 1 0 False False
1 2 2 0 False False
2 6 3 0 False False
3 4 0 2 False False
4 3 1 0 False False
5 8 0 0 False True
6 4 2 1 True False
7 5 0 0 False False
8 8 0 0 False False
9 8 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 7511 TOP 0
1 False 8729 JUNGLE 1
2 False 7591 MIDDLE 0
3 False 16463 BOTTOM 1
4 False 9174 UTILITY 0
5 False 12750 TOP 0
6 False 6841 JUNGLE 0
7 False 9301 MIDDLE 0
8 False 6466 BOTTOM 0
9 False 5338 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3158 6656 2420 3191 1052 1056 3340
1 0 2055 2031 3157 3020 6653 1028 3340
2 0 6656 2421 2055 1056 3108 3020 3340
3 0 1038 3085 1053 6671 3006 3031 3340
4 0 3853 2065 6616 3011 3020 0 3364
5 2 1055 6630 3111 3508 3074 1031 3340
6 2 2031 3111 2055 3068 3076 1028 3340
7 2 1054 3153 3047 6673 1036 1036 3340
8 2 6671 1055 3009 3035 0 0 3340
9 2 3853 4005 3020 3145 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 3 0 1
1 1 2 2 1
2 0 0 0 0
3 4 23 12 3
4 1 5 5 1
5 3 13 5 2
6 0 2 0 1
7 1 3 2 1
8 0 2 0 1
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 384 54836 10350
1 1275 74396 5617
2 582 69560 8982
3 1107 2250 1510
4 1267 30687 12153
5 362 1448 713
6 841 33507 3629
7 445 3917 1663
8 424 7061 737
9 449 24451 6184
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 2411 0 0 0
1 4304 112 0 0
2 2303 4 0 0
3 4110 28 0 0
4 2338 4 0 0
5 15179 0 1 0
6 4798 64 1 0
7 8374 14 1 0
8 5019 0 1 0
9 6193 0 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 7388
1 0 2 18090
2 0 3 10514
3 0 4 180013
4 0 5 4057
5 0 6 66829
6 0 7 9622
7 0 8 80353
8 0 9 60846
9 0 10 2107
physicalDamageDealtToChampions physicalDamageTaken role \
0 390 15953 SOLO
1 521 18520 NONE
2 1250 10091 SOLO
3 42169 11315 CARRY
4 819 8021 SUPPORT
5 18844 13514 SOLO
6 182 16265 NONE
7 9403 12032 SOLO
8 3899 11812 CARRY
9 382 10437 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 12 4 4 237
1 10 11 2 4 240
2 2 12 3 4 280
3 4 4 2 7 80
4 2 4 4 14 253
5 4 4 5 14 256
6 13 11 3 4 73
7 3 4 4 14 335
8 1 7 2 4 67
9 4 4 2 14 129
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 Rental Cop False 100 TOP 15
1 100mphNoc False 100 JUNGLE 15
2 Zedache False 100 MIDDLE 25
3 Im Potat False 100 BOTTOM 29
4 KittyKatKillz False 100 UTILITY 23
5 SussieAmogus False 200 TOP 13
6 Citabogue False 200 JUNGLE 17
7 Rotome False 200 MIDDLE 12
8 Dublaiar False 200 BOTTOM 17
9 Alece False 200 UTILITY 32
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1539 65003 11135
1 1539 118479 7382
2 1539 80357 10515
3 1539 186553 45926
4 1539 35498 13726
5 1539 78142 26365
6 1539 50421 4433
7 1539 99505 11908
8 1539 67907 4637
9 1539 28132 6830
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 23231 5897 98 226
1 23413 9973 24 358
2 15562 1308 145 174
3 19055 2578 195 216
4 11640 1182 9 156
5 30011 11512 103 111
6 22708 4179 16 102
7 21495 4478 139 39
8 17288 1199 92 124
9 17045 183 18 252
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 134 1 2779
1 82 1 25991
2 175 1 282
3 118 2 4290
4 114 1 754
5 220 12 9864
6 114 3 7290
7 173 1 15234
8 235 2 0
9 187 1 1573
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 394 4867 1 1
1 1243 589 0 1
2 282 3166 1 1
3 2246 3629 5 1
4 754 1280 0 1
5 6807 1316 1 9
6 621 1644 0 9
7 841 1088 0 9
8 0 456 0 9
9 264 414 0 9
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 25 1 1 8 True
1 25 3 0 6 True
2 19 5 3 8 True
3 15 0 1 8 True
4 27 1 0 14 True
5 8 0 0 7 False
6 18 4 2 7 False
7 10 1 1 7 False
8 8 0 0 6 False
9 16 0 1 8 False ,
assists baronKills bountyLevel champLevel championName \
0 3 0 0 15 Yone
1 9 0 0 13 Sejuani
2 6 0 0 14 Viego
3 3 0 0 12 Ezreal
4 9 0 0 12 Karma
5 4 0 0 14 Volibear
6 16 1 1 16 Ekko
7 14 0 3 15 Sylas
8 13 0 3 14 Jhin
9 20 0 0 14 Thresh
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3553 3553 3553
1 0 11593 0
2 0 3628 0
3 414 4090 414
4 0 0 0
5 3762 10145 3762
6 5663 35171 5663
7 3467 6927 3467
8 4114 11415 4114
9 1022 3407 1022
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 6 1 0 False True
1 8 0 1 False False
2 8 0 0 False False
3 5 0 1 False False
4 5 3 0 False False
5 5 5 0 False False
6 4 2 2 False False
7 3 2 0 False False
8 5 0 0 False False
9 5 5 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 True False False
9 False True False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 12036 TOP 0
1 False 9931 JUNGLE 0
2 False 9324 MIDDLE 0
3 False 8053 BOTTOM 0
4 False 8573 UTILITY 0
5 False 9513 TOP 0
6 False 13181 JUNGLE 1
7 False 13325 MIDDLE 1
8 False 11740 BOTTOM 0
9 False 8293 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 2 6672 3031 3006 6609 0 0 3340
1 2 3068 2031 3076 3111 3001 1011 3364
2 2 1055 3153 3006 6673 0 0 3340
3 2 3508 3158 6691 1036 0 1055 3340
4 2 3853 6617 6616 3916 4642 3158 3364
5 0 6664 2033 3157 1054 2055 3047 3340
6 0 4636 2031 3020 3115 3100 1058 3364
7 0 4630 3157 6656 4629 3020 0 3340
8 0 1055 6671 3009 6676 3094 0 3340
9 0 3857 3190 3047 3075 1006 1006 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 9 3 2
1 1 4 3 2
2 1 3 2 1
3 1 3 2 2
4 0 3 0 1
5 1 2 2 2
6 2 9 6 2
7 3 14 5 3
8 2 6 3 1
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 453 18161 3319
1 435 58170 9257
2 367 2533 1383
3 872 9147 4330
4 848 32377 15144
5 532 55989 3525
6 668 153470 16972
7 993 89645 30780
8 560 2611 1110
9 667 12707 5157
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 10242 16 1 0
1 15328 121 1 0
2 16542 16 1 0
3 7589 5 1 1
4 9476 0 1 0
5 4962 11 0 0
6 7417 156 0 0
7 9793 4 0 0
8 5064 4 0 0
9 8943 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 116173
1 1 2 71012
2 0 3 100372
3 0 4 71415
4 0 5 3215
5 0 6 40813
6 0 7 27680
7 0 8 12228
8 0 9 102113
9 0 10 8645
physicalDamageDealtToChampions physicalDamageTaken role \
0 12491 6735 SOLO
1 7358 19232 NONE
2 14958 10233 SOLO
3 6661 6295 CARRY
4 732 5606 SUPPORT
5 3578 15081 SOLO
6 2834 24053 NONE
7 511 16316 SOLO
8 17755 8638 CARRY
9 1010 7834 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 2 12 182
1 3 4 15 11 173
2 5 4 1 12 332
3 3 7 3 4 66
4 8 14 3 4 305
5 2 4 3 12 62
6 5 4 16 11 222
7 4 4 6 14 160
8 4 7 3 4 130
9 5 4 5 14 153
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 ttube False 100 TOP 25
1 Coolgum15 False 100 JUNGLE 30
2 Rotome False 100 MIDDLE 13
3 Dublaiar False 100 BOTTOM 0
4 BreadStick63 False 100 UTILITY 29
5 Greenboy4999 False 200 TOP 13
6 Pteranodon False 200 JUNGLE 17
7 ShortManWarner False 200 MIDDLE 38
8 ham1ck False 200 BOTTOM 16
9 Sbomb100 False 200 UTILITY 29
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1773 140105 17377
1 1773 136560 17235
2 1773 113623 16653
3 1773 83057 10992
4 1773 37217 17441
5 1773 96803 7104
6 1773 194517 20809
7 1773 106050 32754
8 1773 105377 18958
9 1773 27461 7025
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 17608 3983 183 100
1 36254 10329 16 339
2 27490 5396 150 107
3 13934 1501 130 0
4 15411 5202 27 204
5 21388 2694 122 224
6 31754 15934 30 429
7 27411 12153 137 330
8 14122 4011 171 60
9 17490 3087 40 66
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 184 1 5770
1 207 5 7377
2 215 1 10718
3 131 2 2495
4 171 5 1625
5 141 1 0
6 143 1 13366
7 124 1 4176
8 154 5 652
9 136 5 6107
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1566 630 1 8
1 619 1693 0 8
2 312 714 0 8
3 0 50 0 8
4 1565 327 0 8
5 0 1344 2 1
6 1002 282 1 1
7 1462 1302 1 1
8 92 420 2 1
9 858 713 2 1
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 11 1 2 7 False
1 7 0 2 2 False
2 7 0 2 3 False
3 11 0 0 8 False
4 49 3 7 22 False
5 33 6 5 14 True
6 27 2 5 3 True
7 22 2 1 11 True
8 10 0 1 5 True
9 61 6 4 26 True ,
assists baronKills bountyLevel champLevel championName \
0 3 0 6 14 Sett
1 11 0 2 12 Ekko
2 9 0 2 13 Diana
3 12 0 1 11 Morgana
4 5 0 0 12 Lux
5 2 0 0 12 Volibear
6 3 0 0 12 Warwick
7 6 0 0 12 Viego
8 1 0 0 10 MissFortune
9 3 0 0 10 Seraphine
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 7402 20041 7402
1 0 7290 0
2 3466 8533 3466
3 1713 1799 1713
4 924 2641 924
5 456 1217 456
6 0 5165 0
7 2927 2927 2927
8 0 361 0
9 0 121 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 1 0 0 False False
1 4 0 2 False False
2 5 0 0 False False
3 1 1 0 False False
4 1 2 0 False False
5 6 1 0 False False
6 7 1 0 False True
7 5 0 0 True False
8 6 0 1 False False
9 4 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 10346 TOP 0
1 False 8401 JUNGLE 0
2 False 10592 MIDDLE 0
3 False 6811 BOTTOM 1
4 False 7920 BOTTOM 0
5 False 5925 TOP 0
6 False 8879 JUNGLE 0
7 False 7879 MIDDLE 0
8 False 5800 BOTTOM 0
9 False 6046 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1054 6631 3076 3153 3047 1036 3340
1 0 3020 2031 4636 3100 0 0 3364
2 0 3041 3157 4636 3020 3916 0 3364
3 0 3020 3157 3853 3802 1052 0 3364
4 0 6655 3020 2420 1082 1056 3108 3364
5 1 6664 1056 3047 3191 0 0 3340
6 1 6632 3748 3047 0 0 0 3364
7 1 1054 1083 3153 2055 3111 6670 3340
8 1 3004 1036 1036 3006 1036 1036 3340
9 1 6617 3114 3853 3111 1052 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 9 6 3
1 2 5 2 2
2 2 7 2 2
3 0 1 0 1
4 1 6 6 2
5 0 0 0 0
6 1 8 4 1
7 0 1 0 1
8 0 1 0 1
9 0 2 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 493 2959 437
1 482 81443 10347
2 506 100885 18416
3 888 16452 7984
4 1112 52531 10444
5 349 49911 5453
6 484 33696 6408
7 406 3430 978
8 590 1975 594
9 584 11584 3501
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 6035 12 0 0
1 3613 92 0 0
2 3919 12 0 0
3 3350 0 0 0
4 1227 0 0 0
5 6372 8 1 0
6 16828 92 1 0
7 8966 4 1 0
8 8341 4 1 0
9 9019 0 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 87672
1 0 2 20121
2 0 3 18156
3 0 4 5234
4 0 5 9966
5 0 6 23653
6 0 7 51709
7 0 8 64984
8 0 9 48277
9 0 10 2487
physicalDamageDealtToChampions physicalDamageTaken role \
0 13290 9722 SOLO
1 1739 16562 NONE
2 2506 9388 SOLO
3 455 3756 SUPPORT
4 1128 3959 CARRY
5 4999 14077 SOLO
6 5173 11608 NONE
7 5029 5906 SOLO
8 2482 2147 CARRY
9 1106 2536 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 1 12 109
1 3 4 11 11 77
2 5 14 4 4 236
3 3 4 3 7 88
4 4 14 3 4 111
5 2 4 3 12 229
6 2 4 14 11 173
7 3 4 1 12 332
8 3 7 2 4 66
9 3 3 2 4 214
summonerName teamEarlySurrendered teamId teamPosition \
0 ThreatEntity False 100 TOP
1 Cbyrd14 False 100 JUNGLE
2 arcainemage False 100 MIDDLE
3 Unjolly Rancher False 100 BOTTOM
4 Shoebin False 100 UTILITY
5 Psí False 200 TOP
6 Coolgum15 False 200 JUNGLE
7 Rotome False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 K1LL3R2311 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 25 1354 107916 16046
1 10 1354 107856 12718
2 11 1354 130114 21860
3 44 1354 26566 8440
4 34 1354 63856 12420
5 21 1354 82525 10453
6 26 1354 92843 12447
7 4 1354 68415 6007
8 3 1354 50714 3358
9 15 1354 14199 4735
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 15815 2277 130 212
1 21623 10525 22 495
2 14726 1668 165 67
3 7334 2048 35 49
4 5311 50 103 282
5 22776 3389 111 218
6 28982 14254 18 223
7 16023 2660 130 15
8 10668 1507 114 64
9 12089 1298 13 125
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 27 1 17284
1 88 1 6292
2 111 1 11073
3 27 2 4880
4 36 1 1357
5 144 1 8960
6 167 1 7438
7 111 1 0
8 126 3 461
9 101 4 128
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 2318 57 4 1
1 632 1448 0 1
2 938 1418 1 1
3 0 226 2 1
4 847 124 0 1
5 0 2325 0 7
6 866 546 0 7
7 0 1150 1 7
8 281 180 0 7
9 128 533 0 7
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 10 0 1 5 True
1 5 0 1 1 True
2 12 0 3 4 True
3 26 1 2 10 True
4 15 2 1 3 True
5 9 1 0 6 False
6 9 2 0 4 False
7 3 3 0 2 False
8 10 0 1 6 False
9 15 1 1 10 False ,
assists baronKills bountyLevel champLevel championName \
0 2 0 0 18 Yorick
1 4 1 0 14 Volibear
2 4 0 0 15 Akali
3 5 0 0 13 Jhin
4 4 0 0 12 Bard
5 2 0 0 16 Tryndamere
6 11 1 1 15 MasterYi
7 7 0 2 16 Talon
8 11 0 10 16 Aphelios
9 19 0 1 15 Braum
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 4917 15157 4917
1 716 13334 716
2 1566 5820 1566
3 355 5369 355
4 424 1002 424
5 10002 15595 10002
6 146 36115 146
7 1955 8779 1955
8 9111 31320 9111
9 1510 3219 1510
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 2 0 0 False False
1 8 2 1 False False
2 7 1 0 False True
3 7 0 0 False False
4 7 4 0 False False
5 5 0 0 False False
6 4 2 3 False False
7 7 1 0 False False
8 0 1 2 False False
9 0 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False True False
9 True False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 14999 TOP 0
1 False 10991 JUNGLE 0
2 False 10940 MIDDLE 0
3 False 7912 BOTTOM 0
4 False 8617 UTILITY 0
5 False 12938 TOP 0
6 False 11496 JUNGLE 0
7 False 13513 MIDDLE 0
8 False 16708 BOTTOM 1
9 False 9269 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 1053 3143 6333 3047 3742 3078 3340
1 1 2031 6631 3143 3742 3047 0 3340
2 1 3100 3157 4633 0 3047 0 3340
3 1 6671 1055 3009 6676 0 0 3340
4 1 3853 2003 3117 4005 3742 3086 3364
5 0 1055 3006 3153 6672 1038 1018 3340
6 0 6672 3006 2031 3153 3123 3086 3364
7 0 6693 2031 3111 6695 3042 3134 3340
8 0 3031 2420 3006 3085 3072 6673 3363
9 0 3860 3190 3067 3050 3047 3801 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 6 4 2
1 1 4 2 1
2 0 3 0 1
3 0 0 0 0
4 0 3 0 1
5 0 4 0 1
6 1 3 2 1
7 4 13 4 2
8 1 10 10 1
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 1710 35514 7551
1 582 57140 2274
2 331 98896 13506
3 423 8973 757
4 700 24989 10887
5 591 486 250
6 1058 7199 425
7 587 157 157
8 0 3189 2380
9 0 11745 6762
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 1851 40 1 0
1 3980 115 1 0
2 2599 0 1 0
3 1184 8 1 0
4 3541 0 1 0
5 10382 16 0 0
6 5087 169 0 0
7 8370 11 0 0
8 3782 29 0 0
9 9224 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 183113
1 0 2 70747
2 0 3 20964
3 0 4 70839
4 0 5 3995
5 0 6 199515
6 0 7 137953
7 0 8 155957
8 0 9 220163
9 0 10 7961
physicalDamageDealtToChampions physicalDamageTaken role \
0 17912 13972 SOLO
1 8640 25671 NONE
2 1193 21754 SOLO
3 5423 11896 CARRY
4 2019 12039 SUPPORT
5 9725 23267 DUO
6 7011 22943 SOLO
7 26134 15173 DUO
8 18812 6631 CARRY
9 771 7122 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 2 12 385
1 3 4 14 11 332
2 3 14 3 4 350
3 3 7 1 4 66
4 4 4 5 14 206
5 8 14 6 3 46
6 1 4 16 11 70
7 4 4 7 14 141
8 4 7 4 4 143
9 3 4 5 14 244
summonerName teamEarlySurrendered teamId teamPosition \
0 KoboldArtificer False 100 TOP
1 Rotome False 100 JUNGLE
2 Hidden Trap Card False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 ToadRocks False 100 UTILITY
5 Sovereign Troll False 200 TOP
6 Lemonburtio False 200 JUNGLE
7 MightyMoosemaan False 200 MIDDLE
8 Bruhbruh0617 False 200 BOTTOM
9 DJcreamsicle1 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 15 2041 223300 25464
1 22 2041 137919 11323
2 1 2041 127399 15062
3 19 2041 79897 6264
4 34 2041 29896 13820
5 10 2041 220971 13978
6 1 2041 181428 9875
7 5 2041 167632 27130
8 26 2041 234867 22442
9 26 2041 36335 8616
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 22266 5599 240 159
1 30956 10770 37 478
2 25954 8225 183 68
3 13650 1936 106 144
4 15870 2065 22 183
5 33830 13440 206 79
6 28347 14921 13 180
7 24369 8366 151 223
8 10599 6003 249 155
9 16605 3371 28 101
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 115 1 4672
1 233 1 10031
2 181 1 7539
3 217 3 84
4 155 5 912
5 172 1 20969
6 90 1 36274
7 208 1 11517
8 0 2 11514
9 0 5 16628
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 6442 2 9
1 408 1304 1 9
2 362 1600 1 9
3 84 570 0 9
4 912 290 0 9
5 4002 180 4 4
6 2439 316 1 4
7 837 825 0 4
8 1248 185 3 4
9 1082 258 0 4
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 22 0 4 8 False
1 27 2 2 11 False
2 19 2 1 11 False
3 16 0 1 9 False
4 80 4 7 37 False
5 21 0 3 11 True
6 23 2 4 8 True
7 31 1 1 12 True
8 15 1 2 12 True
9 37 1 2 18 True ,
assists baronKills bountyLevel champLevel championName \
0 7 0 13 17 Darius
1 17 0 2 14 Udyr
2 10 0 0 14 Kayle
3 8 0 0 11 Ashe
4 16 0 0 13 Thresh
5 3 0 0 14 Volibear
6 4 0 0 11 Lillia
7 4 0 0 13 Fizz
8 4 0 0 12 Lucian
9 13 0 0 12 Braum
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 10410 19555 10410
1 2095 11178 2095
2 8827 15584 8827
3 4018 9082 4018
4 1920 3654 1920
5 3339 5325 3339
6 268 7113 268
7 768 1491 768
8 2203 2203 2203
9 1880 2690 1880
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 2 1 0 False True
1 5 4 2 False False
2 4 1 1 False False
3 3 0 0 False False
4 7 3 0 False False
5 9 0 0 False False
6 6 0 0 False False
7 8 1 0 False False
8 8 0 0 False False
9 4 4 1 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 15954 TOP 1
1 False 9841 JUNGLE 0
2 False 12328 MIDDLE 2
3 False 8697 BOTTOM 0
4 False 8380 UTILITY 0
5 False 9198 TOP 0
6 False 8205 JUNGLE 0
7 False 9765 MIDDLE 0
8 False 10946 BOTTOM 0
9 False 6862 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1055 3065 3111 3053 3078 3193 3340
1 0 6664 2031 3742 3111 1052 0 3364
2 0 1056 3041 3115 3006 3102 4633 3363
3 0 3006 1055 6672 3153 0 0 3340
4 0 3075 3857 3067 3047 1033 1029 3364
5 3 4633 3115 2420 3047 0 0 3340
6 3 6653 3020 1026 1011 1052 0 3364
7 3 1056 3157 3158 6653 1058 0 3340
8 3 3042 1083 3153 3006 3071 0 3363
9 3 3109 3860 3190 1028 3047 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 15 13 3
1 1 3 2 1
2 2 11 7 2
3 1 3 3 1
4 1 3 2 1
5 0 2 0 1
6 1 4 3 1
7 0 4 0 1
8 2 9 6 3
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 478 0 0
1 458 64552 3696
2 562 80900 17034
3 761 886 686
4 289 19125 5434
5 306 107725 7820
6 491 76280 7804
7 503 53296 10447
8 413 3926 2116
9 1133 6494 2788
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 10513 12 0 0
1 7439 106 0 0
2 4770 8 0 0
3 2569 5 0 0
4 6165 0 0 0
5 4940 18 1 0
6 6048 102 1 0
7 4713 0 1 0
8 6130 8 1 0
9 8569 4 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 160136
1 0 2 36342
2 0 3 28405
3 0 4 55511
4 0 5 10749
5 0 6 31441
6 0 7 13341
7 0 8 20407
8 0 9 100343
9 0 10 7738
physicalDamageDealtToChampions physicalDamageTaken role \
0 24246 14113 SOLO
1 2933 18539 NONE
2 4187 8401 SOLO
3 6399 9273 CARRY
4 1285 8761 SUPPORT
5 6569 16813 SOLO
6 536 16183 NONE
7 2482 9638 SOLO
8 23406 11200 CARRY
9 1336 9299 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 5 4 7 6 256
1 5 6 16 11 315
2 3 4 3 12 332
3 4 7 3 4 66
4 5 14 4 4 189
5 4 4 5 14 282
6 12 11 3 4 241
7 6 14 2 4 260
8 5 7 4 4 282
9 4 4 5 14 315
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 SussieAmogus False 100 TOP 28
1 LordBlackMagic False 100 JUNGLE 26
2 Rotome False 100 MIDDLE 7
3 Dublaiar False 100 BOTTOM 30
4 DEAFORT False 100 UTILITY 36
5 Lörd touch me False 200 TOP 14
6 Exorcit False 200 JUNGLE 13
7 hawtdog97 False 200 MIDDLE 9
8 Hërô False 200 BOTTOM 4
9 JinxyMoo False 200 UTILITY 34
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1627 169612 29857
1 1627 109515 7852
2 1627 109970 21382
3 1627 64848 7510
4 1627 34552 7146
5 1627 143304 15717
6 1627 113216 10688
7 1627 74721 13947
8 1627 118003 25835
9 1627 24258 4755
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 26466 10539 201 299
1 27644 10469 35 264
2 13863 6722 156 199
3 12350 2316 81 461
4 15859 604 48 139
5 23405 3566 151 162
6 23411 7822 23 275
7 16903 568 154 120
8 18793 4604 173 52
9 18886 574 30 140
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 42 1 9475
1 119 1 8620
2 79 5 666
3 86 2 8450
4 127 4 4677
5 240 1 4137
6 153 1 23594
7 239 1 1017
8 202 3 13734
9 146 1 10025
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 5610 1838 5 2
1 1222 1665 0 2
2 160 691 4 2
3 425 507 1 2
4 426 931 1 2
5 1326 1651 0 11
6 2348 1179 0 11
7 1017 2551 1 11
8 312 1463 0 11
9 630 1016 0 11
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 22 1 0 10 True
1 22 4 3 5 True
2 16 2 3 5 True
3 18 0 1 8 True
4 52 3 6 21 True
5 16 0 2 8 False
6 11 0 2 4 False
7 20 1 4 9 False
8 13 0 2 4 False
9 43 4 1 25 False ,
assists baronKills bountyLevel champLevel championName \
0 10 0 0 16 Akali
1 5 0 0 14 DrMundo
2 5 0 0 15 Irelia
3 7 0 0 13 Caitlyn
4 16 0 0 12 Blitzcrank
5 3 0 2 14 MasterYi
6 1 0 0 13 Garen
7 7 0 1 15 Vladimir
8 10 0 0 13 Jhin
9 14 0 0 12 Yuumi
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 5507 5507 5507
1 77 15845 77
2 6813 8794 6813
3 5580 7147 5580
4 1326 2089 1326
5 0 6522 0
6 0 0 0
7 0 1663 0
8 0 1165 0
9 0 0 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 3 1 0 False False
1 3 1 2 False False
2 8 0 0 False False
3 3 0 0 False True
4 4 0 0 True False
5 7 1 2 False False
6 10 2 0 False False
7 6 0 0 False False
8 7 0 0 False False
9 5 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 True False False
4 False True False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 12170 TOP 1
1 False 9661 JUNGLE 0
2 False 12853 MIDDLE 0
3 False 12873 BOTTOM 0
4 False 7139 UTILITY 0
5 False 12984 JUNGLE 0
6 False 7048 TOP 0
7 False 10806 MIDDLE 0
8 False 7920 BOTTOM 0
9 False 6121 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3157 1054 3113 4633 4637 3020 3340
1 0 2031 6664 3047 3742 3211 1028 3340
2 0 3123 1037 3153 3047 3078 3044 3340
3 0 6671 3006 3031 3508 1036 1036 3340
4 0 3190 3860 3050 3117 1028 0 3364
5 1 6691 2031 3006 6676 3508 0 3364
6 1 2055 6631 3047 3076 1054 1011 3340
7 1 2420 3152 1082 3158 3916 4629 3340
8 1 6671 1055 3009 3134 1018 0 3340
9 1 3853 6617 3504 0 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 10 8 2
1 0 2 0 1
2 3 11 3 2
3 3 12 5 2
4 0 0 0 0
5 4 12 4 3
6 1 2 2 2
7 1 6 2 2
8 0 1 0 1
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 1101 103511 24602
1 1070 111416 6455
2 341 17646 9601
3 841 758 618
4 844 10042 5679
5 578 3994 26
6 273 282 0
7 658 88482 18580
8 476 6798 503
9 769 9531 6116
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 3709 2 0 0
1 4198 197 0 0
2 11083 0 0 0
3 2856 3 0 0
4 5401 0 0 0
5 9324 112 1 0
6 16653 0 1 0
7 11182 4 1 0
8 6660 0 1 0
9 4296 0 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 20387
1 0 2 64882
2 0 3 134044
3 0 4 118421
4 0 5 7119
5 0 6 116767
6 0 7 48771
7 0 8 8354
8 0 9 79015
9 0 10 1141
physicalDamageDealtToChampions physicalDamageTaken role \
0 2169 12296 SOLO
1 1981 19683 NONE
2 16990 16521 SOLO
3 17859 8520 CARRY
4 2424 7753 SUPPORT
5 19434 16486 SUPPORT
6 3633 5098 SOLO
7 938 18706 SOLO
8 7334 9048 CARRY
9 973 7002 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 1 12 4 4 286
1 1 4 17 11 141
2 2 14 3 4 196
3 2 4 3 7 513
4 4 4 4 14 423
5 5 4 17 11 253
6 4 4 3 14 30
7 4 4 5 14 169
8 2 7 1 4 65
9 2 4 4 14 127
summonerName teamEarlySurrendered teamId teamPosition \
0 RFT GamerBoyOmg False 100 TOP
1 discreet420 False 100 JUNGLE
2 basedBenji False 100 MIDDLE
3 TheHardSoap False 100 BOTTOM
4 Gäshtëk False 100 UTILITY
5 SussieAmogus False 200 JUNGLE
6 KillCarolBaskiin False 200 TOP
7 Coolgum15 False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 Alece False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 3 1732 128730 27782
1 10 1732 189084 9024
2 18 1732 153806 26862
3 19 1732 120039 18877
4 33 1732 24285 8516
5 10 1732 139113 27144
6 12 1732 50899 5468
7 3 1732 97678 20361
8 20 1732 87454 7838
9 14 1732 11152 7569
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 19405 6614 177 108
1 26342 22489 4 368
2 30325 8051 215 59
3 12209 2450 151 80
4 14581 491 29 123
5 26625 9437 32 110
6 22396 629 104 46
7 30561 17980 153 76
8 16075 1815 129 116
9 11481 14163 7 30
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 40 1 4831
1 72 1 12784
2 248 1 2115
3 65 3 860
4 147 5 7123
5 212 1 18351
6 306 1 1844
7 231 1 842
8 170 3 1640
9 159 5 480
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1010 3399 2 0
1 588 2461 0 0
2 270 2719 2 0
3 400 833 3 0
4 412 1426 1 0
5 7684 814 0 8
6 1834 644 0 8
7 842 673 0 8
8 0 367 0 8
9 480 182 0 8
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 26 1 1 9 True
1 19 2 1 3 True
2 10 0 0 6 True
3 11 0 0 7 True
4 30 3 2 15 True
5 17 1 2 2 False
6 10 3 0 8 False
7 14 0 1 8 False
8 8 0 0 6 False
9 12 0 0 6 False ,
assists baronKills bountyLevel champLevel championName \
0 1 0 1 12 Mordekaiser
1 3 0 0 10 LeeSin
2 3 0 0 12 Akali
3 4 0 2 12 Kaisa
4 11 0 0 11 Nautilus
5 7 0 1 11 Sylas
6 3 0 0 11 RekSai
7 3 0 4 12 Viego
8 6 0 0 11 Jhin
9 9 0 0 9 Taliyah
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 1442 6413 1442
1 0 22632 0
2 986 2858 986
3 2503 8478 2503
4 520 520 520
5 0 0 0
6 0 2156 0
7 2816 5964 2816
8 0 1234 0
9 225 225 225
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 2 0 0 False True
1 5 0 1 False False
2 2 1 0 False False
3 5 0 1 False False
4 3 0 0 False False
5 7 3 0 False False
6 7 0 1 False False
7 5 1 0 False False
8 5 0 0 False False
9 10 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False True False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 7471 TOP 0
1 True 6932 JUNGLE 0
2 True 7211 MIDDLE 0
3 True 11484 BOTTOM 0
4 True 5772 UTILITY 0
5 True 5725 TOP 0
6 True 7604 JUNGLE 0
7 True 7524 MIDDLE 0
8 True 7143 BOTTOM 0
9 True 6248 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 4633 3111 1026 1028 0 1054 3340
1 0 3009 3134 6693 1037 0 0 3513
2 0 1056 4633 3020 3191 1052 0 3340
3 0 1037 6671 3085 3006 1018 3134 3340
4 0 3859 3117 3068 1029 0 0 3340
5 0 3158 6656 2055 3108 0 0 3340
6 0 6692 3047 2031 3133 3067 1036 3340
7 0 1055 3153 1001 6670 1029 0 3340
8 0 6671 1055 3009 3134 1037 0 3340
9 0 3020 2420 3853 2055 6656 1029 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 6 3 2
1 1 4 3 1
2 1 7 6 1
3 5 15 6 2
4 0 2 0 1
5 0 3 0 1
6 2 5 3 2
7 1 4 4 2
8 1 4 2 2
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 644 50349 6684
1 561 13362 1322
2 1022 44673 12328
3 326 11227 5697
4 694 10962 5150
5 243 28000 9224
6 369 3349 0
7 216 5946 1266
8 662 3251 691
9 251 14430 7547
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 3880 0 0 0
1 4962 84 0 0
2 2519 0 0 0
3 4667 12 0 0
4 3384 0 0 0
5 7021 4 0 0
6 7042 64 0 0
7 9244 12 0 0
8 5003 4 0 0
9 3930 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 14871
1 0 2 48395
2 0 3 12021
3 0 4 83490
4 0 5 5256
5 0 6 2902
6 0 7 55656
7 0 8 81851
8 0 9 52656
9 0 10 1609
physicalDamageDealtToChampions physicalDamageTaken role \
0 1840 6494 SOLO
1 5498 9913 NONE
2 981 11687 SOLO
3 15054 7854 CARRY
4 2423 6109 SUPPORT
5 254 8708 SOLO
6 7041 13689 NONE
7 10374 6289 SOLO
8 8108 5538 CARRY
9 920 7663 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 4 0 12 101
1 8 11 3 4 100
2 2 4 3 14 78
3 3 4 4 7 157
4 4 4 6 14 92
5 3 4 3 14 195
6 2 4 10 11 154
7 4 4 3 14 172
8 3 7 3 4 65
9 4 4 5 14 63
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 voratizzlle False 100 TOP 4
1 ZackGoesIn False 100 JUNGLE 10
2 Prymia False 100 MIDDLE 0
3 Hide on Church False 100 BOTTOM 3
4 ScoringGC False 100 UTILITY 42
5 some egg boi False 200 TOP 21
6 NoLP4me False 200 JUNGLE 12
7 Ownez False 200 MIDDLE 6
8 Dublaiar False 200 BOTTOM 17
9 LaunchSite False 200 UTILITY 16
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1332 69887 8783
1 1332 73232 6977
2 1332 63565 13808
3 1332 95996 21037
4 1332 19528 8556
5 1332 32946 9887
6 1332 69330 8598
7 1332 89181 12310
8 1332 56269 8928
9 1332 16671 9099
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 10904 3339 106 31
1 15699 5327 18 263
2 14845 4281 97 44
3 13430 4031 134 47
4 9990 48 15 171
5 16369 3359 44 193
6 21169 7709 34 156
7 15980 5093 121 62
8 10557 1701 96 80
9 12234 765 8 88
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 65 1 4666
1 141 1 11475
2 74 1 6870
3 127 2 1278
4 76 1 3310
5 151 1 2044
6 161 1 10324
7 93 1 1384
8 152 2 362
9 183 1 632
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 258 529 0 1
1 156 823 1 1
2 497 638 0 1
3 286 908 1 1
4 982 495 0 1
5 408 640 0 2
6 1557 438 0 2
7 670 445 1 2
8 128 15 0 2
9 632 640 0 2
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 8 0 1 7 True
1 17 0 3 4 True
2 10 1 1 7 True
3 10 0 0 7 True
4 9 0 0 7 True
5 19 4 2 9 False
6 6 0 0 4 False
7 9 1 0 5 False
8 9 0 1 5 False
9 21 2 0 12 False ,
assists baronKills bountyLevel champLevel championName \
0 1 0 3 11 Malphite
1 3 0 3 11 XinZhao
2 3 0 1 10 Brand
3 0 0 0 9 Tristana
4 2 0 0 8 Velkoz
5 0 0 0 11 Shen
6 1 0 0 7 Amumu
7 1 0 0 9 Lulu
8 1 0 1 9 Jhin
9 1 0 0 8 Morgana
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 1382 1382 1382
1 998 14204 998
2 1139 1139 1139
3 3529 5230 3529
4 3142 3258 3142
5 0 0 0
6 0 2508 0
7 621 621 621
8 0 4785 0
9 0 0 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 0 1 0 False False
1 1 0 1 False False
2 2 0 0 False True
3 1 0 0 False False
4 0 0 0 False False
5 2 0 0 False False
6 3 0 0 False False
7 5 1 0 False False
8 3 0 1 False False
9 6 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 4984 TOP 0
1 True 8521 JUNGLE 0
2 True 5566 MIDDLE 0
3 True 6367 BOTTOM 0
4 True 4183 UTILITY 0
5 True 4930 TOP 0
6 True 3473 JUNGLE 0
7 True 4284 MIDDLE 0
8 True 5214 BOTTOM 0
9 True 3466 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 2422 2033 3068 0 0 0 3340
1 0 6692 2031 3111 1053 1042 0 3364
2 0 1056 6653 3020 1028 0 0 3340
3 0 1055 6672 3006 2015 1018 0 3340
4 0 3851 3020 3802 1026 0 0 3340
5 0 3068 0 1001 1055 0 1033 3340
6 0 6660 3105 0 0 0 0 3340
7 0 3020 3802 1056 3108 0 0 3340
8 0 6671 1055 3009 1036 0 0 3340
9 0 2424 3850 3117 4642 3067 0 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 1 3 3 1
1 2 8 5 2
2 1 3 2 1
3 1 5 5 1
4 0 0 0 0
5 0 1 0 1
6 0 0 0 0
7 0 1 0 1
8 0 2 0 1
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 0 15184 4074
1 724 7012 572
2 426 36352 6216
3 951 8999 1174
4 0 13138 986
5 425 12662 2053
6 479 19967 334
7 224 24268 4172
8 482 862 0
9 325 8415 1878
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 1101 0 0 0
1 3516 76 0 0
2 3908 0 0 0
3 428 0 0 0
4 679 0 0 0
5 3619 0 0 0
6 2175 46 0 0
7 4761 0 0 0
8 1682 4 0 0
9 1667 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 12212
1 0 2 60622
2 0 3 6394
3 0 4 32961
4 0 5 4187
5 0 6 14458
6 0 7 12121
7 0 8 8520
8 0 9 34253
9 0 10 7630
physicalDamageDealtToChampions physicalDamageTaken role \
0 656 1719 SUPPORT
1 10316 11388 SUPPORT
2 636 2911 SUPPORT
3 4209 3941 DUO
4 96 2227 SUPPORT
5 1769 4304 SUPPORT
6 129 9890 SUPPORT
7 661 2723 SUPPORT
8 3674 5070 SUPPORT
9 478 5932 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 1 4 0 12 43
1 2 4 10 11 34
2 0 4 0 14 21
3 2 14 2 4 238
4 1 4 1 7 21
5 1 12 2 4 59
6 8 11 3 7 19
7 2 14 2 4 201
8 1 7 2 4 65
9 2 4 0 14 26
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 Evanator42069 False 100 TOP 16
1 dlrkdlckemz False 100 JUNGLE 15
2 StinkyMofo False 100 MIDDLE 10
3 frogger646 False 100 BOTTOM 1
4 dopplerdev96 False 100 UTILITY 3
5 jRouge49 False 200 TOP 12
6 Linkinne False 200 JUNGLE 2
7 Dreecteur False 200 MIDDLE 17
8 Dublaiar False 200 BOTTOM 13
9 Breezboy False 200 UTILITY 24
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 984 29161 4730
1 984 76778 11323
2 984 42747 6853
3 984 45037 5643
4 984 17617 1082
5 984 33742 3891
6 984 37324 523
7 984 36417 5112
8 984 36812 3674
9 984 16071 2383
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 2845 223 72 161
1 15012 9994 26 277
2 7119 1214 76 12
3 4370 921 99 6
4 2906 520 11 27
5 8182 574 107 119
6 12079 4642 4 90
7 7580 3 72 251
8 6780 719 67 48
9 7897 312 28 41
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 0 1 1765
1 27 1 9144
2 42 1 0
3 30 1 3076
4 0 2 291
5 37 1 6621
6 47 1 5236
7 104 1 3628
8 69 1 1695
9 107 1 26
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 24 1 0
1 434 107 1 0
2 0 300 0 0
3 259 0 1 0
4 0 0 0 0
5 69 258 0 3
6 59 14 0 3
7 278 96 0 3
8 0 28 0 3
9 26 297 0 3
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 10 1 0 6 True
1 7 0 0 1 True
2 9 0 1 5 True
3 7 0 0 5 True
4 0 0 0 0 True
5 6 0 1 3 False
6 6 0 0 4 False
7 9 1 0 5 False
8 5 0 0 4 False
9 4 0 0 3 False ,
assists baronKills bountyLevel champLevel championName \
0 10 0 0 15 Pyke
1 23 1 1 16 Nunu
2 12 0 0 17 Alistar
3 12 0 1 16 Caitlyn
4 24 0 7 17 Senna
5 8 0 0 14 Pantheon
6 5 0 0 14 RekSai
7 7 0 0 16 Yasuo
8 8 0 0 14 Xayah
9 19 0 0 15 Rakan
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 1836 3054 1836
1 228 17781 228
2 3247 3868 3247
3 8324 20202 8324
4 2524 24051 2524
5 3722 3939 3722
6 0 1722 0
7 5598 6821 5598
8 3755 11884 3755
9 2440 9322 2440
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 18 0 0 False False
1 5 0 4 False False
2 5 0 0 False False
3 3 0 0 False False
4 3 4 1 False False
5 15 0 0 False False
6 12 0 0 False False
7 14 0 0 False True
8 7 0 0 False False
9 5 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False True False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 12465 TOP 0
1 False 12142 JUNGLE 0
2 False 12926 MIDDLE 0
3 False 12978 BOTTOM 0
4 False 17404 UTILITY 2
5 False 10963 TOP 0
6 False 12202 JUNGLE 0
7 False 14889 MIDDLE 0
8 False 11924 BOTTOM 0
9 False 9802 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1054 6693 3117 3142 3814 3134 3340
1 0 1029 3075 3065 1029 3047 3068 3340
2 0 1058 3165 3075 3020 6656 1058 3340
3 0 1018 6672 3006 6676 3095 1037 3340
4 0 6672 3094 3033 3153 6676 3006 3364
5 2 3158 6693 6676 3142 0 1036 3340
6 2 3814 3053 3123 3047 6693 2031 3340
7 2 1031 3006 6673 3033 3031 3133 3363
8 2 6671 3031 3006 6675 0 0 3340
9 2 3050 3860 3109 2055 4005 3009 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 8 2 2
1 1 5 2 1
2 3 14 5 2
3 2 8 3 2
4 3 17 8 3
5 1 6 2 1
6 3 11 3 1
7 2 10 2 2
8 1 4 3 3
9 1 3 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 235 0 0
1 781 43488 9544
2 973 74830 18672
3 1278 914 794
4 1106 7398 3027
5 493 4050 750
6 708 5698 0
7 257 12397 2052
8 1204 911 911
9 1266 22298 9837
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 2411 0 0 0
1 4992 100 0 0
2 3440 4 0 0
3 3509 8 0 0
4 952 12 0 0
5 6445 12 1 0
6 7490 89 1 0
7 11373 36 1 0
8 5760 8 1 0
9 4060 0 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 36562
1 0 2 20663
2 0 3 12949
3 0 4 128049
4 0 5 99657
5 0 6 95490
6 0 7 75563
7 0 8 215180
8 0 9 109397
9 0 10 11471
physicalDamageDealtToChampions physicalDamageTaken role \
0 13722 29569 SOLO
1 1485 30400 NONE
2 2173 24153 SOLO
3 17838 15511 CARRY
4 34205 15553 SUPPORT
5 20645 19713 SOLO
6 13924 23866 NONE
7 29912 21979 SOLO
8 14986 14056 CARRY
9 1912 17520 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 8 14 6 4 136
1 18 11 2 4 65
2 4 4 7 14 248
3 4 4 4 7 134
4 3 3 3 4 122
5 5 4 7 3 155
6 5 4 9 11 55
7 5 4 7 14 422
8 3 4 6 7 151
9 4 4 4 14 92
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 GooseyOfficial False 100 TOP 42
1 Dublaiar False 100 JUNGLE 34
2 XSuperV3n0mX False 100 MIDDLE 75
3 Rose0210 False 100 BOTTOM 15
4 GABESena False 100 UTILITY 64
5 uginthespirit False 200 TOP 29
6 Darketis False 200 JUNGLE 24
7 j4zz56 False 200 MIDDLE 41
8 Dechipio False 200 BOTTOM 20
9 MrDoctorb False 200 UTILITY 35
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 2048 52207 18348
1 2048 110764 12471
2 2048 95482 23548
3 2048 138373 20261
4 2048 120168 42488
5 2048 105354 21490
6 2048 88570 16850
7 2048 229110 33222
8 2048 116807 16139
9 2048 45301 12567
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 34061 2358 54 149
1 36099 15861 24 306
2 28542 14250 98 213
3 19349 8227 154 55
4 17781 11890 44 280
5 30383 1271 112 62
6 33994 9425 8 205
7 38072 9001 201 170
8 21552 3671 160 44
9 23915 3790 41 115
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 541 1 15645
1 167 1 46612
2 184 5 7702
3 129 4 9409
4 117 5 13112
5 538 1 5814
6 343 1 7307
7 443 1 1532
8 296 4 6498
9 131 4 11532
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 4625 2080 1 7
1 1440 706 0 7
2 2702 949 1 7
3 1628 327 4 7
4 5255 1275 0 7
5 94 4224 1 8
6 2926 2636 0 8
7 1258 4719 2 8
8 242 1735 2 8
9 818 2335 1 8
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 15 0 0 9 True
1 20 0 0 9 True
2 17 1 1 11 True
3 20 0 1 10 True
4 48 4 9 19 True
5 14 0 0 8 False
6 9 0 0 5 False
7 13 0 0 9 False
8 20 0 3 8 False
9 32 2 5 17 False ,
assists baronKills bountyLevel champLevel championName \
0 10 0 0 15 Lux
1 2 0 3 18 Fiora
2 8 1 0 18 Udyr
3 16 0 0 15 Nautilus
4 6 0 5 18 MissFortune
5 4 0 0 17 Vladimir
6 7 0 0 15 Taliyah
7 9 0 0 18 Kayle
8 10 0 0 15 Jhin
9 10 0 0 14 Shaco
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 4135 5136 4135
1 10125 13617 10125
2 4290 34310 4290
3 1263 2790 1263
4 7508 19526 7508
5 5009 5009 5009
6 1945 10702 1945
7 3462 14096 3462
8 2013 7483 2013
9 0 156 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 8 0 0 True False
1 11 0 0 True False
2 3 3 3 True False
3 8 2 0 True False
4 6 2 0 False True
5 7 2 0 False False
6 12 0 0 False False
7 3 2 0 False False
8 8 0 1 False False
9 11 2 1 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 9148 MIDDLE 0
1 False 15761 TOP 1
2 False 14760 JUNGLE 0
3 False 10436 UTILITY 0
4 False 21687 BOTTOM 1
5 False 16047 TOP 0
6 False 9455 JUNGLE 0
7 False 16542 MIDDLE 0
8 False 10058 BOTTOM 0
9 False 11205 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3020 6655 3157 3916 0 0 3340
1 0 6630 3111 3074 3508 3053 0 3340
2 0 6664 3091 3111 6609 4401 1033 3364
3 0 3068 3047 3860 3001 1011 3076 3364
4 0 3031 6676 6671 3006 3508 3156 3363
5 2 4629 4636 3158 3102 3135 1058 3340
6 2 2031 6655 3157 3020 4630 0 3340
7 2 3916 3157 4633 3006 3115 3089 3363
8 2 6671 6676 3009 3086 1055 2015 3340
9 2 3853 3157 0 6653 3020 4637 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 1 0 1
1 1 7 3 1
2 1 5 3 1
3 0 3 0 1
4 3 24 13 3
5 3 13 6 2
6 0 2 0 1
7 1 11 10 2
8 1 3 3 1
9 2 7 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 755 62150 6341
1 406 1964 1203
2 908 143629 6273
3 726 26368 9735
4 1213 7560 3130
5 612 169888 33939
6 434 119252 4835
7 1285 180949 28502
8 514 8272 964
9 669 43015 22844
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 14494 0 0 0
1 25058 36 0 0
2 17977 180 0 1
3 18340 0 0 0
4 18201 28 0 0
5 5971 0 1 0
6 5298 123 1 0
7 5209 24 1 0
8 5402 4 1 0
9 6580 4 1 1
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 22298
1 0 2 200752
2 0 3 92343
3 1 4 14378
4 0 5 244398
5 0 6 14822
6 0 7 11770
7 0 8 54853
8 0 9 98425
9 0 10 2752
physicalDamageDealtToChampions physicalDamageTaken role \
0 464 3303 DUO
1 17058 13718 SOLO
2 6860 20156 NONE
3 4131 10926 SOLO
4 41998 9720 DUO
5 2171 29821 SOLO
6 121 26749 NONE
7 6626 14383 SOLO
8 8832 14710 CARRY
9 2512 16158 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 1 14 3 4 83
1 4 4 1 14 160
2 5 4 19 11 148
3 9 14 7 4 220
4 8 7 5 4 188
5 6 4 5 12 253
6 14 11 5 4 135
7 4 4 5 12 327
8 4 7 4 4 64
9 7 14 7 3 191
summonerName teamEarlySurrendered teamId teamPosition \
0 Br0ness False 100 MIDDLE
1 Waylanders False 100 TOP
2 Tsukadakack False 100 JUNGLE
3 Baramin False 100 UTILITY
4 Tordek False 100 BOTTOM
5 SussieAmogus False 200 TOP
6 SlothoftheAbyss False 200 JUNGLE
7 Rotome False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 MoistureCreature False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 23 2136 88384 6995
1 7 2136 215912 24111
2 28 2136 264034 14264
3 87 2136 48613 15434
4 14 2136 256105 46046
5 6 2136 191488 36213
6 1 2136 144428 5119
7 13 2136 240320 37948
8 25 2136 118209 9853
9 61 2136 47376 26964
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 18487 995 124 488
1 39616 13045 218 175
2 38826 19591 88 255
3 30326 3590 40 334
4 29386 14598 247 208
5 40696 34515 226 164
6 32690 11809 7 433
7 21646 10939 290 424
8 20759 4466 134 129
9 24147 1707 19 308
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 330 1 3935
1 376 2 13195
2 107 1 28061
3 307 1 7866
4 267 3 4147
5 243 1 6777
6 338 1 13406
7 90 5 4517
8 253 3 11511
9 296 1 1608
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 190 689 1 4
1 5849 840 4 4
2 1130 692 3 4
3 1567 1060 0 4
4 916 1464 2 4
5 102 4902 2 11
6 162 641 0 11
7 2818 2053 2 11
8 56 647 0 11
9 1608 1408 0 11
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 11 0 0 7 True
1 16 0 2 8 True
2 47 3 7 5 True
3 62 2 7 23 True
4 30 2 1 13 True
5 35 2 1 14 False
6 17 0 3 8 False
7 30 2 2 8 False
8 10 0 0 7 False
9 42 2 5 21 False ,
assists baronKills bountyLevel champLevel championName \
0 2 0 0 13 Urgot
1 9 0 0 11 Nunu
2 1 0 0 13 Fizz
3 3 0 0 12 Tristana
4 13 0 0 12 Pyke
5 6 0 0 15 Mordekaiser
6 6 0 0 12 Singed
7 5 0 2 14 Pantheon
8 4 0 4 12 Jhin
9 13 0 0 12 Thresh
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3069 13081 3069
1 0 4483 0
2 739 1958 739
3 3828 4173 3828
4 800 800 800
5 3739 7102 3739
6 829 5380 829
7 500 3266 500
8 1983 11381 1983
9 767 3065 767
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 8 1 0 False False
1 7 0 1 False False
2 2 2 0 False False
3 4 3 0 False False
4 5 1 0 False False
5 3 1 1 False False
6 6 0 2 False False
7 2 1 0 False True
8 6 0 0 False False
9 3 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 True False False
3 False False False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 8601 TOP 0
1 True 7285 JUNGLE 0
2 True 6746 MIDDLE 0
3 True 12895 BOTTOM 0
4 True 10375 UTILITY 0
5 True 11061 TOP 0
6 True 8238 JUNGLE 0
7 True 10475 MIDDLE 0
8 True 9754 BOTTOM 0
9 True 6185 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 6631 3111 3071 1055 1036 0 3340
1 0 3111 2031 3068 3076 1011 0 3340
2 0 1056 4636 3158 3113 2055 1026 3340
3 0 6672 3046 2055 3031 3006 1053 3363
4 0 3857 3142 3117 6691 3134 1036 3340
5 0 1056 4633 3020 3116 1052 1026 3340
6 0 6664 2033 3009 1082 3742 0 3340
7 0 6692 2033 3071 3111 3044 1028 3340
8 0 6671 6676 3009 3086 0 1055 3363
9 0 3857 3190 3117 3024 1028 0 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 0 1 0 1
1 0 2 0 1
2 0 0 0 0
3 2 11 6 2
4 2 6 3 1
5 1 5 3 1
6 1 4 2 2
7 3 9 4 2
8 2 8 4 3
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 262 0 0
1 348 38381 7357
2 373 24463 1852
3 687 20323 1989
4 636 0 0
5 1076 106493 11016
6 412 80928 6709
7 789 2387 764
8 587 2107 0
9 414 8170 4400
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 7483 32 0 0
1 5491 64 0 0
2 608 0 0 0
3 3410 16 0 0
4 6960 0 0 0
5 2166 12 0 0
6 4066 104 0 0
7 2402 4 0 0
8 2408 0 0 0
9 2212 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 104142
1 0 2 11350
2 0 3 17630
3 0 4 79867
4 0 5 20661
5 0 6 18291
6 0 7 13214
7 0 8 77616
8 0 9 67932
9 0 10 4919
physicalDamageDealtToChampions physicalDamageTaken role \
0 10103 11174 SOLO
1 876 19366 NONE
2 483 6677 SUPPORT
3 16491 9431 CARRY
4 12580 6678 SUPPORT
5 1933 16420 SOLO
6 159 20076 NONE
7 18280 12187 SOLO
8 10698 8287 CARRY
9 508 7895 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 2 12 241
1 6 6 16 11 34
2 4 14 2 4 194
3 3 7 2 4 350
4 6 14 3 4 64
5 3 4 6 14 66
6 15 11 4 6 190
7 4 4 6 14 327
8 3 7 3 4 64
9 2 3 3 4 135
summonerName teamEarlySurrendered teamId teamPosition \
0 hivver False 100 TOP
1 Rooooooooooot False 100 JUNGLE
2 HalDizzle False 100 MIDDLE
3 speeecy False 100 BOTTOM
4 Vanish667 False 100 UTILITY
5 SWATMARE False 200 TOP
6 MoistureCreature False 200 JUNGLE
7 Rotome False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 SlothoftheAbyss False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 18 1601 108893 10294
1 41 1601 79436 9184
2 7 1601 54115 2722
3 9 1601 113245 20665
4 39 1601 28382 15159
5 7 1601 126235 14265
6 17 1601 100947 7220
7 21 1601 81002 20042
8 16 1601 72456 10701
9 28 1601 17826 4909
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 19058 1371 140 147
1 25922 11332 36 320
2 7588 530 107 39
3 13618 1489 144 75
4 13764 2840 23 131
5 19347 6699 188 109
6 26453 8121 33 141
7 16128 4216 130 32
8 11484 2151 111 80
9 11003 2030 34 57
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 252 1 4750
1 186 1 29705
2 24 1 12021
3 125 2 13054
4 166 1 7721
5 126 1 1450
6 161 1 6804
7 72 1 998
8 100 3 2416
9 44 5 4736
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 190 400 2 3
1 951 1063 0 3
2 386 302 0 3
3 2184 776 1 3
4 2579 124 0 3
5 1315 761 1 3
6 352 2310 1 3
7 998 1538 0 3
8 2 787 1 3
9 0 895 0 3
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 8 1 0 5 False
1 18 0 3 8 False
2 15 3 0 9 False
3 11 5 1 10 False
4 35 1 0 16 False
5 28 1 3 12 True
6 18 0 2 8 True
7 10 1 0 6 True
8 9 0 1 5 True
9 29 2 5 14 True ,
assists baronKills bountyLevel champLevel championName \
0 3 0 0 14 Pantheon
1 2 0 0 12 LeeSin
2 2 0 0 15 TwistedFate
3 1 0 0 14 Jhin
4 4 0 0 11 Nami
5 5 0 2 16 Teemo
6 8 0 3 16 Shyvana
7 7 1 3 15 Graves
8 7 0 3 16 Jinx
9 12 0 1 12 Rell
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 0 160 0
1 0 1348 0
2 3763 3763 3763
3 2301 3080 2301
4 1174 1347 1174
5 6009 27802 6009
6 2700 32899 2700
7 4741 9262 4741
8 4498 8210 4498
9 670 1466 670
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 2 0 False False
1 12 0 0 False False
2 5 1 0 False False
3 2 0 0 False False
4 5 1 0 False False
5 1 0 1 False True
6 1 0 3 True False
7 1 1 0 False False
8 2 5 0 False False
9 2 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 8907 TOP 0
1 False 6774 JUNGLE 0
2 False 9535 MIDDLE 0
3 False 12477 BOTTOM 0
4 False 6022 UTILITY 0
5 False 14154 TOP 1
6 False 12536 JUNGLE 1
7 False 11132 MIDDLE 0
8 False 12548 BOTTOM 0
9 False 7500 UTILITY 1
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 3 6692 2033 2055 3071 1028 3111 3364
1 3 6692 3111 3134 1028 1036 0 3340
2 3 3100 6656 2015 1042 3047 0 3340
3 3 6671 3086 3009 6676 3094 3123 3363
4 3 3853 2003 2010 4005 3158 3114 3364
5 0 3157 3020 2033 4637 6655 1058 3340
6 0 6662 3047 2031 3748 3083 0 3340
7 0 6676 6692 3006 3134 1037 0 3340
8 0 3085 3031 3094 3006 0 0 3363
9 0 3860 3190 3047 3109 3076 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 1 0 1
1 0 1 0 1
2 0 0 0 0
3 2 5 3 2
4 0 0 0 0
5 2 11 9 3
6 2 7 4 1
7 2 5 3 1
8 2 5 3 2
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 617 7850 477
1 469 20469 1094
2 596 122081 9140
3 1195 15513 1401
4 975 7096 3457
5 1293 114294 20820
6 1282 126058 11499
7 1305 1009 949
8 641 1186 355
9 922 10365 5174
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 10239 12 1 0
1 10595 76 1 0
2 6991 0 1 0
3 3684 0 1 0
4 8238 0 1 0
5 2126 50 0 0
6 5456 141 0 0
7 5661 12 0 0
8 3830 26 0 0
9 1470 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 103175
1 0 2 54360
2 0 3 29499
3 0 4 147213
4 0 5 959
5 0 6 34480
6 0 7 64729
7 0 8 122941
8 0 9 162277
9 0 10 5741
physicalDamageDealtToChampions physicalDamageTaken role \
0 10015 11500 NONE
1 5302 17605 NONE
2 1025 11012 SOLO
3 8549 8266 CARRY
4 41 6489 SUPPORT
5 1852 8469 NONE
6 4124 23706 NONE
7 13107 5925 SOLO
8 10435 9040 CARRY
9 694 7338 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 2 12 326
1 9 11 3 4 190
2 2 12 5 4 326
3 3 7 4 4 64
4 1 3 1 4 135
5 6 14 3 4 211
6 17 11 4 4 229
7 3 14 2 4 123
8 3 4 4 7 158
9 6 3 10 4 197
summonerName teamEarlySurrendered teamId teamPosition \
0 Rotome False 100 TOP
1 MoistureCreature False 100 JUNGLE
2 Frelikz False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 SlothoftheAbyss False 100 UTILITY
5 JumbleMuffler False 200 TOP
6 Hollow243 False 200 JUNGLE
7 WaffleCakeLord False 200 MIDDLE
8 Sunny Dªys False 200 BOTTOM
9 ThréshLight False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 17 1842 117035 10492
1 12 1842 80088 6444
2 16 1842 155101 10165
3 28 1842 171137 9950
4 19 1842 8055 3499
5 43 1842 173052 24125
6 5 1842 203503 16608
7 18 1842 129009 14533
8 5 1842 177523 10791
9 29 1842 21793 5869
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 22278 5337 168 42
1 28852 6200 15 233
2 18731 2607 199 36
3 12328 3779 228 175
4 15347 7405 3 126
5 10595 600 165 390
6 29210 12665 76 868
7 11586 5391 175 183
8 12870 4007 220 87
9 8809 1227 25 67
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 104 1 6010
1 338 1 5258
2 126 1 3520
3 31 2 8410
4 169 5 0
5 42 1 24277
6 39 1 12714
7 39 1 5058
8 51 3 14060
9 52 4 5687
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 537 0 10
1 48 650 0 10
2 0 727 1 10
3 0 378 0 10
4 0 619 1 10
5 1452 0 3 2
6 985 48 1 2
7 476 0 4 2
8 0 0 2 2
9 0 0 0 2
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 18 3 4 6 False
1 10 0 0 8 False
2 14 1 1 9 False
3 8 0 1 4 False
4 18 1 3 7 False
5 15 0 2 9 True
6 24 0 1 10 True
7 19 1 3 9 True
8 35 5 4 15 True
9 31 0 2 13 True ,
assists baronKills bountyLevel champLevel championName \
0 10 0 2 15 Darius
1 12 0 3 16 XinZhao
2 5 0 0 14 Neeko
3 11 0 0 13 Samira
4 20 0 2 13 Rell
5 3 0 0 15 Viego
6 4 0 0 11 Kindred
7 3 0 0 14 Kayle
8 2 0 0 12 Jhin
9 6 0 0 11 Leona
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2571 4011 2571
1 0 21362 0
2 7310 13986 7310
3 5084 5925 5084
4 1034 4879 1034
5 0 2309 0
6 0 1381 0
7 0 0 0
8 0 0 0
9 0 0 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 4 0 0 False True
1 3 0 1 True False
2 2 0 0 False False
3 4 0 1 False False
4 1 1 0 False False
5 8 0 0 False False
6 9 0 0 False False
7 7 1 0 False False
8 7 0 0 False False
9 10 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False True False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 11242 TOP 0
1 True 13664 JUNGLE 0
2 True 8798 MIDDLE 0
3 True 11211 BOTTOM 0
4 True 8337 UTILITY 0
5 True 11358 TOP 0
6 True 7779 JUNGLE 0
7 True 9730 MIDDLE 0
8 True 6575 BOTTOM 0
9 True 5501 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3047 6631 3053 3075 1033 0 3340
1 0 3115 2031 3006 3100 4629 3145 3340
2 0 1056 3157 3152 3916 0 3020 3340
3 0 1037 6673 3006 6676 1038 1018 3340
4 0 3047 6664 3860 3075 1011 0 3364
5 0 1055 6672 3006 3153 3051 1042 3340
6 0 6671 2031 3006 1038 2015 0 3340
7 0 1054 3115 3006 1082 4633 3191 3363
8 0 6671 1055 3009 3134 0 0 3340
9 0 3860 3190 3801 3047 0 0 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 2 7 2 1
1 4 17 6 3
2 1 2 2 1
3 2 10 6 2
4 2 5 3 1
5 2 7 3 2
6 0 2 0 1
7 1 4 2 1
8 0 1 0 1
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 376 973 29
1 700 54073 9579
2 1217 90118 5752
3 932 5422 1853
4 1203 22117 8123
5 345 5602 2117
6 474 19163 862
7 508 63009 10208
8 412 3572 1094
9 306 9338 2880
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 4444 16 0 0
1 5119 141 0 0
2 3757 4 0 0
3 3594 20 0 0
4 1743 0 0 0
5 4617 8 0 0
6 5931 115 0 0
7 5959 4 0 0
8 5720 0 0 0
9 5513 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 103648
1 0 2 106026
2 0 3 15352
3 0 4 64473
4 0 5 4985
5 0 6 96312
6 0 7 71911
7 0 8 31255
8 0 9 54119
9 0 10 8323
physicalDamageDealtToChampions physicalDamageTaken role \
0 12709 8817 SOLO
1 16145 29268 NONE
2 390 4963 SOLO
3 13631 9278 CARRY
4 1256 6152 SUPPORT
5 15926 17667 DUO
6 3223 19685 NONE
7 1778 7787 DUO
8 5538 6671 CARRY
9 2167 11204 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 3 6 126
1 4 4 17 11 40
2 4 12 2 4 164
3 3 4 4 7 140
4 5 14 3 4 224
5 3 4 5 14 253
6 9 11 3 4 135
7 3 4 1 12 326
8 4 7 4 4 64
9 4 4 3 14 260
summonerName teamEarlySurrendered teamId teamPosition \
0 CRH Squiddy False 100 TOP
1 Zaninator False 100 JUNGLE
2 Zyngruff False 100 MIDDLE
3 The Tobinator False 100 BOTTOM
4 Supreme Succubus False 100 UTILITY
5 SussieAmogus False 200 TOP
6 SlothoftheAbyss False 200 JUNGLE
7 Rotome False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 S1ONTIST False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 21 1583 117736 15433
1 30 1583 173770 26486
2 21 1583 111423 6143
3 5 1583 78648 15801
4 44 1583 33452 10093
5 11 1583 110968 20844
6 3 1583 96850 4328
7 4 1583 94264 11986
8 14 1583 57691 6632
9 49 1583 25413 5446
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 14382 3134 162 208
1 35486 23565 30 692
2 8721 1811 172 239
3 13772 2577 130 15
4 8217 2218 34 101
5 23732 7704 160 46
6 26012 11185 11 138
7 14894 1133 187 188
8 12717 1348 117 77
9 17887 207 43 79
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 124 1 13113
1 112 1 13671
2 82 1 5952
3 127 3 8752
4 33 5 6349
5 280 1 9053
6 215 4 5774
7 247 3 0
8 180 2 0
9 247 4 7751
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 2693 1120 2 0
1 761 1098 0 0
2 0 0 3 0
3 316 899 2 0
4 714 321 0 0
5 2800 1447 0 7
6 242 394 0 7
7 0 1147 0 7
8 0 326 0 7
9 398 1169 0 7
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 15 0 1 9 True
1 16 0 0 8 True
2 18 0 2 9 True
3 10 0 0 5 True
4 42 1 4 17 True
5 11 0 0 8 False
6 9 0 0 5 False
7 8 2 1 4 False
8 10 0 0 7 False
9 41 1 1 24 False ,
assists baronKills bountyLevel champLevel championName \
0 5 0 6 17 Bard
1 5 0 0 14 Graves
2 6 0 6 18 Kayle
3 10 0 1 14 Jhin
4 11 0 0 15 Shaco
5 2 0 0 15 MonkeyKing
6 8 0 0 15 Lillia
7 5 0 0 15 Nocturne
8 9 0 0 14 Kaisa
9 14 0 0 14 Morgana
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2740 7705 2740
1 3782 18302 3782
2 3033 16542 3033
3 680 3027 680
4 778 1330 778
5 5620 6789 5620
6 1577 13331 1577
7 898 9941 898
8 5366 10988 5366
9 1386 3704 1386
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 1 0 0 True False
1 11 0 1 False True
2 2 0 1 False False
3 6 0 1 False False
4 12 0 0 False False
5 8 2 0 False False
6 6 0 2 False False
7 10 2 0 False False
8 5 6 0 False False
9 5 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 True False False
2 False True False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 12204 TOP 0
1 True 10738 JUNGLE 0
2 True 17300 MIDDLE 1
3 True 8008 BOTTOM 0
4 True 12277 UTILITY 0
5 True 11379 TOP 0
6 True 11556 JUNGLE 0
7 True 10910 MIDDLE 0
8 True 13844 BOTTOM 0
9 True 9676 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 4636 2033 3100 3006 3115 1036 3340
1 0 6676 1053 3006 6671 1018 0 3340
2 0 1054 3157 3115 3006 4633 3041 3363
3 0 6671 1055 3009 6676 0 0 3340
4 0 3158 3853 3157 6656 4629 4630 3364
5 1 3074 3078 3047 3156 1055 0 3364
6 1 6655 4637 2420 3020 3916 3191 3364
7 1 6691 3006 6676 3179 0 0 3340
8 1 3006 6676 6671 1038 3085 1037 3364
9 1 4005 3853 3157 3158 4637 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 7 6 2
1 0 4 0 1
2 2 14 7 1
3 0 1 0 1
4 3 8 3 1
5 0 2 0 1
6 2 6 2 1
7 1 5 2 1
8 2 13 10 3
9 1 6 5 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 1431 100186 16673
1 378 10262 1742
2 952 174981 21472
3 543 6945 750
4 327 52958 21052
5 836 21414 1789
6 488 138601 15409
7 767 1963 963
8 1457 12428 5795
9 984 40166 18531
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 4638 17 0 0
1 8113 104 0 0
2 7843 72 0 0
3 6441 10 0 0
4 16315 0 0 0
5 14593 0 0 0
6 14699 133 0 0
7 14472 12 0 0
8 8942 9 0 0
9 12057 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 27437
1 0 2 126054
2 0 3 48678
3 0 4 62174
4 0 5 6982
5 0 6 117346
6 0 7 15734
7 0 8 124302
8 0 9 125761
9 0 10 4981
physicalDamageDealtToChampions physicalDamageTaken role \
0 3321 10237 SOLO
1 11095 19961 NONE
2 5277 10682 SOLO
3 10282 5356 CARRY
4 831 11743 SUPPORT
5 10232 10248 SOLO
6 484 19992 NONE
7 10819 12993 SOLO
8 14362 13223 CARRY
9 1065 10325 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 4 12 253
1 5 4 20 11 177
2 3 4 2 12 326
3 4 7 3 4 64
4 2 4 4 14 185
5 5 14 4 4 292
6 4 4 16 11 227
7 5 14 3 4 254
8 5 7 3 4 262
9 6 4 3 14 153
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 SussieAmogus False 100 TOP 35
1 DarkZexi False 100 JUNGLE 15
2 Rotome False 100 MIDDLE 8
3 Dublaiar False 100 BOTTOM 24
4 mK Reptileeee False 100 UTILITY 56
5 Bearacudda98 False 200 TOP 13
6 TheMarshall1 False 200 JUNGLE 37
7 Reaper27 GG False 200 MIDDLE 182
8 Skyfiree False 200 BOTTOM 1
9 Hairybob45 False 200 UTILITY 96
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 2073 131062 20025
1 2073 149302 13273
2 2073 232562 27306
3 2073 69401 11200
4 2073 60707 22553
5 2073 141639 13015
6 2073 194589 19202
7 2073 130414 12785
8 2073 140665 20487
9 2073 45634 20083
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 15652 7534 170 556
1 29072 6771 47 600
2 20671 11041 226 310
3 12419 1768 80 124
4 29638 1038 57 470
5 25156 4032 193 43
6 35021 13982 55 482
7 28039 5102 155 403
8 22558 7769 177 7
9 22634 5212 21 131
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 45 5 3438
1 342 1 12984
2 69 5 8904
3 138 2 282
4 310 1 766
5 325 1 2878
6 223 1 40253
7 396 1 4149
8 220 2 2474
9 204 1 486
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 30 776 1 4
1 435 997 2 4
2 556 2145 1 4
3 168 621 0 4
4 670 1579 0 4
5 994 314 2 5
6 3308 329 0 5
7 1002 574 1 5
8 330 391 1 5
9 486 251 0 5
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 25 0 4 11 True
1 18 0 1 11 True
2 12 1 1 6 True
3 17 0 1 10 True
4 47 0 3 21 True
5 21 2 3 8 False
6 12 0 5 0 False
7 31 2 3 11 False
8 24 6 2 10 False
9 35 0 2 13 False ,
assists baronKills bountyLevel champLevel championName \
0 2 0 1 13 Jayce
1 4 0 1 11 Sejuani
2 0 0 0 11 TwistedFate
3 5 0 0 10 Caitlyn
4 7 0 0 10 Leona
5 2 0 2 13 Darius
6 9 0 1 11 Shaco
7 3 0 0 13 Veigar
8 3 0 2 10 Jhin
9 6 0 0 10 Pyke
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3119 3119 3119
1 123 8353 123
2 271 271 271
3 2584 7799 2584
4 696 2181 696
5 2978 4467 2978
6 97 5673 97
7 3669 4676 3669
8 1226 3512 1226
9 0 7864 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 4 1 0 False False
1 2 4 1 False False
2 5 0 0 False False
3 4 2 0 True False
4 2 2 1 False True
5 2 1 0 False False
6 2 0 1 False False
7 1 1 0 False False
8 0 0 0 False False
9 6 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 8269 TOP 0
1 True 7725 JUNGLE 0
2 True 6761 MIDDLE 0
3 True 8412 BOTTOM 0
4 True 5803 UTILITY 0
5 True 7647 TOP 0
6 True 6770 JUNGLE 0
7 True 10922 MIDDLE 0
8 True 6474 BOTTOM 0
9 True 5529 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 6692 1055 3042 3158 1036 0 3340
1 0 3068 2031 3158 0 0 2055 3364
2 0 2033 6656 3158 3113 3057 0 3363
3 0 1055 3094 3006 2055 6671 1042 3364
4 0 3860 3190 3117 1057 1028 0 3364
5 0 1055 2031 3044 3047 3078 1037 3340
6 0 2031 6631 3006 0 0 0 3340
7 0 2033 6656 2055 4629 3020 3191 3363
8 0 6671 1055 3009 1036 1018 0 3340
9 0 3857 6693 1036 3117 1036 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 4 2 1
1 0 2 0 1
2 0 2 0 1
3 1 2 2 1
4 0 1 0 1
5 1 2 2 1
6 0 1 0 1
7 1 10 10 2
8 1 2 2 1
9 1 2 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 828 13982 3932
1 834 34820 1799
2 301 60826 5732
3 812 1872 1147
4 844 3140 1404
5 392 0 0
6 407 30924 3532
7 1346 78091 14931
8 0 2112 0
9 429 0 0
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 4849 5 0 0
1 4277 106 0 0
2 3546 0 0 0
3 5493 4 0 0
4 1781 4 0 0
5 3799 12 0 0
6 3477 81 0 0
7 3302 4 0 0
8 723 0 0 0
9 3168 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 65233
1 0 2 58276
2 0 3 11239
3 0 4 82695
4 0 5 6360
5 0 6 90257
6 0 7 32322
7 0 8 10555
8 0 9 46285
9 0 10 11847
physicalDamageDealtToChampions physicalDamageTaken role \
0 11129 8195 SOLO
1 2872 13833 NONE
2 1120 6405 SOLO
3 8089 4911 CARRY
4 1059 6389 SUPPORT
5 6510 9746 SOLO
6 3542 10029 NONE
7 1006 5905 SOLO
8 4071 3871 CARRY
9 4546 8732 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 2 12 38
1 2 4 11 11 63
2 5 12 5 4 208
3 2 4 4 7 229
4 3 14 3 4 94
5 4 4 4 6 253
6 2 14 12 11 186
7 3 4 1 12 326
8 1 7 1 4 64
9 3 4 3 3 176
summonerName teamEarlySurrendered teamId teamPosition \
0 HenchRedBuff False 100 TOP
1 DZP Black Knight False 100 JUNGLE
2 Wraìth False 100 MIDDLE
3 Mipha False 100 BOTTOM
4 Lunar Rush False 100 UTILITY
5 StalwartHide False 200 TOP
6 GG Drago False 200 JUNGLE
7 Rotome False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 Davii False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 8 1367 80725 15061
1 18 1367 103401 5030
2 20 1367 84403 6955
3 13 1367 98142 9445
4 21 1367 15539 2784
5 16 1367 91249 7502
6 23 1367 69214 7848
7 37 1367 90635 15937
8 7 1367 51237 4071
9 19 1367 25516 4759
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 13722 2369 137 88
1 18272 9014 20 355
2 10534 1551 116 147
3 10759 3717 161 95
4 8371 998 27 40
5 13546 2656 143 79
6 13822 4683 14 529
7 9252 1924 146 82
8 4595 836 97 58
9 12528 1696 30 62
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 146 1 1510
1 51 4 10305
2 135 2 12337
3 77 2 13574
4 43 4 6038
5 35 1 992
6 28 1 5967
7 0 1 1989
8 0 2 2840
9 94 1 13668
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 678 1 3
1 358 161 0 3
2 102 582 0 3
3 208 354 1 3
4 320 200 0 3
5 992 0 1 2
6 773 316 1 2
7 0 44 0 2
8 0 0 1 2
9 213 628 0 2
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 20 1 1 8 False
1 13 5 1 5 False
2 9 0 0 7 False
3 16 3 5 6 False
4 45 2 5 18 False
5 14 1 0 8 True
6 20 0 4 7 True
7 4 3 0 2 True
8 9 0 0 7 True
9 52 1 6 25 True ,
assists baronKills bountyLevel champLevel championName \
0 11 0 6 18 Darius
1 21 1 0 18 FiddleSticks
2 26 0 6 18 Kayle
3 14 1 0 18 Jhin
4 31 0 0 18 Thresh
5 7 0 0 18 Riven
6 10 1 0 18 Rengar
7 9 0 0 18 Neeko
8 13 0 0 17 Vayne
9 23 0 0 18 Zyra
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 1275 10271 1275
1 1930 28771 1930
2 11037 44885 11037
3 1371 14538 1371
4 2312 6693 2312
5 3427 14692 3427
6 0 37826 0
7 4773 12952 4773
8 2482 10039 2482
9 4148 18594 4148
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 0 0 False False
1 12 0 2 False False
2 4 2 1 False False
3 8 0 2 False False
4 12 0 0 False False
5 8 0 0 True False
6 11 7 2 False True
7 9 0 0 False False
8 11 0 1 False False
9 9 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 20342 TOP 0
1 False 15616 JUNGLE 0
2 False 22779 MIDDLE 1
3 False 16159 BOTTOM 0
4 False 13116 UTILITY 0
5 False 17401 TOP 0
6 False 17242 JUNGLE 0
7 False 14151 MIDDLE 1
8 False 16911 BOTTOM 0
9 False 16792 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 3065 3193 3078 3047 3053 3075 3363
1 1 6653 3157 3020 2031 3135 3165 3330
2 1 3165 3157 4633 3006 3115 3041 3363
3 1 6671 3033 3009 6676 3094 3026 3340
4 1 3075 3158 3001 6656 3853 3044 3364
5 1 3158 6630 3071 6333 3156 3035 3340
6 1 1033 6630 3111 3508 6609 3156 3364
7 1 3157 3152 3165 1058 3020 4628 3363
8 1 6672 3153 3006 3046 3124 3123 3340
9 1 3853 3157 3135 3020 6653 3089 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 3 16 6 2
1 1 6 3 1
2 3 14 6 2
3 3 9 3 1
4 0 3 0 1
5 1 7 5 1
6 3 11 2 2
7 1 3 2 2
8 4 12 3 2
9 2 10 5 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 862 2766 405
1 362 185613 23264
2 997 292618 32172
3 658 9208 2251
4 446 38493 17586
5 1384 0 0
6 784 60854 1853
7 661 173012 16896
8 494 202 202
9 823 143363 54364
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 15194 16 0 0
1 20207 175 0 0
2 12054 32 0 0
3 9025 12 0 0
4 22086 0 0 0
5 19969 53 1 0
6 15422 219 1 0
7 16162 0 1 0
8 14922 4 1 0
9 13412 8 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 172843
1 0 2 8870
2 0 3 66542
3 0 4 179991
4 0 5 10584
5 0 6 206489
6 0 7 196688
7 0 8 19405
8 0 9 114588
9 0 10 9012
physicalDamageDealtToChampions physicalDamageTaken role \
0 20567 30145 SOLO
1 101 25713 NONE
2 7193 15657 SOLO
3 15828 10358 CARRY
4 1439 16213 SUPPORT
5 24382 18664 NONE
6 19876 39835 NONE
7 834 10626 SOLO
8 16831 9955 CARRY
9 1762 7043 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 7 4 11 6 252
1 16 11 6 4 135
2 4 4 2 12 326
3 3 7 4 4 64
4 7 4 10 14 177
5 8 14 6 4 283
6 14 11 5 4 264
7 4 4 5 14 165
8 9 7 5 4 334
9 6 14 5 4 211
summonerName teamEarlySurrendered teamId teamPosition \
0 StalwartHide False 100 TOP
1 SlothoftheAbyss False 100 JUNGLE
2 Rotome False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 DarkZexi False 100 UTILITY
5 aaronclaron False 200 TOP
6 ChingChongMando False 200 JUNGLE
7 Fatalpixel23 False 200 MIDDLE
8 Wryzen False 200 BOTTOM
9 umami False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 29 2849 190282 30877
1 30 2849 206899 23516
2 15 2849 414522 42718
3 26 2849 189256 18136
4 67 2849 54614 21186
5 30 2849 208981 26154
6 14 2849 272107 22715
7 38 2849 198673 19371
8 6 2849 143934 26392
9 97 2849 156012 56912
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 51473 20655 211 188
1 47161 21832 26 714
2 29996 22028 357 524
3 20244 4119 198 172
4 42323 7421 33 220
5 46342 10574 210 168
6 57056 25625 29 403
7 27597 4313 252 306
8 28413 7966 160 14
9 22598 5325 88 282
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 272 1 14672
1 444 1 12414
2 192 5 55359
3 231 3 56
4 406 1 5536
5 387 1 2492
6 483 1 14565
7 326 1 6255
8 406 4 29143
9 284 1 3636
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 9904 6133 1 7
1 150 1240 1 7
2 3352 2284 3 7
3 56 860 0 7
4 2161 4023 1 7
5 1772 7708 3 6
6 985 1799 0 6
7 1640 809 2 6
8 9358 3535 0 6
9 786 2141 2 6
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 39 0 4 18 True
1 55 0 2 3 True
2 39 2 6 11 True
3 22 0 2 13 True
4 108 0 9 62 True
5 27 0 1 14 False
6 42 7 8 9 False
7 25 0 1 17 False
8 25 0 2 14 False
9 105 2 11 37 False ,
assists baronKills bountyLevel champLevel championName \
0 8 0 7 17 Malphite
1 15 1 0 15 FiddleSticks
2 5 0 3 17 Kayle
3 8 0 1 14 Kaisa
4 22 0 1 14 Rell
5 4 0 0 15 Riven
6 5 0 0 17 Udyr
7 0 0 1 14 Lux
8 8 0 0 14 Xayah
9 6 0 0 12 Leona
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2859 7609 2859
1 0 10692 0
2 6974 13214 6974
3 148 10436 148
4 0 2552 0
5 0 1121 0
6 1317 27475 1317
7 2126 3261 2126
8 1883 4013 1883
9 68 125 68
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 2 0 0 False False
1 4 0 2 False False
2 4 1 0 False False
3 9 0 0 False False
4 7 1 0 False False
5 7 1 0 False False
6 4 0 2 False False
7 8 0 0 False False
8 10 0 0 False True
9 11 0 0 True False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False True False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 12319 TOP 0
1 True 10625 JUNGLE 0
2 True 14184 MIDDLE 0
3 True 10392 BOTTOM 0
4 True 8866 UTILITY 0
5 True 8879 TOP 0
6 True 13797 JUNGLE 0
7 True 8316 MIDDLE 0
8 True 13700 BOTTOM 0
9 True 7170 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3075 2033 3748 3068 3047 1033 3340
1 0 6653 3020 3157 2031 3135 0 3330
2 0 1054 6673 3006 3508 3031 3086 3340
3 0 6676 3086 1042 3006 6672 1055 3340
4 0 3742 3117 3076 6664 3860 0 3364
5 0 6630 3111 3071 1054 0 0 3340
6 0 6664 3742 3100 3111 4401 1052 3364
7 0 1056 6655 3020 3145 1058 0 3340
8 0 3508 6675 6671 1018 1038 3006 3363
9 0 3860 3190 3117 3050 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 10 7 2
1 1 6 4 1
2 2 12 9 2
3 1 8 3 2
4 1 4 2 2
5 0 1 0 1
6 3 9 4 3
7 0 3 0 1
8 2 10 5 3
9 1 3 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 935 68833 15787
1 620 123086 16648
2 682 71263 9323
3 456 8452 5045
4 409 26641 13869
5 728 0 0
6 642 130154 7993
7 575 74569 7619
8 276 1767 1767
9 427 3855 2918
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 4383 4 0 0
1 8044 126 0 0
2 3797 16 0 0
3 3031 0 0 0
4 3781 0 0 0
5 10757 16 0 0
6 14462 201 0 0
7 9457 0 0 0
8 14547 9 0 0
9 13344 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 58058
1 0 2 6364
2 0 3 104382
3 0 4 60749
4 0 5 6174
5 0 6 110239
6 0 7 73288
7 0 8 14393
8 0 9 149090
9 0 10 5634
physicalDamageDealtToChampions physicalDamageTaken role \
0 10095 15492 SOLO
1 138 21128 NONE
2 10548 7783 SOLO
3 10717 13292 CARRY
4 2193 18188 SUPPORT
5 7794 12985 SOLO
6 6890 22225 NONE
7 911 5409 SOLO
8 33255 10108 CARRY
9 2039 9236 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 4 12 252
1 16 11 4 4 135
2 3 4 4 12 326
3 3 7 2 4 64
4 5 4 5 3 177
5 2 4 2 12 81
6 17 11 4 4 378
7 3 4 3 14 104
8 3 4 5 7 395
9 4 14 2 4 62
summonerName teamEarlySurrendered teamId teamPosition \
0 StalwartHide False 100 TOP
1 SlothoftheAbyss False 100 JUNGLE
2 Rotome False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 DarkZexi False 100 UTILITY
5 d4rks4suk3 False 200 TOP
6 Volfstone False 200 JUNGLE
7 Little Anthonio False 200 MIDDLE
8 Hey Im Adams False 200 BOTTOM
9 Loli Main False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 30 1744 136147 25882
1 49 1744 136673 17367
2 7 1744 175647 19872
3 0 1744 73639 17258
4 53 1744 36442 16062
5 24 1744 112734 7794
6 50 1744 224245 16439
7 43 1744 101630 9304
8 36 1744 155542 35023
9 43 1744 15392 6088
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 21063 5795 179 519
1 29886 16227 24 753
2 12079 3317 196 273
3 16677 2771 104 0
4 22674 4913 43 108
5 24220 2502 174 117
6 37497 17356 35 445
7 14966 442 136 505
8 24758 6204 182 40
9 23167 1044 31 57
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 81 1 9255
1 84 1 7222
2 100 4 0
3 255 2 4437
4 179 5 3626
5 226 1 2495
6 165 1 20803
7 280 1 12668
8 288 3 4685
9 283 4 5902
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 1187 1 4
1 580 713 0 4
2 0 498 2 4
3 1495 353 0 4
4 0 705 0 4
5 0 477 0 4
6 1555 809 1 4
7 773 100 1 4
8 0 103 1 4
9 1129 586 0 4
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 17 0 2 9 True
1 27 0 0 1 True
2 21 1 2 9 True
3 11 0 0 8 True
4 48 1 3 30 True
5 27 1 2 9 False
6 19 0 2 3 False
7 14 0 1 9 False
8 17 0 0 9 False
9 29 0 3 11 False ,
assists baronKills bountyLevel champLevel championName \
0 8 0 1 17 Mordekaiser
1 15 0 0 18 XinZhao
2 21 1 0 18 Cassiopeia
3 11 0 9 18 Draven
4 39 0 0 16 Soraka
5 8 0 0 17 MonkeyKing
6 20 0 0 15 FiddleSticks
7 10 0 0 17 Lucian
8 8 0 0 14 Kaisa
9 22 0 0 15 Leona
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 4708 8307 4708
1 4667 14074 4667
2 1584 16887 1584
3 4782 23453 4782
4 1981 3080 1981
5 3441 10123 3441
6 372 13922 372
7 2420 17147 2420
8 2935 8770 2935
9 4607 5303 4607
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 9 0 0 False False
1 10 0 0 False False
2 7 0 1 False False
3 12 1 1 False True
4 6 7 0 True False
5 4 1 2 False False
6 14 0 1 False False
7 9 1 1 False False
8 12 0 0 False False
9 12 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False True False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 12604 TOP 0
1 False 15098 JUNGLE 1
2 False 13274 MIDDLE 0
3 False 26351 BOTTOM 1
4 False 11183 UTILITY 0
5 False 15605 TOP 0
6 False 11505 JUNGLE 1
7 False 14184 MIDDLE 0
8 False 13637 BOTTOM 0
9 False 12631 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 4637 4633 3047 3075 3067 1052 3340
1 1 3115 3158 3157 4633 3100 1058 3340
2 1 3040 3157 6653 3116 1082 0 3340
3 1 3094 6673 3072 3031 6676 3036 3340
4 1 3860 2065 3742 6616 3009 0 3364
5 2 3153 3071 1055 3124 3078 3006 3340
6 2 6653 3020 3157 2031 3135 1028 3330
7 2 3508 6671 3033 3031 0 3006 3363
8 2 6671 1031 6676 3006 3085 3033 3340
9 2 3075 3117 3068 3860 3001 3044 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 5 2 2
1 2 9 3 2
2 2 4 2 1
3 9 33 9 5
4 0 0 0 0
5 2 13 8 2
6 1 5 2 2
7 2 8 3 3
8 4 11 2 2
9 1 7 3 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 371 93995 12457
1 562 75600 7639
2 800 125448 17424
3 280 1848 950
4 768 25206 6797
5 1003 28032 6591
6 554 126307 27597
7 565 7982 3644
8 536 12689 5754
9 390 47901 16817
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 8150 12 0 0
1 16466 173 0 0
2 12319 39 0 0
3 16468 16 0 0
4 11189 0 0 0
5 13581 27 1 0
6 10787 115 1 0
7 7751 28 1 1
8 5834 1 1 0
9 9626 0 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 16291
1 0 2 108385
2 0 3 9751
3 0 4 243428
4 0 5 7107
5 0 6 126668
6 0 7 5844
7 0 8 173235
8 0 9 80000
9 0 10 17045
physicalDamageDealtToChampions physicalDamageTaken role \
0 2268 24156 SOLO
1 13675 40019 NONE
2 549 14223 SOLO
3 65592 26916 CARRY
4 882 9819 SUPPORT
5 28923 23871 SOLO
6 167 25292 NONE
7 26953 18117 SOLO
8 10912 21291 CARRY
9 5265 25765 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 6 4 9 6 124
1 5 4 18 11 260
2 2 12 5 4 339
3 6 4 8 14 163
4 4 4 8 7 326
5 8 14 3 4 83
6 9 11 4 4 135
7 6 4 6 14 113
8 3 7 4 4 64
9 5 4 9 3 177
summonerName teamEarlySurrendered teamId teamPosition \
0 aws007death False 100 TOP
1 iShiroRonin False 100 JUNGLE
2 OldYogg False 100 MIDDLE
3 Girthworm Slim False 100 BOTTOM
4 Kesselin False 100 UTILITY
5 SleeperSlept False 200 TOP
6 SlothoftheAbyss False 200 JUNGLE
7 DaDerpDude False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 DarkZexi False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 4 2287 112091 15007
1 30 2287 194802 24145
2 43 2287 142357 18634
3 26 2287 253980 70059
4 58 2287 37757 8474
5 24 2287 172893 37040
6 41 2287 139261 27930
7 1 2287 185083 31783
8 0 2287 93672 16867
9 79 2287 71487 22166
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 33726 7422 140 51
1 57502 30400 27 681
2 26738 7464 161 518
3 43779 5740 183 174
4 21144 21671 45 271
5 38640 10727 184 74
6 38074 13574 20 569
7 26987 8396 198 44
8 28450 6357 121 11
9 37849 7707 67 172
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 303 1 1804
1 370 1 10815
2 293 1 7158
3 409 1 8703
4 220 5 5443
5 146 1 18191
6 460 1 7109
7 359 1 3866
8 345 2 982
9 283 1 6539
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 281 1418 2 6
1 2830 1016 2 6
2 660 196 1 6
3 3516 394 2 6
4 794 135 1 6
5 1524 1188 1 9
6 166 1993 0 9
7 1185 1118 2 9
8 200 1324 0 9
9 84 2457 3 9
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 21 0 0 11 True
1 28 0 2 11 True
2 21 0 2 12 True
3 29 1 2 10 True
4 63 7 4 30 True
5 35 1 0 10 False
6 34 0 2 2 False
7 32 1 5 12 False
8 19 0 2 11 False
9 55 0 2 35 False ,
assists baronKills bountyLevel champLevel championName \
0 0 0 0 12 Garen
1 1 0 0 8 Taliyah
2 0 0 0 9 Teemo
3 0 0 0 8 Aphelios
4 2 0 0 9 Leona
5 3 0 6 9 Ashe
6 3 0 5 11 Udyr
7 5 0 2 10 Leblanc
8 1 0 1 11 Gragas
9 12 0 1 9 Janna
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 1171 1171 1171
1 0 1533 0
2 90 90 90
3 852 852 852
4 1473 1473 1473
5 3139 3139 3139
6 0 13293 0
7 669 669 669
8 610 2766 610
9 155 518 155
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 1 2 0 False False
1 3 0 0 False False
2 6 2 0 False False
3 6 0 0 False False
4 5 1 0 False False
5 3 0 0 False False
6 1 0 2 False True
7 1 0 0 False False
8 1 0 0 False False
9 0 3 0 True False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 5495 TOP 0
1 True 4469 JUNGLE 0
2 True 4298 MIDDLE 0
3 True 4393 BOTTOM 0
4 True 4403 UTILITY 0
5 True 7395 BOTTOM 0
6 True 6996 JUNGLE 0
7 True 5275 MIDDLE 0
8 True 4991 TOP 0
9 True 5280 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1054 6631 3006 0 0 0 3340
1 0 3020 2031 3802 1026 0 0 3340
2 0 1056 2031 3802 3020 0 0 3340
3 0 6670 1055 1018 3006 1037 0 3340
4 0 3855 3117 0 3190 0 0 3340
5 0 1055 6671 3006 1043 1036 1037 3340
6 0 6664 2031 3111 3066 1028 1029 3340
7 0 6656 2033 1001 1033 0 0 3340
8 0 1056 3158 1029 3145 1026 1028 3340
9 0 3853 4005 1052 1004 3009 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 1 0 1
1 0 0 0 0
2 0 1 0 1
3 0 1 0 1
4 0 2 0 1
5 2 8 6 2
6 1 6 5 1
7 2 5 3 1
8 0 1 0 1
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 1011 0 0
1 688 53227 3191
2 406 19646 6101
3 250 726 440
4 421 4510 2389
5 540 534 434
6 254 43093 2988
7 737 15541 6191
8 868 39357 3501
9 0 15918 7008
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 4030 0 0 0
1 3626 86 0 0
2 6001 0 0 0
3 4141 0 0 0
4 3493 0 0 0
5 3262 0 0 0
6 4130 104 0 0
7 4150 0 0 0
8 288 0 0 0
9 1849 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 49050
1 0 2 8623
2 0 3 10245
3 0 4 26124
4 0 5 6961
5 0 6 42277
6 0 7 32105
7 0 8 6374
8 0 9 11193
9 0 10 2374
physicalDamageDealtToChampions physicalDamageTaken role \
0 7823 3357 DUO
1 94 9585 SUPPORT
2 1386 3170 SUPPORT
3 3309 3180 SUPPORT
4 1335 5119 SUPPORT
5 5405 4945 SUPPORT
6 2955 10779 SUPPORT
7 1060 4998 SUPPORT
8 1165 8056 DUO
9 1609 4008 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 1 4 1 12 225
1 10 11 2 4 134
2 3 4 1 14 125
3 2 7 1 4 64
4 2 4 3 3 177
5 2 4 2 7 102
6 3 4 9 11 45
7 3 4 4 14 175
8 2 12 0 4 105
9 2 3 1 4 194
summonerName teamEarlySurrendered teamId teamPosition \
0 HanCrusader False 100 TOP
1 SlothoftheAbyss False 100 JUNGLE
2 SlickLatino False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 DarkZexi False 100 UTILITY
5 OwOchapeau False 200 BOTTOM
6 The Great Baxley False 200 JUNGLE
7 Wynnice False 200 MIDDLE
8 schwartz64 False 200 TOP
9 DipolarRocket68 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 25 1030 49669 8441
1 2 1030 67829 3368
2 18 1030 35516 7612
3 5 1030 26851 3749
4 20 1030 16628 3724
5 17 1030 46506 5839
6 17 1030 83238 6562
7 17 1030 22530 7865
8 11 1030 51976 4666
9 35 1030 18293 8617
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 7603 722 135 41
1 13307 6269 1 313
2 9992 699 73 156
3 7332 1158 79 105
4 8702 0 25 52
5 8252 1456 91 358
6 15033 8764 6 124
7 9187 1586 53 25
8 8963 3809 107 240
9 5857 3170 9 167
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 0 1 618
1 69 1 5979
2 99 1 5624
3 105 2 0
4 106 0 5156
5 53 2 3695
6 12 1 8039
7 27 1 614
8 32 2 1425
9 0 7 0
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 618 216 0 1
1 83 96 0 1
2 124 820 0 1
3 0 10 0 1
4 0 90 0 1
5 0 44 1 0
6 618 124 0 0
7 614 38 0 0
8 0 618 0 0
9 0 0 0 0
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 11 2 1 7 False
1 8 0 1 4 False
2 14 2 0 7 False
3 6 0 0 4 False
4 17 1 2 10 False
5 6 0 1 3 True
6 12 0 0 5 True
7 8 0 1 5 True
8 3 0 1 2 True
9 26 3 4 13 True ,
assists baronKills bountyLevel champLevel championName \
0 2 0 0 14 Quinn
1 6 0 0 14 Kayn
2 6 0 0 14 Yasuo
3 3 0 0 13 Samira
4 6 0 0 11 Ivern
5 6 0 5 18 Yone
6 22 0 0 16 Nunu
7 5 0 7 16 Kayle
8 3 0 1 12 Kaisa
9 14 0 1 13 Morgana
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 7562 7562 7562
1 0 16781 0
2 417 417 417
3 663 663 663
4 0 0 0
5 5015 9652 5015
6 2767 17523 2767
7 8968 14163 8968
8 2984 7880 2984
9 1532 4866 1532
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 12 0 0 False False
1 7 0 0 False True
2 8 1 0 False False
3 7 0 0 True False
4 7 6 0 True False
5 5 1 0 False False
6 2 0 3 False False
7 3 2 1 False False
8 3 0 0 False False
9 4 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 True False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 11519 TOP 0
1 False 9910 JUNGLE 0
2 False 9800 MIDDLE 0
3 False 9144 BOTTOM 0
4 False 7565 UTILITY 0
5 False 15863 TOP 0
6 False 11589 JUNGLE 0
7 False 13907 MIDDLE 0
8 False 10421 BOTTOM 2
9 False 7871 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 2 3153 6672 3006 6676 0 0 3340
1 2 6693 1036 3158 3179 3134 1028 3363
2 2 3031 3006 6673 0 0 1055 3340
3 2 1055 6673 3006 6676 3123 0 3340
4 2 6617 3853 3158 6616 1052 0 3364
5 0 1055 3072 3006 6673 3031 1036 3340
6 0 3068 3742 3047 3076 1028 0 3340
7 0 1054 3006 3115 4633 1082 3191 3363
8 0 6671 1055 3006 6676 3086 1042 3363
9 0 3853 3020 6653 3191 1052 2424 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 6 2 1
1 1 3 2 2
2 1 2 2 1
3 0 3 0 1
4 1 3 2 1
5 3 15 6 1
6 1 2 2 1
7 3 13 7 4
8 2 8 4 2
9 1 3 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 409 77 77
1 657 8629 1989
2 805 13526 1637
3 656 8177 2779
4 667 5437 4232
5 384 33683 7285
6 728 62361 9545
7 823 102752 14108
8 936 8124 3128
9 655 28022 8997
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 9043 0 1 0
1 8086 139 1 0
2 10608 8 1 0
3 11421 0 1 0
4 6911 0 1 0
5 1940 32 0 0
6 4988 124 0 0
7 1712 16 0 0
8 2198 4 0 0
9 2081 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 125711
1 0 2 130015
2 0 3 120924
3 0 4 71895
4 0 5 4128
5 0 6 190222
6 0 7 26498
7 0 8 39222
8 0 9 75177
9 0 10 2695
physicalDamageDealtToChampions physicalDamageTaken role \
0 14640 14530 SOLO
1 11017 18019 NONE
2 13864 12873 SOLO
3 13581 10636 CARRY
4 2692 8932 SUPPORT
5 26533 20923 DUO
6 2355 25540 NONE
7 4734 14991 DUO
8 9609 10664 CARRY
9 1055 7482 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 5 14 4 4 190
1 15 11 4 4 75
2 7 14 5 4 169
3 3 4 5 7 210
4 5 4 5 3 110
5 4 4 6 14 251
6 2 4 19 11 168
7 4 4 3 12 324
8 1 7 2 4 63
9 5 14 3 4 158
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 Bueno Brian False 100 TOP 22
1 RexTheLord False 100 JUNGLE 8
2 wildlion1 False 100 MIDDLE 20
3 TrollKing023 False 100 BOTTOM 0
4 PatimusGG False 100 UTILITY 40
5 StalwartHide False 200 TOP 22
6 Coolgum15 False 200 JUNGLE 32
7 Rotome False 200 MIDDLE 9
8 Dublaiar False 200 BOTTOM 1
9 AlexAve False 200 UTILITY 37
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1743 146911 16884
1 1743 152837 13530
2 1743 138309 16974
3 1743 88828 16360
4 1743 9955 7175
5 1743 239076 38730
6 1743 149968 12560
7 1743 144076 19643
8 1743 83825 12923
9 1743 31183 10518
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 25872 2776 186 100
1 28109 11028 43 234
2 25073 5523 177 111
3 22790 5133 151 0
4 16241 2090 8 149
5 23595 6685 221 121
6 31269 20620 32 330
7 18663 7111 212 337
8 13225 4141 135 23
9 10184 1840 8 58
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 379 1 21122
1 208 1 14192
2 268 1 3858
3 219 2 8755
4 212 5 390
5 169 1 15170
6 67 1 61108
7 120 5 2100
8 79 2 522
9 128 5 466
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 2166 2299 2 9
1 524 2003 0 9
2 1473 1590 0 9
3 0 732 0 9
4 250 397 0 9
5 4910 731 2 3
6 660 740 1 3
7 801 1958 5 3
8 184 362 1 3
9 466 620 0 3
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 12 0 1 6 False
1 19 0 8 1 False
2 23 2 2 9 False
3 15 0 3 8 False
4 48 6 5 19 False
5 12 1 1 10 True
6 15 0 2 7 True
7 14 3 1 10 True
8 15 0 0 9 True
9 29 0 1 12 True ,
assists baronKills bountyLevel champLevel championName \
0 3 0 0 16 Sett
1 9 0 0 14 Nunu
2 4 0 0 16 Kayle
3 8 0 0 14 Jhin
4 4 0 2 13 Lulu
5 11 0 0 16 Aatrox
6 5 1 0 15 MasterYi
7 5 0 0 16 Cassiopeia
8 6 0 0 16 Kaisa
9 10 0 1 13 Thresh
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2592 5465 2592
1 263 13662 263
2 3432 7822 3432
3 0 1101 0
4 0 0 0
5 4016 9624 4016
6 2314 24177 2314
7 2415 3264 2415
8 6601 26224 6601
9 491 1692 491
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 1 0 False False
1 9 1 0 True False
2 6 1 1 False True
3 5 0 0 False False
4 8 0 0 False False
5 3 5 1 False False
6 8 2 3 False False
7 8 2 0 False False
8 2 1 0 False False
9 3 3 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 13220 TOP 0
1 False 9361 JUNGLE 0
2 False 15259 MIDDLE 0
3 False 7797 BOTTOM 0
4 False 7898 UTILITY 0
5 False 10833 TOP 1
6 False 14076 JUNGLE 0
7 False 12896 MIDDLE 1
8 False 15576 BOTTOM 0
9 False 8377 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 2 1055 6693 6676 3006 3072 1038 3340
1 2 3068 2031 3111 3075 3066 0 3340
2 2 3089 3157 3006 4633 3115 0 3363
3 2 6671 3009 1018 3134 1037 1055 3340
4 2 3853 6617 3158 6616 3114 0 3364
5 0 6630 1054 3053 3047 3211 1028 3364
6 0 6691 3006 6676 3153 1031 3133 3340
7 0 3157 1058 1058 3116 6655 3070 3340
8 0 6671 2420 3046 3031 3006 6676 3363
9 0 3857 3190 3050 3117 3067 2055 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 4 10 3 1
1 0 0 0 0
2 5 11 3 2
3 0 0 0 0
4 1 3 2 1
5 0 1 0 1
6 5 15 4 2
7 2 6 2 2
8 1 10 9 2
9 0 3 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 536 447 0
1 419 63986 7485
2 702 100282 16054
3 895 1560 959
4 375 22598 5235
5 786 0 0
6 452 4783 124
7 494 124622 26535
8 1841 15886 7276
9 846 8560 3986
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 5699 8 1 0
1 9488 130 1 0
2 13684 16 1 0
3 4833 4 1 0
4 5897 0 1 0
5 4171 4 0 0
6 6310 144 0 0
7 11015 12 0 0
8 5839 23 0 0
9 4941 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 133191
1 0 2 25545
2 0 3 35550
3 0 4 60269
4 0 5 3584
5 0 6 108110
6 0 7 137946
7 0 8 8760
8 0 9 186391
9 0 10 7114
physicalDamageDealtToChampions physicalDamageTaken role \
0 28500 22927 SOLO
1 1019 28354 NONE
2 3933 11234 SOLO
3 6429 7571 CARRY
4 1060 11457 SUPPORT
5 11140 18725 SOLO
6 21237 21292 NONE
7 854 13716 SOLO
8 18873 10810 CARRY
9 1147 6953 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 5 4 6 14 251
1 3 4 20 11 168
2 4 4 4 12 324
3 3 7 3 4 63
4 5 4 4 14 127
5 3 12 3 4 288
6 18 11 7 14 355
7 6 6 5 4 57
8 4 7 3 4 267
9 3 4 4 14 96
summonerName teamEarlySurrendered teamId teamPosition \
0 StalwartHide False 100 TOP
1 Coolgum15 False 100 JUNGLE
2 Rotome False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 Alece False 100 UTILITY
5 LiNKLANDiN False 200 TOP
6 3l Vato False 200 JUNGLE
7 iNNovationGecko False 200 MIDDLE
8 Thea ssaulterqfe False 200 BOTTOM
9 Carol19 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 27 2000 141161 31092
1 27 2000 157564 8980
2 8 2000 138153 20687
3 24 2000 62088 7449
4 29 2000 33246 6689
5 13 2000 117725 11140
6 6 2000 166045 26410
7 54 2000 133602 27507
8 2 2000 205732 26517
9 23 2000 20391 5613
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 30138 7492 154 208
1 39992 16675 23 338
2 25465 7861 203 343
3 13358 1838 112 91
4 18207 2544 29 289
5 24127 5531 168 120
6 29707 12632 17 102
7 25032 6954 191 599
8 18025 8940 235 46
9 12107 537 27 60
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 272 1 7521
1 258 1 68033
2 193 5 2321
3 88 2 258
4 228 5 7064
5 116 1 9615
6 236 1 23315
7 231 1 220
8 50 2 3455
9 98 4 4716
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 2592 1511 1 10
1 476 2149 0 10
2 699 546 0 10
3 60 953 0 10
4 394 852 0 10
5 0 1230 1 2
6 5048 2103 0 2
7 118 299 1 2
8 367 1376 2 2
9 480 211 1 2
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 30 1 4 12 False
1 23 1 2 9 False
2 19 1 2 8 False
3 16 0 1 8 False
4 36 0 5 15 False
5 32 5 7 10 True
6 27 2 2 12 True
7 27 2 2 11 True
8 23 2 1 9 True
9 55 4 2 23 True ,
assists baronKills bountyLevel champLevel championName \
0 7 0 0 17 Teemo
1 4 0 0 15 Sion
2 6 0 0 16 Annie
3 3 0 0 14 Kaisa
4 6 0 0 14 Zyra
5 9 0 6 18 Ryze
6 19 0 0 18 Nunu
7 7 0 3 18 Talon
8 7 1 3 16 Jhin
9 23 0 1 16 Maokai
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2976 4665 2976
1 777 16368 777
2 796 10499 796
3 2778 4325 2778
4 1039 2408 1039
5 4702 36407 4702
6 2366 20970 2366
7 6109 19483 6109
8 5244 13704 5244
9 1423 4756 1423
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 11 1 0 False False
1 6 2 0 False False
2 14 0 0 False False
3 9 1 0 False False
4 10 0 0 False False
5 6 0 0 False False
6 5 0 4 True False
7 3 0 1 False True
8 5 0 0 False False
9 8 5 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 True False False
7 False False False
8 True False False
9 False True False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 13050 TOP 0
1 False 11999 JUNGLE 0
2 False 13687 MIDDLE 0
3 False 10579 BOTTOM 0
4 False 10048 UTILITY 0
5 False 16871 TOP 0
6 False 14587 JUNGLE 0
7 False 15566 MIDDLE 0
8 False 15793 BOTTOM 0
9 False 11295 UTILITY 1
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 6653 2033 3020 4637 3089 3916 3340
1 1 6662 3142 0 3111 3076 6676 3340
2 1 3020 6655 2420 3135 3089 3108 3364
3 1 1055 3006 6676 6672 3086 1036 3340
4 1 3853 6653 3116 3158 1011 1052 3364
5 0 3040 6656 1058 3158 4629 3102 3364
6 0 3111 4401 3068 3001 3742 1028 3340
7 0 6693 3142 3111 3814 6694 3077 3340
8 0 6671 3009 6676 3094 3036 1031 3340
9 0 4005 3857 3020 4637 2055 4401 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 7 3 1
1 2 6 3 2
2 1 7 3 2
3 0 3 0 1
4 1 4 3 1
5 2 11 6 2
6 0 4 0 1
7 3 14 5 1
8 4 18 6 2
9 0 3 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 655 120998 34122
1 709 41741 2452
2 365 121204 23877
3 486 5724 2224
4 424 68647 29427
5 674 282709 32607
6 583 84295 9878
7 1336 0 0
8 663 6422 2524
9 498 47875 17753
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 20579 9 1 0
1 16641 137 1 0
2 10348 18 1 0
3 6433 3 1 0
4 11227 4 1 0
5 21785 30 0 0
6 19122 147 0 0
7 14918 4 0 0
8 18107 12 0 0
9 21617 4 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 29851
1 0 2 152730
2 0 3 9773
3 0 4 112410
4 0 5 2732
5 0 6 13756
6 0 7 31395
7 0 8 159548
8 0 9 102115
9 0 10 8756
physicalDamageDealtToChampions physicalDamageTaken role \
0 3539 11801 SOLO
1 13029 20621 DUO
2 815 16882 DUO
3 9208 13495 DUO
4 862 9428 DUO
5 897 10518 SOLO
6 1935 29238 NONE
7 27409 7416 SOLO
8 20755 4011 CARRY
9 1753 15816 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 5 4 7 14 247
1 13 11 2 4 264
2 5 14 4 4 182
3 2 4 2 7 120
4 4 4 5 14 178
5 5 4 6 12 251
6 2 4 22 11 168
7 4 4 8 14 126
8 4 7 3 4 63
9 5 4 4 14 324
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 Jobili False 100 TOP 45
1 theRytex False 100 JUNGLE 34
2 guacqt False 100 MIDDLE 26
3 Fledge8 False 100 BOTTOM 0
4 lalaland1121 False 100 UTILITY 66
5 StalwartHide False 200 TOP 37
6 Coolgum15 False 200 JUNGLE 29
7 Alece False 200 MIDDLE 3
8 Dublaiar False 200 BOTTOM 19
9 Rotome False 200 UTILITY 81
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 2246 155256 39683
1 2246 205981 16568
2 2246 133764 25998
3 2246 125979 11875
4 2246 72356 31265
5 2246 301001 34538
6 2246 202123 12214
7 2246 172116 28087
8 2246 110001 24328
9 2246 61717 19891
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 32976 4247 194 488
1 38292 8016 49 1157
2 27846 930 180 202
3 20657 3845 180 0
4 21231 2324 44 246
5 34587 7696 240 114
6 49835 30052 54 380
7 22840 5311 191 173
8 22337 6945 134 112
9 38783 13480 42 380
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 485 1 4407
1 151 1 11510
2 499 1 2786
3 256 2 7844
4 304 1 976
5 225 1 4534
6 147 1 86433
7 139 1 12567
8 199 3 1463
9 220 5 5085
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 2022 595 0 9
1 1086 1030 2 9
2 1306 615 1 9
3 442 728 0 9
4 976 575 0 9
5 1034 2284 2 3
6 400 1474 2 3
7 677 505 3 3
8 1048 218 0 3
9 384 1350 2 3
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 21 1 1 9 False
1 42 3 0 13 False
2 15 0 0 8 False
3 20 1 2 10 False
4 64 0 2 31 False
5 11 0 0 2 True
6 22 0 1 9 True
7 17 0 1 10 True
8 17 0 3 9 True
9 55 6 4 23 True ,
assists baronKills bountyLevel champLevel championName \
0 9 0 0 15 Gangplank
1 4 1 3 14 MasterYi
2 12 0 13 17 TwistedFate
3 13 0 1 13 Ashe
4 14 0 7 13 Seraphine
5 3 0 0 14 Alistar
6 5 0 0 13 Sejuani
7 4 0 0 14 Talon
8 4 0 0 13 Jhin
9 5 0 0 11 Maokai
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2986 9199 2986
1 4698 51917 4698
2 6214 8491 6214
3 8069 15550 8069
4 1362 7681 1362
5 0 2532 0
6 0 2955 0
7 0 0 0
8 0 245 0
9 0 372 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 0 0 False False
1 6 0 2 False False
2 1 1 0 False True
3 4 0 1 False False
4 0 0 1 False False
5 6 2 0 False False
6 6 1 0 False False
7 8 0 0 False False
8 7 0 0 False False
9 9 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False True False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 10804 TOP 1
1 True 11750 JUNGLE 0
2 True 15467 MIDDLE 0
3 True 11022 BOTTOM 1
4 True 10266 UTILITY 0
5 True 8147 TOP 0
6 True 10401 JUNGLE 0
7 True 8912 MIDDLE 0
8 True 7692 BOTTOM 0
9 True 6224 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 2033 3508 3047 6673 1037 2055 3340
1 0 6672 3153 6677 3006 1042 1018 3340
2 0 6656 3157 3100 3158 3041 2015 3340
3 0 6672 3006 3046 3035 0 0 3363
4 0 3853 6617 3158 6616 3011 3114 3364
5 2 3068 2033 1029 3047 0 3075 3340
6 2 3068 3801 3111 3075 3067 1011 3340
7 2 6693 3111 2031 3814 3134 0 3340
8 2 6671 3009 1018 3134 1037 1055 3340
9 2 4005 3853 3158 2055 1052 1011 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 2 0 1
1 2 8 3 2
2 1 14 13 2
3 1 5 3 2
4 1 7 7 2
5 1 3 2 1
6 3 7 2 1
7 1 3 2 1
8 0 1 0 1
9 0 2 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 474 4618 4198
1 367 6080 155
2 352 117025 24589
3 702 1430 1430
4 0 36003 8019
5 886 67365 10715
6 498 53898 5416
7 375 0 0
8 684 2048 401
9 529 26183 9736
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 9519 8 0 0
1 4307 136 0 0
2 6409 44 0 0
3 5136 18 0 0
4 3785 23 0 0
5 9234 6 0 0
6 9701 120 0 0
7 7798 4 0 0
8 3999 0 0 0
9 9671 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 129947
1 0 2 147027
2 0 3 20564
3 0 4 87331
4 0 5 7484
5 0 6 15757
6 0 7 69035
7 0 8 112321
8 0 9 76142
9 0 10 1914
physicalDamageDealtToChampions physicalDamageTaken role \
0 13912 12234 SOLO
1 10887 18987 NONE
2 1899 9730 SOLO
3 11606 9005 CARRY
4 1145 4592 SUPPORT
5 3063 14330 SOLO
6 7011 19859 NONE
7 11182 9630 SOLO
8 4303 7377 CARRY
9 514 8654 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 5 4 2 12 160
1 4 4 14 11 120
2 5 14 4 4 272
3 2 4 3 7 128
4 0 4 2 14 86
5 4 4 3 12 251
6 4 4 16 11 168
7 4 4 5 14 126
8 2 7 2 4 63
9 2 4 4 3 324
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 Okamakiri False 100 TOP 10
1 Ganjaseed False 100 JUNGLE 6
2 ExcuseMyLag False 100 MIDDLE 55
3 Masaomi False 100 BOTTOM 32
4 Arizhomango False 100 UTILITY 21
5 StalwartHide False 200 TOP 45
6 Coolgum15 False 200 JUNGLE 28
7 Alece False 200 MIDDLE 2
8 Dublaiar False 200 BOTTOM 13
9 Rotome False 200 UTILITY 41
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1747 154142 21198
1 1747 188525 17625
2 1747 141717 27167
3 1747 96238 14727
4 1747 44419 9656
5 1747 85508 13778
6 1747 131144 13806
7 1747 113666 12227
8 1747 91751 4705
9 1747 28544 10697
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 22549 7325 168 239
1 23610 9334 28 183
2 17280 6215 150 214
3 14598 2520 124 514
4 8541 8816 13 149
5 27931 6914 123 207
6 33657 8246 18 323
7 18733 871 175 187
8 12785 1690 153 70
9 19678 1947 12 280
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 168 1 19576
1 159 1 35418
2 16 1 4127
3 133 2 7476
4 0 5 932
5 191 5 2385
6 151 5 8210
7 208 1 1345
8 178 2 13560
9 250 1 447
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 3086 795 0 0
1 6582 315 2 0
2 678 1139 2 0
3 1690 456 5 0
4 492 162 0 0
5 0 4366 0 10
6 1378 4096 0 10
7 1045 1304 0 10
8 0 1409 0 10
9 447 1352 0 10
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 11 3 0 7 True
1 11 0 0 4 True
2 28 1 2 10 True
3 15 0 1 7 True
4 32 0 3 14 True
5 16 2 0 11 False
6 24 1 1 7 False
7 16 0 1 9 False
8 11 0 0 8 False
9 23 4 2 11 False ,
assists baronKills bountyLevel champLevel championName \
0 0 0 0 9 Sion
1 1 0 0 9 FiddleSticks
2 2 0 1 12 Xerath
3 3 0 0 12 Kaisa
4 3 0 0 11 Nautilus
5 8 0 6 14 DrMundo
6 3 0 5 15 Darius
7 2 0 0 12 Zed
8 4 0 0 11 Ashe
9 7 0 0 10 Soraka
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 0 0 0
1 0 4868 0
2 204 606 204
3 2496 2496 2496
4 1223 3660 1223
5 1990 23037 1990
6 9201 9201 9201
7 3602 7127 3602
8 2675 4104 2675
9 1751 2250 1751
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 1 0 False False
1 3 2 1 False False
2 8 0 0 False False
3 5 0 0 True False
4 6 0 0 False True
5 1 2 1 False False
6 2 0 0 False False
7 4 1 1 False False
8 3 0 0 False False
9 4 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False True False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 5281 TOP 0
1 False 6114 JUNGLE 0
2 False 7079 MIDDLE 0
3 False 9728 BOTTOM 0
4 False 6376 UTILITY 0
5 False 11138 JUNGLE 1
6 False 11913 TOP 0
7 False 8544 MIDDLE 0
8 False 6342 BOTTOM 0
9 False 5560 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 2 1054 6660 2033 3047 1029 1033 3340
1 2 3152 2003 2424 1052 1001 0 3330
2 2 3157 3020 1056 3802 0 1026 3363
3 2 1055 6676 6672 3086 3006 1042 3340
4 2 3860 3068 3047 3076 0 0 3364
5 0 3066 6664 2031 3111 3065 1028 3364
6 0 1055 6631 3111 3053 3105 1033 3340
7 0 3142 6693 2031 3158 0 0 3364
8 0 6673 1055 3006 1042 0 0 3340
9 0 3853 6617 3158 1004 1004 0 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 0 1 0 1
1 1 2 2 1
2 0 3 0 1
3 2 6 3 2
4 1 2 2 1
5 2 8 6 1
6 2 12 7 3
7 1 6 5 1
8 0 1 0 1
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 461 8014 2103
1 769 53122 4044
2 225 55448 10492
3 892 6975 4585
4 783 18596 4275
5 548 77044 6135
6 570 0 0
7 718 3878 928
8 721 165 165
9 711 10002 3336
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 1180 0 1 0
1 4349 84 1 0
2 1618 0 1 0
3 2605 0 1 0
4 3738 4 1 0
5 4316 132 0 0
6 6578 8 0 0
7 7403 4 0 0
8 5460 4 0 0
9 2742 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 30145
1 0 2 7425
2 0 3 6382
3 0 4 71796
4 0 5 9398
5 0 6 52833
6 0 7 124111
7 0 8 71962
8 0 9 47823
9 0 10 1768
physicalDamageDealtToChampions physicalDamageTaken role \
0 5081 11905 SOLO
1 427 13140 NONE
2 526 10167 SOLO
3 10510 10423 CARRY
4 2293 10200 SUPPORT
5 7022 17510 NONE
6 17801 13456 SOLO
7 11730 6657 SOLO
8 3339 4459 CARRY
9 400 5418 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 12 1 4 94
1 10 11 3 4 159
2 4 3 3 4 413
3 3 4 3 7 266
4 3 4 6 14 158
5 3 4 9 11 324
6 3 4 4 6 251
7 3 4 4 14 174
8 2 7 1 4 63
9 4 4 2 3 126
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 Oolong K False 100 TOP 11
1 DoinBro False 100 JUNGLE 13
2 P0IS0NED False 100 MIDDLE 18
3 The Depth False 100 BOTTOM 0
4 rectangle128 False 100 UTILITY 39
5 Rotome False 200 JUNGLE 12
6 StalwartHide False 200 TOP 24
7 Player Bot False 200 MIDDLE 5
8 Dublaiar False 200 BOTTOM 20
9 Alece False 200 UTILITY 33
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1417 38160 7185
1 1417 66508 4893
2 1417 61830 11018
3 1417 82193 16426
4 1417 37207 7945
5 1417 140708 14021
6 1417 132391 23022
7 1417 76605 13424
8 1417 54593 3505
9 1417 11771 3737
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 14486 325 82 247
1 17656 9711 18 440
2 13045 83 93 166
3 15563 3845 154 0
4 15427 946 47 232
5 22690 14990 26 344
6 20798 8690 157 325
7 14453 989 124 82
8 10495 1099 86 415
9 8695 9646 7 152
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 133 1 0
1 87 1 5960
2 220 1 0
3 164 2 3421
4 182 1 9213
5 21 1 10831
6 54 1 8280
7 64 1 764
8 67 2 6605
9 93 5 0
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 1400 0 8
1 421 166 0 8
2 0 1259 0 8
3 1330 2534 1 8
4 1376 1488 0 8
5 863 863 1 1
6 5220 762 5 1
7 764 392 0 1
8 0 575 2 1
9 0 534 0 1
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 12 1 0 5 False
1 25 2 0 2 False
2 4 0 0 4 False
3 9 0 0 6 False
4 40 0 5 18 False
5 22 2 2 3 True
6 13 0 2 7 True
7 8 1 2 4 True
8 13 0 1 5 True
9 25 0 1 13 True ,
assists baronKills bountyLevel champLevel championName \
0 12 0 0 18 Darius
1 9 0 0 16 Akali
2 6 1 1 18 Shyvana
3 14 0 4 16 Jhin
4 13 0 0 14 Lulu
5 8 0 0 17 Gnar
6 6 0 1 17 RekSai
7 12 0 0 15 Karma
8 11 0 0 18 Ezreal
9 16 0 0 17 Bard
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 4994 20792 4994
1 2652 4128 2652
2 2641 45438 2641
3 4648 10353 4648
4 759 1547 759
5 4808 4808 4808
6 0 18072 0
7 1858 3848 1858
8 5161 7013 5161
9 1763 2673 1763
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 10 1 2 False True
1 8 0 0 False False
2 11 1 3 False False
3 8 0 0 False False
4 12 2 0 False False
5 6 1 0 False False
6 15 0 0 False False
7 9 0 0 False False
8 5 0 0 False False
9 6 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False True False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 18302 TOP 1
1 True 11783 MIDDLE 0
2 True 16373 JUNGLE 2
3 True 13085 BOTTOM 0
4 True 11061 UTILITY 0
5 True 12094 TOP 0
6 True 14934 JUNGLE 0
7 True 12162 MIDDLE 0
8 True 18552 BOTTOM 0
9 True 10840 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3047 6630 3814 3053 3742 1039 3340
1 0 4636 3100 3157 3020 1056 0 3340
2 0 4633 4629 3115 3009 3074 0 3364
3 0 6671 1055 3009 6676 3094 3123 3363
4 0 6617 3107 3853 3158 6616 1011 3364
5 3 1054 3044 3068 3047 3075 3071 3340
6 3 6693 6333 0 3814 3053 3111 3364
7 3 1056 3020 4636 4628 3135 1058 3340
8 3 3042 3508 3074 3158 6691 6694 3340
9 3 4005 3742 3853 3009 3504 3114 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 4 12 4 2
1 2 7 3 1
2 2 11 4 2
3 1 5 4 1
4 1 6 2 1
5 1 6 5 1
6 2 12 3 2
7 4 9 2 2
8 5 18 6 2
9 1 4 3 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 644 4081 1479
1 800 71439 15968
2 381 169868 31067
3 367 3636 432
4 288 16300 7670
5 1173 26804 3539
6 271 8262 0
7 484 89614 33125
8 988 26967 17299
9 767 51777 17137
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 22875 55 0 0
1 12199 4 0 0
2 17545 162 0 0
3 12556 4 0 0
4 10470 0 0 0
5 6553 0 1 0
6 15218 138 1 0
7 12580 19 1 0
8 11477 8 1 0
9 13271 0 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 200568
1 0 2 13721
2 0 3 75672
3 0 4 107694
4 0 5 3319
5 0 6 90783
6 0 7 133938
7 0 8 11166
8 0 9 231116
9 0 10 5346
physicalDamageDealtToChampions physicalDamageTaken role \
0 32174 34964 SOLO
1 2503 19997 SOLO
2 7863 40563 NONE
3 12617 12024 CARRY
4 1595 16598 SUPPORT
5 9800 15533 SOLO
6 17819 30064 NONE
7 1848 15594 SOLO
8 48692 13197 CARRY
9 2616 11203 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 6 4 21 11 251
1 1 14 4 4 134
2 6 4 20 11 294
3 5 7 4 4 63
4 5 4 7 14 215
5 5 12 5 4 286
6 4 4 14 11 68
7 6 4 7 14 498
8 6 7 5 4 258
9 6 4 4 3 44
summonerName teamEarlySurrendered teamId teamPosition \
0 StalwartHide False 100 TOP
1 SlothoftheAbyss False 100 MIDDLE
2 Nimf False 100 JUNGLE
3 Dublaiar False 100 BOTTOM
4 RubberDuckyHero False 100 UTILITY
5 Nadaro False 200 TOP
6 Deer Melo False 200 JUNGLE
7 Akimira False 200 MIDDLE
8 Korbray False 200 BOTTOM
9 TelsaraGuardian False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 49 2254 222912 36326
1 0 2254 87183 19349
2 10 2254 261643 41962
3 34 2254 114517 14322
4 50 2254 22411 10813
5 20 2254 118382 13340
6 24 2254 176492 20441
7 51 2254 104519 37430
8 7 2254 261345 66794
9 54 2254 57544 19994
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 63107 23399 178 210
1 33185 11021 101 43
2 62098 28721 74 237
3 25087 10699 122 108
4 27437 13721 4 295
5 24239 3611 176 385
6 46628 15228 39 273
7 29678 4202 107 316
8 26970 6324 271 77
9 26577 9551 36 436
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 365 1 18261
1 255 1 2021
2 443 1 16103
3 236 2 3186
4 350 7 2792
5 151 1 794
6 530 1 34292
7 331 1 3738
8 163 3 3262
9 173 4 420
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 2672 5267 3 4
1 877 988 3 4
2 3031 3989 3 4
3 1271 506 0 4
4 1547 368 0 4
5 0 2152 1 9
6 2621 1345 0 9
7 2456 1503 1 9
8 802 2295 2 9
9 240 2102 0 9
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 25 1 0 12 True
1 10 0 0 7 True
2 12 1 1 2 True
3 18 0 1 11 True
4 68 7 0 27 True
5 25 1 3 12 False
6 9 0 1 0 False
7 25 0 2 13 False
8 14 0 1 8 False
9 9 0 2 4 False ,
assists baronKills bountyLevel champLevel championName \
0 6 0 0 14 Poppy
1 8 0 0 11 Taliyah
2 4 0 0 12 TwistedFate
3 5 0 0 11 Jhin
4 5 0 0 11 Morgana
5 7 0 0 15 Singed
6 11 0 3 14 LeeSin
7 8 0 0 12 Zed
8 10 0 1 13 Samira
9 18 0 2 13 Swain
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 235 3403 235
1 145 3748 145
2 1017 3061 1017
3 306 548 306
4 224 224 224
5 2123 2123 2123
6 2855 16373 2855
7 656 4792 656
8 5623 16178 5623
9 3746 9118 3746
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 6 2 0 False False
1 11 1 0 False False
2 8 0 0 False False
3 8 0 0 False False
4 12 0 0 False False
5 2 3 0 False False
6 5 2 3 False False
7 4 0 0 False False
8 2 0 1 False True
9 2 0 0 True False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 True False False
7 True False False
8 False True False
9 True False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 8436 TOP 0
1 True 8807 JUNGLE 0
2 True 8267 MIDDLE 0
3 True 7853 BOTTOM 0
4 True 6230 UTILITY 0
5 True 8192 TOP 0
6 True 12219 JUNGLE 0
7 True 7970 MIDDLE 0
8 True 12799 BOTTOM 0
9 True 10736 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 2033 3068 2055 3075 3047 1033 3363
1 0 3020 6655 3165 3191 0 0 3340
2 0 3158 2033 2403 3152 3100 1042 3340
3 0 6671 1055 3009 6676 0 0 3340
4 0 2003 3853 3070 3020 3041 0 3340
5 0 2033 3047 4633 3066 1029 1028 3340
6 0 3053 2031 2055 3814 3158 6692 3340
7 0 6691 2031 3158 6694 0 0 3340
8 0 1055 6673 3047 6675 1053 1043 3340
9 0 3157 3853 3020 6655 1058 0 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 0 2 0 1
1 0 4 0 1
2 1 4 2 2
3 0 3 0 1
4 0 2 0 1
5 0 0 0 0
6 4 16 7 2
7 2 6 3 1
8 2 15 9 3
9 2 7 4 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 564 26237 6053
1 570 71431 14095
2 763 49820 8150
3 551 3353 186
4 232 9896 5241
5 857 75394 8331
6 675 20390 2211
7 682 3961 949
8 731 9561 3154
9 747 68120 19432
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 11353 0 0 0
1 7312 96 0 0
2 4928 0 0 0
3 4151 1 0 0
4 7752 0 0 0
5 6412 0 0 0
6 10285 96 0 0
7 5975 0 0 0
8 5701 8 0 0
9 7858 12 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 44804
1 0 2 7246
2 0 3 8628
3 0 4 74656
4 0 5 5043
5 0 6 9024
6 0 7 78349
7 0 8 44426
8 0 9 96088
9 0 10 13130
physicalDamageDealtToChampions physicalDamageTaken role \
0 10543 9241 SOLO
1 516 17858 NONE
2 733 12280 SOLO
3 11217 11723 CARRY
4 430 10771 SUPPORT
5 350 11202 SOLO
6 20726 19198 NONE
7 7899 6829 SOLO
8 15320 7639 CARRY
9 1632 7752 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 2 12 118
1 4 4 15 11 193
2 4 4 2 14 61
3 2 7 2 4 62
4 1 4 0 14 38
5 3 4 1 12 123
6 5 4 17 11 91
7 3 14 2 4 85
8 3 7 4 4 131
9 5 14 3 4 44
summonerName teamEarlySurrendered teamId teamPosition \
0 WeeabooNerdy False 100 TOP
1 PikaJoo False 100 JUNGLE
2 BuchieBalls66 False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 sstellag False 100 UTILITY
5 RaggyTowel False 200 TOP
6 RadiantFive69 False 200 JUNGLE
7 drphillsaidnword False 200 MIDDLE
8 sophieisannoyed False 200 BOTTOM
9 KillingExpect False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 36 1658 88447 16597
1 18 1658 85209 15646
2 13 1658 63466 9235
3 32 1658 78009 11404
4 34 1658 14940 5672
5 25 1658 89854 8897
6 15 1658 107760 23804
7 3 1658 48686 9147
8 4 1658 111144 18956
9 33 1658 82439 22254
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 21987 2060 120 309
1 25724 5389 12 397
2 17573 1949 111 105
3 16159 3319 107 106
4 18979 1270 11 42
5 17693 3866 141 227
6 30065 11794 14 265
7 12992 2211 68 46
8 13673 3340 136 74
9 15816 5586 41 190
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 209 1 17405
1 299 1 6531
2 285 1 5017
3 166 3 0
4 267 1 0
5 66 1 5435
6 154 1 9021
7 144 1 298
8 61 3 5493
9 61 1 1189
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 1392 0 6
1 1035 552 0 6
2 350 365 1 6
3 0 285 0 6
4 0 454 0 6
5 214 79 0 1
6 866 581 1 1
7 298 188 0 1
8 482 332 3 1
9 1189 205 1 1
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 13 4 1 9 False
1 25 1 1 9 False
2 13 0 0 8 False
3 13 0 0 8 False
4 6 0 0 4 False
5 29 3 2 11 True
6 22 3 2 9 True
7 13 0 0 8 True
8 12 0 1 7 True
9 23 0 1 12 True ,
assists baronKills bountyLevel champLevel championName \
0 1 0 0 11 Riven
1 3 0 5 9 Vi
2 2 0 0 9 Katarina
3 6 0 1 9 Jhin
4 5 0 2 9 Yuumi
5 0 0 0 9 Heimerdinger
6 1 0 0 10 Poppy
7 1 0 1 11 Jax
8 0 0 1 9 Caitlyn
9 1 0 0 8 Galio
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2695 2695 2695
1 0 2947 0
2 1038 1287 1038
3 541 541 541
4 377 377 377
5 246 246 246
6 0 17617 0
7 4598 4598 4598
8 2718 2718 2718
9 672 1941 672
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 1 1 0 False False
1 0 1 0 False False
2 6 1 0 False True
3 0 0 0 False False
4 0 1 0 False False
5 3 0 0 False False
6 1 0 2 False False
7 4 1 0 False False
8 2 0 0 False False
9 3 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False True False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 5985 TOP 0
1 True 5927 JUNGLE 0
2 True 4467 MIDDLE 0
3 True 4869 BOTTOM 0
4 True 4237 UTILITY 0
5 True 4175 TOP 0
6 True 5520 JUNGLE 0
7 True 5984 MIDDLE 0
8 True 6251 BOTTOM 0
9 True 3885 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 6630 2031 2055 1001 0 1054 3340
1 0 3047 2031 6632 0 0 0 3340
2 0 1055 2003 3115 2055 0 0 3340
3 0 6671 1055 3009 0 0 0 3340
4 0 3851 6617 3114 0 0 0 3340
5 0 1056 3047 3802 1052 0 0 3340
6 0 6632 2031 0 1001 0 0 3340
7 0 1055 3134 3111 3057 1036 1036 3340
8 0 1055 6671 1042 3006 0 2031 3340
9 0 4005 3859 1052 0 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 3 3 1
1 1 5 5 1
2 0 2 0 1
3 0 1 0 1
4 1 2 2 1
5 0 0 0 0
6 0 1 0 1
7 0 4 0 1
8 0 2 0 1
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 964 0 0
1 0 4498 0
2 262 23469 3041
3 0 1388 7
4 0 2266 1776
5 464 25951 3984
6 440 8459 163
7 259 8613 2793
8 465 653 653
9 657 16784 2567
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 3968 0 0 0
1 1542 64 0 0
2 2586 0 0 0
3 2205 0 0 0
4 233 0 0 0
5 0 0 0 0
6 1770 100 0 0
7 2711 0 0 0
8 1082 0 0 0
9 915 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 50577
1 0 2 43442
2 0 3 7476
3 0 4 45282
4 0 5 663
5 0 6 10948
6 0 7 67224
7 0 8 40201
8 0 9 52510
9 0 10 1107
physicalDamageDealtToChampions physicalDamageTaken role \
0 4618 4138 DUO
1 5069 7181 SUPPORT
2 924 7602 SUPPORT
3 5679 4816 SUPPORT
4 263 743 SUPPORT
5 799 4817 SUPPORT
6 1059 9673 SUPPORT
7 7650 6018 SUPPORT
8 6435 4417 SUPPORT
9 30 5770 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 4 2 14 96
1 5 11 2 4 95
2 3 14 2 4 82
3 1 7 1 4 62
4 3 3 2 14 52
5 2 4 2 14 41
6 6 11 2 4 69
7 2 4 4 14 67
8 1 3 1 4 131
9 1 3 2 4 122
summonerName teamEarlySurrendered teamId teamPosition \
0 QweekerZ False 100 TOP
1 lolkronos False 100 JUNGLE
2 Cozu69 False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 ChromeWhitecast False 100 UTILITY
5 Tathodar False 200 TOP
6 kikidoe False 200 JUNGLE
7 HippieJoee False 200 MIDDLE
8 Xplodo False 200 BOTTOM
9 RobbieNotRotten False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 8 978 50797 4838
1 11 978 53422 5069
2 0 978 31151 4172
3 12 978 46670 5687
4 6 978 3244 2354
5 6 978 40324 5158
6 5 978 85250 1437
7 16 978 49503 11132
8 7 978 54929 7089
9 13 978 20318 2597
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 8649 745 106 158
1 8750 4466 6 190
2 10875 587 53 0
3 7044 1085 80 60
4 977 3346 0 18
5 4901 325 80 63
6 11580 6859 17 407
7 8859 1340 73 51
8 5534 764 116 21
9 7041 92 25 25
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 0 1 220
1 0 1 5482
2 134 1 206
3 0 2 0
4 0 4 314
5 78 1 3424
6 16 1 9566
7 95 1 689
8 44 1 1765
9 64 1 2427
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 220 542 1 3
1 0 26 0 3
2 206 686 0 3
3 0 22 0 3
4 314 0 0 3
5 374 84 0 1
6 214 136 0 1
7 689 130 2 1
8 0 34 1 1
9 0 356 0 1
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 3 2 0 3 True
1 13 1 0 5 True
2 1 3 0 1 True
3 6 0 0 4 True
4 15 1 0 6 True
5 7 0 1 4 False
6 6 0 1 2 False
7 12 1 1 4 False
8 2 0 0 2 False
9 7 0 0 5 False ,
assists baronKills bountyLevel champLevel championName \
0 15 0 0 14 Renekton
1 4 0 2 18 MasterYi
2 8 0 3 17 Fizz
3 11 0 0 15 Aphelios
4 18 0 0 14 Sona
5 8 0 0 16 Yorick
6 8 1 0 15 Kayn
7 8 0 0 17 Yone
8 8 0 0 15 Jinx
9 10 0 0 13 Soraka
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2952 5179 2952
1 4743 37902 4743
2 5774 5894 5774
3 3432 3432 3432
4 1229 1739 1229
5 1688 9559 1688
6 67 20966 67
7 5329 5329 5329
8 3078 19470 3078
9 894 2889 894
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 0 0 False False
1 6 0 2 False False
2 7 0 0 False True
3 2 0 0 False False
4 6 3 0 False False
5 8 0 0 False False
6 10 2 3 False False
7 16 0 0 False False
8 9 0 0 False False
9 11 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False True False
9 True False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 9350 TOP 0
1 False 20934 JUNGLE 0
2 False 15216 MIDDLE 0
3 False 9398 BOTTOM 1
4 False 8806 UTILITY 0
5 False 11919 TOP 0
6 False 11751 JUNGLE 0
7 False 13494 MIDDLE 1
8 False 11809 BOTTOM 0
9 False 9325 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 1055 3047 3076 6630 3074 0 3340
1 1 6691 3031 3006 6676 3508 3033 3340
2 1 3157 3089 3041 6655 0 3158 3340
3 1 6673 1055 3047 3085 3123 1042 3340
4 1 3158 3107 6617 6616 0 0 3340
5 1 6632 2033 3111 3053 3075 3066 3340
6 1 6691 3158 3042 6676 3134 0 3364
7 1 1055 3006 6673 3031 3072 1031 3340
8 1 1055 6672 3006 3085 3031 0 3340
9 1 6617 3853 3158 6616 3107 3801 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 2 2 1
1 5 27 9 3
2 4 18 6 1
3 1 4 3 2
4 0 2 0 1
5 1 6 4 2
6 2 7 2 2
7 1 7 2 1
8 2 5 2 1
9 1 3 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 871 7582 2657
1 882 4250 68
2 506 116783 34484
3 1422 2055 914
4 506 16326 10214
5 389 18537 10023
6 533 9852 2974
7 216 20256 4088
8 730 2493 1233
9 1088 17197 10464
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 7929 1 0 0
1 7542 130 0 0
2 5316 4 0 0
3 4209 5 0 0
4 4970 0 0 0
5 7002 4 1 0
6 12316 137 1 0
7 14695 8 1 0
8 11504 8 1 0
9 6400 0 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 78210
1 0 2 226528
2 0 3 20688
3 0 4 76737
4 0 5 5544
5 0 6 102379
6 0 7 153035
7 0 8 123268
8 0 9 127110
9 0 10 2671
physicalDamageDealtToChampions physicalDamageTaken role \
0 17163 24214 NONE
1 43946 28532 NONE
2 5017 21287 SOLO
3 11766 13369 CARRY
4 2076 15242 SUPPORT
5 18386 23919 SOLO
6 23822 34855 NONE
7 15266 19370 SOLO
8 19189 18457 CARRY
9 382 14985 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 6 4 9 14 90
1 12 11 7 14 122
2 5 4 7 14 53
3 5 7 4 4 62
4 4 4 3 3 76
5 4 4 2 12 51
6 23 11 5 4 60
7 5 4 6 14 101
8 5 4 5 7 149
9 4 4 7 14 76
summonerName teamEarlySurrendered teamId teamPosition \
0 Murrkydurrky False 100 TOP
1 Hexlar False 100 JUNGLE
2 Wet Croissant False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 YBNBigBoi False 100 UTILITY
5 iplaydota2006 False 200 TOP
6 naridosx False 200 JUNGLE
7 Powerguy20 False 200 MIDDLE
8 XNateTheGreat1X False 200 BOTTOM
9 OxSenpaixO False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 18 2068 87437 21465
1 13 2068 262347 54267
2 29 2068 141747 40427
3 11 2068 86879 12705
4 23 2068 27190 12338
5 9 2068 130517 28741
6 11 2068 174773 27604
7 24 2068 171799 22374
8 34 2068 144110 22272
9 74 2068 20988 11966
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 34016 8079 73 26
1 37148 17658 79 247
2 29770 6746 149 274
3 18110 5999 93 135
4 20697 14667 11 49
5 35621 6617 165 110
6 50053 19511 17 241
7 36402 5642 150 163
8 31341 5872 164 79
9 22983 27068 7 275
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 226 1 1644
1 245 1 31568
2 274 1 4275
3 83 4 8086
4 185 5 5320
5 243 1 9600
6 296 1 11886
7 542 1 28273
8 338 4 14506
9 378 5 1119
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1644 1871 1 4
1 10251 1073 4 4
2 925 3166 2 4
3 24 532 2 4
4 48 484 0 4
5 332 4699 0 9
6 808 2881 0 9
7 3018 2336 3 9
8 1849 1379 1 9
9 1119 1597 0 9
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 18 1 0 11 True
1 22 0 2 9 True
2 3 0 0 3 True
3 20 0 1 10 True
4 58 3 2 28 True
5 16 0 2 9 False
6 15 2 0 2 False
7 7 0 0 5 False
8 14 0 3 5 False
9 59 0 2 31 False ,
assists baronKills bountyLevel champLevel championName \
0 2 0 0 11 Garen
1 5 0 0 10 MasterYi
2 3 0 0 9 Katarina
3 0 0 1 11 KogMaw
4 1 0 1 5 Shaco
5 2 0 0 13 Mordekaiser
6 6 0 2 11 Warwick
7 6 0 2 13 Akali
8 5 0 2 10 Jhin
9 3 0 0 10 Morgana
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 0 0 0
1 0 11260 0
2 0 0 0
3 0 0 0
4 0 0 0
5 6673 10313 6673
6 1359 4344 1359
7 3334 3334 3334
8 2265 5586 2265
9 836 4563 836
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 0 0 False False
1 7 0 0 False False
2 12 0 0 False False
3 1 0 0 False False
4 0 0 0 False False
5 3 0 0 False False
6 5 0 1 False False
7 2 3 0 False True
8 0 0 1 False False
9 3 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 5843 TOP 0
1 True 6638 JUNGLE 0
2 True 4461 MIDDLE 0
3 True 6351 BOTTOM 0
4 True 3597 UTILITY 0
5 True 8839 TOP 0
6 True 7791 JUNGLE 0
7 True 9162 MIDDLE 0
8 True 6280 BOTTOM 0
9 True 5647 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1054 3036 3006 0 0 0 3340
1 0 6672 6677 0 0 0 3006 3340
2 0 1055 1043 4635 3020 0 0 3340
3 0 6672 3006 1036 1036 0 0 3340
4 0 2003 1001 3850 1082 2010 0 3340
5 0 3115 4633 3020 0 0 0 3340
6 0 3068 1001 1029 0 0 3077 3340
7 0 4636 3020 3041 1011 1052 0 3340
8 0 6671 3009 1036 1042 1018 1055 3340
9 0 2423 3853 6653 3020 0 0 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 1 4 2 1
1 0 2 0 1
2 0 1 0 1
3 1 4 3 1
4 0 1 0 1
5 2 7 5 1
6 1 6 2 1
7 2 11 9 2
8 1 2 2 1
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 442 0 0
1 495 3275 0
2 168 30539 7328
3 1062 14049 5562
4 0 1804 640
5 653 60280 11051
6 298 29074 3955
7 657 62787 15061
8 0 1262 219
9 406 19103 3337
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 10345 0 0 0
1 8120 68 0 0
2 11356 4 0 0
3 4110 0 0 0
4 414 0 0 0
5 2263 0 0 0
6 4066 67 0 0
7 4091 4 0 0
8 1641 4 0 0
9 2391 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 39412
1 0 2 56861
2 0 3 3397
3 0 4 23857
4 0 5 722
5 0 6 19197
6 0 7 29861
7 0 8 10629
8 0 9 50383
9 0 10 3997
physicalDamageDealtToChampions physicalDamageTaken role \
0 6973 4573 SOLO
1 6103 10013 NONE
2 1013 5237 SOLO
3 3865 3857 CARRY
4 176 338 SUPPORT
5 2339 8436 SOLO
6 1980 12198 NONE
7 2482 9953 SOLO
8 5936 2526 CARRY
9 222 4532 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 5 11 86
1 10 11 3 4 85
2 2 14 3 4 128
3 2 6 1 14 128
4 1 3 1 14 42
5 1 4 2 12 76
6 10 11 3 4 237
7 4 4 5 14 170
8 1 7 2 4 62
9 2 4 2 14 189
summonerName teamEarlySurrendered teamId teamPosition \
0 ToxikASfuk False 100 TOP
1 Willymammoth420 False 100 JUNGLE
2 DimPacifist False 100 MIDDLE
3 GayFieldtrip False 100 BOTTOM
4 LITfork False 100 UTILITY
5 AwesomeBanananas False 200 TOP
6 13estbf False 200 JUNGLE
7 SadCitrus False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 Orphixxx False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 24 1209 43243 8049
1 1 1209 71446 7352
2 0 1209 34133 8538
3 3 1209 38768 9986
4 2 1209 2630 921
5 4 1209 89554 13574
6 16 1209 65024 6241
7 1 1209 74226 18018
8 14 1209 51645 6155
9 12 1209 25566 3899
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 15329 1153 73 82
1 18543 6985 18 92
2 17077 550 51 0
3 7968 293 77 63
4 753 0 3 31
5 12263 3995 112 23
6 16935 10036 25 123
7 14928 3995 109 41
8 4209 1284 101 52
9 6948 544 26 38
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 162 1 3830
1 172 1 11309
2 217 1 196
3 33 1 862
4 0 0 104
5 47 1 10076
6 75 1 6088
7 52 1 810
8 0 1 0
9 63 1 2466
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1076 410 0 6
1 1248 409 0 6
2 196 484 0 6
3 558 0 0 6
4 104 0 0 6
5 183 1563 2 0
6 306 670 0 0
7 474 883 1 0
8 0 42 1 0
9 340 24 1 0
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 1 0 0 1 False
1 8 0 1 3 False
2 10 0 0 6 False
3 5 0 0 3 False
4 3 0 0 2 False
5 8 0 0 6 True
6 11 0 0 6 True
7 15 3 1 9 True
8 9 0 0 6 True
9 17 0 0 9 True ,
assists baronKills bountyLevel champLevel championName \
0 5 0 0 14 Poppy
1 3 0 0 13 Viego
2 7 0 0 15 Neeko
3 2 0 1 14 Viktor
4 6 0 0 13 Thresh
5 4 1 2 18 Nasus
6 12 0 0 15 Warwick
7 10 0 9 17 Kayle
8 16 0 8 15 Jhin
9 11 0 0 15 Pyke
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 251 251 251
1 0 8329 0
2 2362 2362 2362
3 1919 3854 1919
4 553 553 553
5 8120 35915 8120
6 5206 25639 5206
7 7966 14492 7966
8 2156 9791 2156
9 2367 6584 2367
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 0 0 False False
1 10 2 1 True False
2 6 0 0 False False
3 6 0 0 True False
4 8 2 0 False True
5 2 0 0 False False
6 5 1 2 False False
7 2 3 0 False False
8 1 0 1 False False
9 4 0 1 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 True False False
6 False True False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 7923 TOP 0
1 False 10425 JUNGLE 0
2 False 9068 MIDDLE 0
3 False 13366 BOTTOM 0
4 False 6864 UTILITY 0
5 False 15592 TOP 1
6 False 11413 JUNGLE 0
7 False 15541 MIDDLE 2
8 False 12650 BOTTOM 0
9 False 12775 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 3 2033 3075 3047 6662 1029 1029 3340
1 3 3153 6672 3047 3123 1031 1036 3364
2 3 6655 1056 3020 4628 4632 0 3340
3 3 3040 3108 3020 6655 3100 3067 3340
4 3 3857 3190 3067 3117 3024 0 3364
5 0 1055 6692 3009 3181 3072 3074 3340
6 0 6632 2031 3077 3047 3211 3067 3340
7 0 3089 3191 3006 3115 4633 3041 3363
8 0 6671 1055 3009 6676 3094 1018 3340
9 0 3857 6693 3117 3179 3814 3134 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 0 0 0
1 2 5 2 2
2 1 3 2 1
3 2 5 2 2
4 0 1 0 1
5 2 7 4 2
6 1 3 2 1
7 1 10 9 2
8 1 8 8 3
9 2 9 6 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 485 25171 2793
1 580 12212 1601
2 442 121967 14826
3 872 185668 27376
4 879 12011 3037
5 658 11910 2646
6 720 40378 4496
7 385 154678 18434
8 1033 10242 1926
9 770 0 0
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 5411 0 1 0
1 9761 100 1 0
2 5323 0 1 0
3 3260 4 1 0
4 4887 0 1 0
5 9198 72 0 0
6 13015 124 0 0
7 7243 48 0 0
8 5181 4 0 0
9 17658 4 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 59626
1 0 2 95754
2 0 3 11708
3 0 4 17713
4 0 5 7356
5 0 6 262845
6 0 7 71342
7 0 8 46178
8 0 9 98557
9 0 10 27284
physicalDamageDealtToChampions physicalDamageTaken role \
0 5998 17129 SOLO
1 10078 21441 NONE
2 995 9892 SOLO
3 968 11410 CARRY
4 227 15047 SUPPORT
5 14491 13392 SOLO
6 4200 18246 NONE
7 4076 6345 SOLO
8 16525 2515 CARRY
9 10989 5028 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 2 12 18
1 14 11 4 4 10
2 6 14 4 4 127
3 4 4 4 7 26
4 2 4 0 14 26
5 4 4 3 12 13
6 15 11 3 4 21
7 3 4 2 12 21
8 1 7 1 4 62
9 3 4 5 14 167
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 TheBonzerBunny False 100 TOP 23
1 3sinks False 100 JUNGLE 14
2 mommy machine False 100 MIDDLE 50
3 hømosexual False 100 BOTTOM 21
4 Riley Jareid False 100 UTILITY 16
5 RyeBreadPitt False 200 TOP 11
6 No377D False 200 JUNGLE 28
7 KidNolke False 200 MIDDLE 6
8 Dublaiar False 200 BOTTOM 31
9 Coolgum15 False 200 UTILITY 36
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1861 87403 8791
1 1861 118134 12883
2 1861 138086 16882
3 1861 203382 28344
4 1861 23309 3265
5 1861 276476 17137
6 1861 126171 9478
7 1861 209179 23684
8 1861 110912 18633
9 1861 38408 14577
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 23241 2481 145 782
1 32737 9847 50 256
2 16274 3060 166 269
3 15392 4965 258 443
4 21644 1166 43 49
5 22830 7571 229 84
6 32409 17759 34 246
7 14131 8873 226 342
8 7875 3602 151 152
9 22842 6539 36 154
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 220 1 2605
1 311 2 10167
2 166 1 4410
3 175 2 0
4 238 5 3942
5 77 1 1720
6 146 1 14450
7 51 5 8320
8 27 2 2111
9 90 1 11124
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 700 1 11
1 1203 1535 0 11
2 1060 1058 0 11
3 0 722 1 11
4 0 1708 0 11
5 0 239 3 2
6 782 1147 3 2
7 1174 542 4 2
8 181 178 1 2
9 3588 155 0 2
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 6 0 0 4 False
1 22 3 7 4 False
2 15 0 1 9 False
3 13 0 0 9 False
4 14 2 1 8 False
5 15 0 0 10 True
6 29 1 1 9 True
7 20 3 0 9 True
8 17 0 2 10 True
9 23 0 1 13 True ,
assists baronKills bountyLevel champLevel championName \
0 3 0 0 12 Aatrox
1 3 0 0 12 Kayn
2 9 0 2 13 Sion
3 4 0 0 12 Tristana
4 19 0 2 12 Zyra
5 2 0 0 14 Kayle
6 2 0 0 11 Yone
7 1 0 0 11 Ryze
8 4 0 0 9 Jhin
9 3 0 0 10 Nautilus
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 1988 5404 1988
1 151 19696 151
2 7382 11804 7382
3 9994 12527 9994
4 3162 5449 3162
5 604 604 604
6 0 6720 0
7 137 137 137
8 2129 2219 2129
9 1298 1376 1298
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 4 0 0 False False
1 5 2 0 False False
2 1 1 1 False False
3 4 1 0 True False
4 3 1 0 False True
5 4 1 0 False False
6 6 1 1 False False
7 9 1 0 False False
8 7 0 0 False False
9 8 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 True False False
3 False True False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 5824 TOP 0
1 False 7437 JUNGLE 1
2 False 10975 MIDDLE 0
3 False 10209 BOTTOM 0
4 False 9927 UTILITY 0
5 False 9644 TOP 0
6 False 7754 JUNGLE 0
7 False 4723 MIDDLE 0
8 False 5311 BOTTOM 0
9 False 5652 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1054 2003 6630 1029 3111 0 3340
1 0 2031 6693 3134 3158 3134 1036 3363
2 0 1054 3047 3181 6693 3134 1036 3340
3 0 6671 1055 3006 3046 1038 1037 3340
4 0 3853 3165 0 6653 3020 0 3364
5 1 1056 3115 3006 4633 2055 3191 3340
6 1 6673 2031 1018 3006 1038 0 3364
7 1 3070 3157 0 3802 2422 0 3340
8 1 6671 1055 3009 1036 0 0 3340
9 1 3859 1001 3190 3067 1029 0 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 0 0 0 0
1 1 4 3 2
2 2 13 11 4
3 4 10 4 2
4 3 7 2 1
5 3 9 3 1
6 2 6 3 1
7 0 0 0 0
8 0 0 0 0
9 0 2 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 675 0 0
1 307 8557 1058
2 998 10294 1895
3 565 16009 2195
4 542 52663 21287
5 764 55112 15874
6 492 17172 1778
7 350 41500 4514
8 359 1008 136
9 276 11288 3102
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 7228 0 0 0
1 6888 120 0 0
2 6990 31 0 0
3 2971 16 0 0
4 3527 0 0 0
5 6223 0 1 0
6 6450 84 1 0
7 5183 0 1 0
8 4371 0 1 0
9 5950 0 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 43872
1 0 2 108282
2 0 3 90753
3 0 4 77898
4 0 5 4902
5 0 6 24702
6 0 7 59100
7 0 8 6888
8 0 9 36848
9 0 10 4749
physicalDamageDealtToChampions physicalDamageTaken role \
0 1714 5585 NONE
1 8324 16884 NONE
2 15550 6477 SOLO
3 8776 9463 SOLO
4 1912 6465 SOLO
5 5506 10688 SOLO
6 5888 11757 NONE
7 85 10875 SOLO
8 2595 6415 CARRY
9 1127 8723 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 0 4 2 12 12
1 13 11 4 4 26
2 3 4 5 14 26
3 3 7 3 4 28
4 3 4 4 14 19
5 2 4 1 12 20
6 4 4 12 11 13
7 2 12 4 4 21
8 2 7 2 4 62
9 4 4 4 14 167
summonerName teamEarlySurrendered teamId teamPosition \
0 VengfulBlue False 100 TOP
1 sneakyskid False 100 JUNGLE
2 redmoonbella False 100 MIDDLE
3 o ReGuLaToR o False 100 BOTTOM
4 celestialcat123 False 100 UTILITY
5 KidNolke False 200 TOP
6 RyeBreadPitt False 200 JUNGLE
7 SoldOrgansForLPs False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 Coolgum15 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 3 1268 52022 1714
1 7 1268 127844 10057
2 46 1268 102198 18278
3 2 1268 94140 11101
4 56 1268 57841 23475
5 9 1268 80544 22036
6 14 1268 81939 9239
7 9 1268 48389 4600
8 10 1268 37856 2732
9 29 1268 21000 5095
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 13212 1501 94 43
1 25347 13007 8 222
2 14345 431 102 425
3 12844 5386 109 27
4 10827 2695 32 217
5 17356 6239 145 227
6 18525 6029 17 239
7 16900 108 79 56
8 10836 1454 84 53
9 14934 319 26 228
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 98 1 8150
1 91 1 11005
2 38 1 1149
3 115 2 232
4 67 1 276
5 108 4 729
6 134 1 5666
7 228 1 0
8 133 2 0
9 133 5 4962
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 398 0 1
1 674 1573 2 1
2 831 878 1 1
3 130 408 5 1
4 276 834 0 1
5 655 444 0 8
6 1572 317 0 8
7 0 841 0 8
8 0 50 1 8
9 866 260 0 8
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 1 0 0 1 True
1 14 2 1 4 True
2 16 1 1 6 True
3 13 1 2 7 True
4 44 2 2 16 True
5 11 2 2 5 False
6 16 1 2 3 False
7 9 1 0 6 False
8 6 0 0 5 False
9 11 1 1 7 False ,
assists baronKills bountyLevel champLevel championName \
0 0 0 2 11 Garen
1 1 0 1 9 MasterYi
2 0 0 6 11 Pantheon
3 5 0 7 9 Jhin
4 9 0 0 9 Thresh
5 1 0 0 9 Aatrox
6 3 0 0 7 Twitch
7 0 0 0 9 Ryze
8 1 0 0 8 Ahri
9 2 0 0 7 Malphite
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2556 2556 2556
1 0 20751 0
2 1532 1532 1532
3 2610 3523 2610
4 859 859 859
5 1040 1040 1040
6 0 1117 0
7 213 213 213
8 0 0 0
9 0 0 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 1 0 0 False False
1 1 1 2 False False
2 2 0 0 False True
3 0 0 0 True False
4 1 0 0 True False
5 5 1 0 False False
6 4 0 0 False False
7 7 0 0 False False
8 5 0 0 False False
9 5 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False True False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 5705 TOP 0
1 True 5661 JUNGLE 0
2 True 7788 MIDDLE 0
3 True 7056 BOTTOM 0
4 True 4979 UTILITY 0
5 True 4270 TOP 0
6 True 3722 JUNGLE 0
7 True 4245 MIDDLE 0
8 True 3579 BOTTOM 0
9 True 3463 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1054 6029 2055 3047 1036 3123 3340
1 0 6691 2031 3006 1036 2055 0 3364
2 0 2033 6692 2010 3111 3134 1029 3340
3 0 6671 0 0 3009 0 1055 3340
4 0 3855 3190 3024 3158 0 0 3340
5 0 1055 6029 3044 1001 0 0 3340
6 0 6670 1018 1042 1001 0 0 3340
7 0 3070 2031 1082 1001 3802 1026 3340
8 0 1056 3802 1026 0 0 0 3340
9 0 1026 3145 1082 1001 0 3851 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 1 3 2 1
1 1 4 3 1
2 2 10 6 1
3 1 7 7 1
4 1 2 2 1
5 0 1 0 1
6 0 1 0 1
7 0 2 0 1
8 0 1 0 1
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 562 0 0
1 614 3262 0
2 377 92 92
3 0 2814 176
4 875 7062 3643
5 223 0 0
6 463 2208 0
7 201 30079 6450
8 337 6193 1891
9 476 9018 4742
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 0 0 0 0
1 1218 88 0 0
2 5669 8 0 0
3 3123 4 0 0
4 3607 0 0 0
5 0 0 0 0
6 1111 30 0 0
7 441 0 0 0
8 1285 0 0 0
9 1702 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 35053
1 0 2 62441
2 0 3 57102
3 0 4 43394
4 0 5 3414
5 0 6 26818
6 0 7 19721
7 0 8 3855
8 0 9 7315
9 0 10 1884
physicalDamageDealtToChampions physicalDamageTaken role \
0 4333 7872 SUPPORT
1 3728 8388 SUPPORT
2 12777 4468 SUPPORT
3 6326 1764 SUPPORT
4 1008 1853 SUPPORT
5 6414 8754 DUO
6 1530 9470 SUPPORT
7 666 10476 SUPPORT
8 475 4396 SUPPORT
9 912 4843 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 1 4 3 14 20
1 2 4 7 11 13
2 4 14 2 4 22
3 2 7 2 4 61
4 2 4 4 14 167
5 2 12 2 4 29
6 2 4 8 11 26
7 3 6 3 4 26
8 2 4 0 3 29
9 0 4 3 14 18
summonerName teamEarlySurrendered teamId teamPosition \
0 KidNolke False 100 TOP
1 RyeBreadPitt False 100 JUNGLE
2 TrevyBih False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 Coolgum15 False 100 UTILITY
5 burgerkingsucks False 200 TOP
6 Shaguar False 200 JUNGLE
7 LordyGG False 200 MIDDLE
8 Misoonji False 200 BOTTOM
9 IEatFrisbees False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 17 913 36065 5344
1 1 913 77042 4530
2 17 913 60145 13435
3 9 913 46209 6503
4 25 913 14478 4935
5 8 913 26818 6414
6 1 913 27181 1923
7 14 913 33934 7116
8 8 913 22410 3033
9 17 913 11244 5997
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 7911 1028 92 36
1 9759 5632 6 133
2 10294 3562 95 21
3 5344 1997 104 59
4 6057 871 22 53
5 9977 2736 61 177
6 11038 2980 2 124
7 11343 717 55 23
8 6152 84 43 22
9 6635 0 15 179
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 21 1 1011
1 21 1 11338
2 27 1 2951
3 0 1 0
4 30 4 4001
5 109 1 0
6 68 1 5251
7 114 1 0
8 51 1 8901
9 88 0 342
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1011 39 1 0
1 802 153 0 0
2 566 157 0 0
3 0 456 1 0
4 284 595 0 0
5 0 1222 0 2
6 393 456 0 2
7 0 425 0 2
8 666 471 0 2
9 342 89 0 2
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 3 3 0 2 True
1 13 2 1 2 True
2 6 0 1 5 True
3 6 0 1 3 True
4 11 0 0 6 True
5 7 1 0 5 False
6 5 0 0 4 False
7 5 0 0 4 False
8 0 0 0 0 False
9 9 0 0 8 False ,
assists baronKills bountyLevel champLevel championName \
0 7 0 0 14 TwistedFate
1 3 0 0 15 Graves
2 4 0 0 14 Yasuo
3 4 0 0 13 Jhin
4 5 0 0 12 MissFortune
5 8 0 2 17 Vi
6 10 1 2 15 Warwick
7 5 0 6 17 Ryze
8 11 0 0 15 Ezreal
9 22 0 1 14 Seraphine
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 635 1180 635
1 0 16343 0
2 0 1713 0
3 0 0 0
4 0 278 0
5 3987 9348 3987
6 984 34593 984
7 5049 9601 5049
8 6749 18306 6749
9 2375 3712 2375
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 9 5 0 False False
1 4 1 0 False False
2 9 2 0 False False
3 8 0 0 False False
4 12 0 1 False False
5 4 3 0 False False
6 6 2 2 False True
7 1 3 0 False False
8 4 0 1 True False
9 4 0 0 True False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 7751 TOP 0
1 False 15836 JUNGLE 0
2 False 8547 MIDDLE 0
3 False 7877 BOTTOM 0
4 False 7090 UTILITY 0
5 False 14614 TOP 0
6 False 11533 JUNGLE 1
7 False 12262 MIDDLE 1
8 False 14666 BOTTOM 1
9 False 9562 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 3 3157 3152 0 3158 0 0 3340
1 3 6692 3133 3047 3071 6676 3026 3340
2 3 1055 6673 3006 1018 1038 1037 3340
3 3 6671 3009 6676 0 0 1055 3340
4 3 3853 6653 3020 1011 1052 0 3364
5 0 6692 3074 1031 3047 3133 3053 3340
6 0 3068 2031 3047 3077 3075 0 3340
7 0 3157 6656 3108 3047 3067 1052 3363
8 0 3042 3508 3158 6691 6694 3077 3340
9 0 3853 6617 6616 3158 3504 0 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 0 0 0 0
1 2 15 11 2
2 0 1 0 1
3 0 2 0 1
4 0 1 0 1
5 4 10 4 2
6 3 8 2 1
7 1 7 6 2
8 2 14 8 2
9 1 3 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 334 67745 8646
1 969 10245 1474
2 393 5943 647
3 522 2627 910
4 347 46644 11210
5 500 197 178
6 720 69633 7520
7 226 164442 14291
8 1221 26142 10322
9 1230 49640 14218
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 8161 0 1 0
1 10235 120 1 0
2 10555 8 1 0
3 7590 4 1 0
4 11642 8 1 1
5 6732 40 0 0
6 6012 96 0 0
7 2611 12 0 0
8 4673 12 0 0
9 5280 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 1 1 9564
1 1 2 149643
2 0 3 96762
3 0 4 56884
4 0 5 12292
5 0 6 175059
6 0 7 43267
7 0 8 17047
8 0 9 128426
9 0 10 4646
physicalDamageDealtToChampions physicalDamageTaken role \
0 810 11127 SOLO
1 24577 18040 NONE
2 7125 10458 SOLO
3 7054 7870 CARRY
4 3629 10157 SUPPORT
5 20751 12391 SOLO
6 2817 31448 NONE
7 868 10956 SOLO
8 18625 13174 CARRY
9 1963 13522 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 3 12 14
1 5 4 19 11 12
2 2 4 4 14 20
3 5 7 3 4 61
4 3 12 5 4 21
5 7 14 4 4 22
6 16 11 5 4 237
7 2 12 4 4 13
8 4 4 7 7 28
9 5 3 4 4 18
summonerName teamEarlySurrendered teamId teamPosition \
0 TaryaDark False 100 TOP
1 RyeBreadPitt False 100 JUNGLE
2 KidNolke False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 WhiskeySourPower False 100 UTILITY
5 DankFayden False 200 TOP
6 ImSoVigh False 200 JUNGLE
7 RefitupTrev6 False 200 MIDDLE
8 Iuumy False 200 BOTTOM
9 Deceiver232 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 24 1860 78397 9456
1 32 1860 175803 28043
2 8 1860 105001 8528
3 27 1860 59512 7964
4 17 1860 59768 15670
5 31 1860 179942 22326
6 27 1860 126822 10539
7 42 1860 186026 15160
8 1 1860 164114 28947
9 25 1860 54286 16182
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 19677 2622 111 165
1 29312 10027 61 694
2 21187 2684 155 80
3 15460 2843 112 89
4 21799 1216 53 381
5 19647 7248 175 167
6 38594 19828 24 276
7 13828 6403 233 145
8 18695 3207 182 13
9 19616 10333 40 159
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 215 1 1087
1 124 1 15913
2 280 1 2296
3 165 4 0
4 268 1 830
5 129 1 4685
6 195 1 13921
7 12 1 4536
8 114 3 9545
9 147 5 0
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 388 0 11
1 1991 1036 0 11
2 756 173 0 11
3 0 0 0 11
4 830 0 0 11
5 1396 523 4 0
6 201 1133 1 0
7 0 260 2 0
8 0 847 2 0
9 0 813 1 0
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 24 5 4 13 False
1 20 1 1 11 False
2 18 2 1 9 False
3 18 0 2 9 False
4 31 0 4 11 False
5 32 3 1 13 True
6 26 2 5 11 True
7 23 3 1 10 True
8 14 0 3 5 True
9 34 0 0 18 True ,
assists baronKills bountyLevel champLevel championName \
0 0 0 0 7 Illaoi
1 6 0 0 11 Viego
2 5 0 0 11 Leblanc
3 2 0 8 11 Jhin
4 7 0 0 9 Seraphine
5 2 0 0 13 Thresh
6 5 0 2 11 Rammus
7 5 0 1 11 Diana
8 5 0 1 10 Xayah
9 8 0 0 9 Rakan
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 0 0 0
1 2418 2418 2418
2 140 228 140
3 291 1284 291
4 0 94 0
5 10627 17015 10627
6 0 15156 0
7 4606 6342 4606
8 2234 4412 2234
9 950 3821 950
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 3 0 0 False False
1 8 2 0 False False
2 6 1 0 False False
3 1 0 0 False False
4 7 2 0 False False
5 2 0 0 False False
6 0 3 0 False False
7 3 1 0 False False
8 6 0 0 False True
9 4 1 2 True False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 3318 JUNGLE 0
1 True 7031 JUNGLE 0
2 True 6230 MIDDLE 0
3 True 8245 BOTTOM 0
4 True 5382 UTILITY 0
5 True 9415 TOP 0
6 True 6707 JUNGLE 0
7 True 7350 MIDDLE 2
8 True 9367 BOTTOM 0
9 True 6341 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 2 1054 3067 1055 0 0 0 3340
1 2 6672 3006 1042 1053 1042 0 3364
2 2 2033 0 3020 3108 6655 0 3340
3 2 6671 6676 0 0 3009 1055 3340
4 2 2055 3853 6617 3158 3114 0 3364
5 0 1055 6671 3006 3095 1018 0 3340
6 0 0 3076 1001 0 0 6664 3364
7 0 2033 4636 3020 0 3057 0 3340
8 0 1055 6671 3006 3508 1018 0 3340
9 0 3860 2065 3117 3067 3024 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 0 0 0
1 0 2 0 1
2 1 3 2 1
3 1 8 8 2
4 0 2 0 1
5 1 6 5 1
6 1 2 2 1
7 1 5 3 1
8 2 8 4 3
9 1 4 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 449 0 0
1 327 7289 384
2 471 19088 5985
3 202 3115 1322
4 401 12510 5524
5 892 28613 6375
6 0 55734 4012
7 673 47753 8426
8 334 492 492
9 582 4017 1933
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 2985 0 0 0
1 6659 76 0 0
2 8414 0 0 0
3 1507 2 0 0
4 2494 0 0 0
5 1703 12 0 0
6 2391 89 0 0
7 2973 0 0 0
8 4690 4 0 0
9 2966 8 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 17841
1 0 2 58910
2 0 3 11469
3 0 4 54395
4 0 5 1179
5 0 6 53608
6 0 7 21244
7 0 8 9412
8 0 9 73789
9 0 10 6544
physicalDamageDealtToChampions physicalDamageTaken role \
0 2396 3304 SOLO
1 4759 12424 NONE
2 1364 6773 SOLO
3 9692 6380 CARRY
4 685 8059 SUPPORT
5 4189 8403 CARRY
6 1197 11369 NONE
7 1668 6637 SUPPORT
8 15130 8962 SOLO
9 1188 6296 NONE
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 1 4 1 12 33
1 3 4 13 11 83
2 2 4 2 14 155
3 3 7 3 4 61
4 3 3 3 4 108
5 2 12 1 4 79
6 13 11 1 4 120
7 4 14 3 4 67
8 4 7 2 4 126
9 1 4 4 14 100
summonerName teamEarlySurrendered teamId teamPosition \
0 trinidad69 False 100 TOP
1 Sound Pollution False 100 JUNGLE
2 Misterhighkillz False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 EekaZ False 100 UTILITY
5 thenextguy False 200 TOP
6 MechaRome False 200 JUNGLE
7 envytoxic False 200 MIDDLE
8 ddaya False 200 BOTTOM
9 deanvert False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 0 1256 17841 2396
1 4 1256 79592 5710
2 19 1256 35131 7724
3 22 1256 57877 11080
4 21 1256 13689 6210
5 21 1256 83504 10565
6 17 1256 86624 5701
7 4 1256 60325 10648
8 10 1256 77856 16053
9 14 1256 14637 3484
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 6290 437 26 5
1 19836 7369 30 141
2 15573 2384 78 21
3 8158 3013 95 99
4 10983 3577 5 91
5 10107 2563 121 113
6 13928 6624 7 306
7 10038 716 71 16
8 13836 5056 123 53
9 9489 1692 20 30
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 56 1 0
1 197 1 13392
2 136 1 4574
3 8 2 366
4 101 5 0
5 75 1 1282
6 0 3 9645
7 77 1 3159
8 138 2 3575
9 102 4 4075
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 0 0 7
1 566 752 0 7
2 374 386 0 7
3 66 270 0 7
4 0 430 0 7
5 0 0 5 0
6 492 168 0 0
7 554 427 1 0
8 430 184 1 0
9 362 226 0 0
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 0 0 0 0 False
1 13 3 1 3 False
2 10 1 0 7 False
3 10 0 1 6 False
4 21 5 1 10 False
5 9 0 1 4 True
6 19 3 3 4 True
7 9 1 0 5 True
8 5 0 0 6 True
9 23 1 2 12 True ,
assists baronKills bountyLevel champLevel championName \
0 8 0 1 15 Sett
1 6 0 0 11 Nidalee
2 10 0 1 13 Lux
3 9 0 13 12 Jhin
4 6 0 1 11 Xerath
5 4 0 0 12 Irelia
6 4 0 0 11 Nocturne
7 2 0 0 12 Fizz
8 2 0 0 10 Caitlyn
9 2 0 0 11 Veigar
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 9913 17089 9913
1 1560 13328 1560
2 2221 3396 2221
3 3316 10613 3316
4 1080 5449 1080
5 1832 3136 1832
6 0 8639 0
7 0 1931 0
8 592 592 592
9 1107 1107 1107
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 4 0 0 False True
1 4 1 2 False False
2 2 0 0 False False
3 1 0 1 False False
4 2 0 0 False False
5 9 2 0 False False
6 8 0 0 False False
7 3 1 0 False False
8 5 0 0 False False
9 7 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 11733 TOP 0
1 False 7189 JUNGLE 1
2 False 7617 MIDDLE 0
3 False 10504 BOTTOM 0
4 False 7065 UTILITY 0
5 False 6233 TOP 0
6 False 6708 JUNGLE 0
7 False 8628 MIDDLE 0
8 False 5290 BOTTOM 0
9 False 7162 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1054 6631 3047 3211 3153 3067 3340
1 0 2420 2031 3020 3191 4636 0 3364
2 0 3851 6655 3020 1058 1052 0 3340
3 0 6671 1055 3009 6676 3086 0 3340
4 0 3853 6655 1001 1052 1052 0 3340
5 1 3047 3153 3051 0 0 0 3340
6 1 3006 6693 2031 3134 1018 0 3340
7 1 1056 4636 3020 3100 0 0 3340
8 1 1055 6672 0 0 3006 0 3340
9 1 3853 2031 3020 6653 4632 3108 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 2 9 3 2
1 1 5 3 2
2 0 2 0 1
3 1 13 13 2
4 0 3 0 1
5 0 0 0 0
6 0 2 0 1
7 2 7 4 1
8 0 0 0 0
9 0 4 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 640 1228 1228
1 858 28250 6015
2 530 55087 12981
3 921 2695 1313
4 572 36450 8201
5 267 7553 1902
6 576 5730 377
7 775 21787 8173
8 719 124 124
9 504 28125 10049
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 5288 4 0 0
1 6007 60 0 0
2 2788 0 0 0
3 4391 4 0 0
4 2520 0 0 0
5 5405 0 1 0
6 5796 79 1 0
7 6296 0 1 0
8 5515 0 1 0
9 8336 0 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 107724
1 0 2 13870
2 0 3 11265
3 0 4 69794
4 0 5 3953
5 0 6 49890
6 0 7 64465
7 0 8 16318
8 0 9 50632
9 0 10 3162
physicalDamageDealtToChampions physicalDamageTaken role \
0 15808 13809 SOLO
1 729 10548 NONE
2 1278 2921 SOLO
3 13331 5239 CARRY
4 136 6271 SUPPORT
5 2827 9689 SOLO
6 5012 13582 NONE
7 2044 6433 SOLO
8 4460 7251 CARRY
9 491 7526 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 2 12 877
1 3 4 13 11 62
2 4 4 4 14 38
3 4 7 3 4 61
4 3 4 2 14 82
5 4 4 2 12 47
6 3 4 7 11 147
7 4 14 2 4 54
8 4 7 3 4 107
9 1 14 3 4 121
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 yung hamb False 100 TOP 26
1 Sup3rChick3n False 100 JUNGLE 2
2 saucyyuh False 100 MIDDLE 35
3 Dublaiar False 100 BOTTOM 19
4 Aluerad False 100 UTILITY 17
5 Dojjaaa False 200 TOP 9
6 theGreneKnight False 200 JUNGLE 96
7 DrWolfe False 200 MIDDLE 9
8 brownsuga27 False 200 BOTTOM 3
9 covidARDS False 200 UTILITY 38
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1439 115738 18551
1 1439 53598 7295
2 1439 70140 15208
3 1439 73104 14825
4 1439 40643 8577
5 1439 60049 4730
6 1439 75529 5390
7 1439 40515 11011
8 1439 57138 4584
9 1439 31463 10650
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 19247 1811 152 165
1 16846 7597 14 129
2 6063 531 122 295
3 9740 4703 94 78
4 8792 1585 37 95
5 16850 1338 109 45
6 19749 6658 13 304
7 13329 1231 86 83
8 12991 2713 85 9
9 16345 66 32 142
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 142 1 6785
1 132 4 11477
2 51 1 3788
3 14 3 614
4 43 1 240
5 261 1 2605
6 184 1 5333
7 109 1 2409
8 94 2 6381
9 166 1 176
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1514 150 3 1
1 550 290 1 1
2 948 354 0 1
3 180 110 3 1
4 240 0 0 1
5 0 1755 1 7
6 0 370 0 7
7 794 599 0 7
8 0 224 0 7
9 110 482 0 7
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 12 0 1 8 True
1 22 1 2 2 True
2 20 0 1 12 True
3 9 0 0 8 True
4 22 0 1 11 True
5 16 2 0 8 False
6 6 0 0 3 False
7 8 1 0 6 False
8 1 0 0 1 False
9 27 1 0 8 False ,
assists baronKills bountyLevel champLevel championName \
0 5 0 0 14 Kennen
1 2 0 0 12 Tryndamere
2 6 0 0 14 Yasuo
3 5 0 0 13 Ezreal
4 2 0 0 11 Gragas
5 5 0 1 15 Yorick
6 7 0 7 14 FiddleSticks
7 11 0 0 15 Malphite
8 4 0 1 13 Tristana
9 11 0 0 12 Braum
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 998 4857 998
1 974 18664 974
2 3317 3317 3317
3 379 5679 379
4 0 588 0
5 9321 14012 9321
6 1346 8358 1346
7 1222 3320 1222
8 8918 13581 8918
9 1005 1103 1005
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 4 2 0 False False
1 7 1 1 False True
2 5 0 0 True False
3 4 0 0 False False
4 5 0 0 False False
5 2 1 0 False False
6 6 0 2 False False
7 4 1 1 False False
8 4 3 0 False False
9 0 6 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 9192 TOP 0
1 True 8873 JUNGLE 0
2 True 9598 MIDDLE 0
3 True 7667 BOTTOM 0
4 True 6688 UTILITY 0
5 True 9076 TOP 0
6 True 11210 JUNGLE 0
7 True 11002 MIDDLE 0
8 True 9512 BOTTOM 0
9 True 6612 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3152 1055 3020 1082 3135 3191 3340
1 0 3123 6675 6672 2422 0 0 3364
2 0 3031 3006 6673 1053 0 0 3340
3 0 3042 6632 0 3158 0 0 3340
4 0 3853 6691 1001 3070 3133 1036 3340
5 0 6632 3053 3111 1054 0 0 3340
6 0 6653 3020 4637 1052 0 0 3330
7 0 3067 3047 3068 0 3075 3108 3340
8 0 3095 3006 6672 1036 0 0 3340
9 0 3857 3190 3024 3067 3111 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 3 2 2
1 2 6 2 2
2 0 3 0 1
3 0 2 0 1
4 1 2 2 1
5 0 3 0 1
6 2 9 7 3
7 2 10 6 1
8 0 3 0 1
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 1173 68942 18706
1 871 6599 0
2 675 7741 1266
3 1104 8818 3921
4 760 16517 5389
5 1240 12646 3507
6 339 100581 12000
7 771 45661 18983
8 620 19116 1023
9 0 8455 6578
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 9529 8 0 0
1 9721 107 0 0
2 10790 4 0 0
3 5558 0 0 0
4 9170 9 0 0
5 8701 8 0 0
6 7266 104 0 0
7 8829 8 0 1
8 2816 0 0 0
9 3362 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 30396
1 0 2 103315
2 0 3 95956
3 0 4 65450
4 0 5 9658
5 0 6 85029
6 0 7 7829
7 0 8 40949
8 0 9 89791
9 1 10 10924
physicalDamageDealtToChampions physicalDamageTaken role \
0 4104 10451 SOLO
1 7535 17920 NONE
2 12949 8657 SOLO
3 7988 6459 CARRY
4 1931 6823 SUPPORT
5 6603 13839 SOLO
6 304 16816 NONE
7 5735 8266 SOLO
8 7030 8873 CARRY
9 752 8153 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 2 12 210
1 17 11 4 4 49
2 3 14 3 4 111
3 4 7 3 4 61
4 5 4 6 14 75
5 4 4 2 12 68
6 4 4 9 11 41
7 6 14 3 4 147
8 2 4 2 7 62
9 3 4 3 3 148
summonerName teamEarlySurrendered teamId teamPosition \
0 xxJJonakxx False 100 TOP
1 RodWinMasTer False 100 JUNGLE
2 waffles for now False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 HorseHeadThe1st False 100 UTILITY
5 zelse07 False 200 TOP
6 Omega Ultima False 200 JUNGLE
7 SubduedFate False 200 MIDDLE
8 Krockerdile False 200 BOTTOM
9 SpilledTea555 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 32 1703 116926 23996
1 9 1703 122523 8558
2 19 1703 108388 14996
3 0 1703 80618 11909
4 33 1703 27072 8217
5 6 1703 99830 10231
6 39 1703 113227 12711
7 43 1703 89102 26722
8 1 1703 124767 8054
9 30 1703 24834 7331
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 20409 2696 129 147
1 28158 13242 13 189
2 20355 5842 161 94
3 12445 1412 122 0
4 16243 4185 21 137
5 23704 6621 140 78
6 24653 13493 34 440
7 18426 820 113 453
8 12120 3630 148 10
9 11906 3295 34 139
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 128 1 17586
1 205 1 12608
2 134 1 4690
3 107 2 6350
4 113 1 896
5 86 1 2154
6 136 1 4816
7 145 1 2491
8 116 2 15858
9 0 5 5453
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1185 427 0 8
1 1023 516 1 8
2 780 907 1 8
3 0 428 0 8
4 896 249 0 8
5 120 1163 3 2
6 406 570 1 2
7 2003 1330 1 2
8 0 430 3 2
9 0 390 0 2
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 14 2 0 8 False
1 11 1 0 2 False
2 12 0 0 7 False
3 13 0 2 6 False
4 13 0 4 4 False
5 8 1 1 4 True
6 30 0 3 0 True
7 14 1 0 9 True
8 27 3 2 11 True
9 46 8 0 24 True ,
assists baronKills bountyLevel champLevel championName \
0 0 0 2 16 Jax
1 3 0 0 12 Nasus
2 4 0 0 14 Diana
3 5 0 0 11 Aphelios
4 2 0 0 12 Morgana
5 6 0 2 15 Gnar
6 9 1 0 15 Ivern
7 2 0 0 13 Katarina
8 2 0 3 12 Tristana
9 7 0 2 14 Shaco
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 9246 23859 9246
1 0 8635 0
2 1708 9233 1708
3 1160 2932 1160
4 107 107 107
5 3106 16315 3106
6 0 7051 0
7 1587 3702 1587
8 2829 3136 2829
9 0 3443 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 2 0 False False
1 3 0 1 False False
2 4 3 1 False True
3 6 0 0 False False
4 3 1 0 False False
5 5 0 0 False False
6 1 0 1 False False
7 10 0 0 False False
8 4 0 0 False False
9 2 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 12475 TOP 1
1 True 8527 JUNGLE 0
2 True 8981 MIDDLE 0
3 True 6884 BOTTOM 0
4 True 7823 UTILITY 0
5 True 8908 TOP 0
6 True 10453 JUNGLE 0
7 True 6886 MIDDLE 0
8 True 8958 BOTTOM 0
9 True 9215 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3153 2033 3078 3077 1028 3047 3340
1 0 3158 6632 2031 3110 1018 0 3340
2 0 3152 3157 1056 3020 1052 1052 3340
3 0 6671 1055 3006 2015 1018 0 3340
4 0 3853 3157 3802 1026 0 3020 3364
5 1 1055 3053 6631 3047 0 0 3340
6 1 4636 6616 3158 4629 0 0 3340
7 1 3153 3020 1018 2003 1042 1037 3340
8 1 1055 6672 1018 2031 2015 3006 3340
9 1 6653 3853 3158 3070 4629 0 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 2 8 3 1
1 1 4 3 1
2 1 6 4 1
3 0 0 0 0
4 2 4 2 1
5 1 4 2 2
6 1 4 4 1
7 0 1 0 1
8 1 5 3 3
9 2 6 3 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 451 34142 4252
1 721 35834 2673
2 596 84429 13107
3 821 1614 412
4 1167 36438 10232
5 325 9703 1658
6 1702 24539 10126
7 267 29245 4250
8 833 13365 1225
9 821 33983 15147
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 5884 13 0 0
1 11725 124 0 0
2 5011 12 0 0
3 7174 4 0 0
4 5753 0 0 0
5 7262 6 0 0
6 6360 160 0 0
7 8176 0 0 0
8 5973 0 0 0
9 4429 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 131482
1 0 2 105271
2 0 3 20045
3 0 4 58179
4 0 5 4456
5 0 6 91326
6 0 7 10267
7 0 8 32942
8 0 9 46461
9 0 10 7524
physicalDamageDealtToChampions physicalDamageTaken role \
0 11503 16397 SOLO
1 5470 26523 NONE
2 1989 8938 SOLO
3 6241 7782 CARRY
4 808 4802 SUPPORT
5 10571 11004 SOLO
6 5319 5106 NONE
7 2884 10634 SOLO
8 9005 4715 CARRY
9 155 8304 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 5 4 3 12 351
1 4 4 19 11 69
2 4 14 4 4 48
3 4 7 3 4 61
4 5 14 2 4 321
5 3 12 4 4 116
6 20 11 4 4 57
7 2 14 4 4 33
8 4 7 3 4 70
9 3 3 3 4 36
summonerName teamEarlySurrendered teamId teamPosition \
0 Silvers Misery False 100 TOP
1 Landen4 False 100 JUNGLE
2 amvggx False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 Th0tness M0nster False 100 UTILITY
5 adizzzle False 200 TOP
6 THEMOVINGTREE False 200 JUNGLE
7 asapjung False 200 MIDDLE
8 Kalelmaxey12 False 200 BOTTOM
9 Raphlegros False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 21 1724 176392 15792
1 13 1724 153029 8746
2 5 1724 109961 15988
3 9 1724 68156 6653
4 36 1724 42000 11949
5 28 1724 110408 12581
6 51 1724 486327 15599
7 0 1724 85065 7356
8 2 1724 62753 11010
9 47 1724 41700 15303
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 22637 3243 194 145
1 38498 11227 16 585
2 14337 1705 132 35
3 15247 4608 85 149
4 10779 1719 29 71
5 18785 3502 118 449
6 11599 5133 14 265
7 19361 2027 117 5
8 11575 3083 106 7
9 13086 1246 23 334
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 173 1 10767
1 94 1 11923
2 104 1 5487
3 199 4 8362
4 107 1 1105
5 144 1 9378
6 0 1 451521
7 268 1 22877
8 125 2 2925
9 58 1 192
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 36 356 4 2
1 602 248 0 2
2 892 387 0 2
3 0 290 1 2
4 908 223 0 2
5 352 518 1 5
6 154 132 0 5
7 222 550 0 5
8 779 886 1 5
9 0 352 0 5
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 23 2 0 10 True
1 15 0 0 8 True
2 24 3 1 12 True
3 14 0 0 9 True
4 52 1 1 25 True
5 11 0 1 6 False
6 14 0 0 4 False
7 13 0 2 7 False
8 3 0 2 0 False
9 15 0 0 12 False ,
assists baronKills bountyLevel champLevel championName \
0 10 0 0 14 Darius
1 7 0 0 13 Poppy
2 12 0 1 14 Vladimir
3 9 0 0 13 Xayah
4 15 1 0 12 Senna
5 9 0 2 14 Braum
6 7 0 0 11 Amumu
7 6 0 6 15 Yone
8 7 0 0 12 Aphelios
9 19 0 1 14 Yuumi
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3635 5920 3635
1 780 10682 780
2 3186 5827 3186
3 8984 19229 8984
4 4476 7435 4476
5 0 0 0
6 0 565 0
7 502 3993 502
8 0 925 0
9 0 0 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 1 0 True False
1 7 0 3 False True
2 6 1 0 True False
3 6 0 0 False False
4 3 4 0 False False
5 7 0 0 False False
6 11 0 0 False False
7 8 0 0 False False
8 11 0 0 False False
9 3 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False True False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 12670 TOP 1
1 False 8791 JUNGLE 0
2 False 13381 MIDDLE 1
3 False 9972 BOTTOM 0
4 False 9785 UTILITY 1
5 False 9161 TOP 0
6 False 6114 JUNGLE 0
7 False 15262 MIDDLE 0
8 False 7201 BOTTOM 0
9 False 6777 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3053 1028 6631 3742 3111 3076 3340
1 0 3742 2031 6632 3047 0 0 3340
2 0 3135 3158 4636 4629 0 3157 3340
3 0 1055 6672 3006 3508 1038 2003 3340
4 0 3864 6676 3009 2055 6672 2015 3364
5 3 1055 3006 6672 3748 0 0 3340
6 3 6653 3076 1011 1001 0 0 3340
7 3 6333 6673 3033 3006 3072 1038 3340
8 3 6672 1055 3086 3006 1042 1042 3340
9 3 3853 6617 6616 1052 3114 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 10 5 2
1 1 4 3 1
2 4 18 7 2
3 1 4 2 1
4 2 4 2 1
5 2 7 3 2
6 0 1 0 1
7 3 15 6 2
8 0 2 0 1
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 1052 1385 604
1 415 9270 582
2 401 115668 43155
3 654 0 0
4 895 207 0
5 398 12484 5456
6 453 44048 6942
7 332 29980 6469
8 605 846 337
9 970 9208 5558
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 6672 8 0 0
1 4236 94 0 1
2 8356 5 0 0
3 4639 8 0 0
4 2100 4 0 0
5 5720 8 1 0
6 9959 60 1 0
7 18965 0 1 0
8 8779 0 1 0
9 1705 0 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 85636
1 0 2 79434
2 0 3 11072
3 0 4 92978
4 0 5 35680
5 0 6 40646
6 0 7 10485
7 0 8 130008
8 0 9 58572
9 0 10 475
physicalDamageDealtToChampions physicalDamageTaken role \
0 14009 19441 SOLO
1 8699 15701 NONE
2 1645 19582 DUO
3 9797 10334 DUO
4 9897 7080 SUPPORT
5 7401 16254 SOLO
6 522 14814 NONE
7 20816 16838 SOLO
8 10769 12581 CARRY
9 138 2872 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 6 3 4 133
1 3 4 10 11 72
2 5 4 8 14 115
3 2 4 2 7 27
4 4 21 2 4 71
5 6 14 4 4 223
6 4 4 9 11 65
7 5 4 7 14 69
8 4 7 3 4 61
9 3 3 4 14 49
summonerName teamEarlySurrendered teamId teamPosition \
0 Crandaddy Purp False 100 TOP
1 xXJoeyyyXx False 100 JUNGLE
2 TheFirst3viL False 100 MIDDLE
3 TheSexySinWrath False 100 BOTTOM
4 PupperoniDogfart False 100 UTILITY
5 Wolf and Lamp False 200 TOP
6 Harryfraud064 False 200 JUNGLE
7 EEEzz False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 lisayeqwq False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 33 1712 91814 18964
1 32 1712 94311 9912
2 9 1712 131168 45905
3 9 1712 101845 10535
4 47 1712 43184 10854
5 39 1712 61790 15066
6 24 1712 59803 8296
7 29 1712 186804 31089
8 8 1712 65111 11326
9 18 1712 10384 6396
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 28857 5207 140 261
1 23094 7280 17 453
2 30503 29693 109 137
3 15633 3368 100 42
4 9818 7182 21 141
5 25428 3311 77 132
6 25815 5887 6 167
7 37124 8710 162 206
8 22627 3300 84 106
9 5277 14539 4 30
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 210 1 4792
1 198 1 5606
2 204 1 4427
3 199 2 8866
4 99 5 7296
5 143 1 8659
6 279 1 5269
7 221 1 26815
8 289 4 5692
9 96 5 699
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 4350 2742 1 0
1 630 3156 0 0
2 1104 2565 2 0
3 738 658 5 0
4 957 637 0 0
5 2208 3453 0 10
6 831 1042 0 10
7 3802 1320 0 10
8 219 1266 0 10
9 699 699 0 10
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 14 1 1 8 True
1 19 0 0 8 True
2 27 1 0 10 True
3 7 0 0 5 True
4 48 5 5 19 True
5 5 0 0 4 False
6 1 0 0 1 False
7 8 0 0 7 False
8 12 0 2 6 False
9 18 2 0 10 False ,
assists baronKills bountyLevel champLevel championName \
0 17 0 1 14 Rammus
1 9 0 3 17 Teemo
2 5 0 0 15 Kled
3 7 0 0 17 Tristana
4 10 0 0 15 Graves
5 1 0 0 18 Mordekaiser
6 7 0 0 15 Kindred
7 4 0 1 16 Malzahar
8 5 0 0 13 Aphelios
9 5 0 0 14 Morgana
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 0 11310 0
1 4453 4453 4453
2 4893 6529 4893
3 13349 22003 13349
4 4989 19602 4989
5 0 0 0
6 0 15977 0
7 487 487 487
8 1379 1379 1379
9 1073 1073 1073
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 4 0 3 False False
1 8 0 0 False False
2 3 0 0 False False
3 6 0 1 True False
4 6 0 0 False True
5 6 0 0 False False
6 11 8 1 False False
7 5 3 0 False False
8 10 0 0 False False
9 10 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 True False False
4 False True False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 10514 JUNGLE 0
1 False 13443 TOP 0
2 False 11406 MIDDLE 0
3 False 16115 BOTTOM 2
4 False 12342 UTILITY 3
5 False 15520 TOP 0
6 False 9710 JUNGLE 0
7 False 11989 MIDDLE 0
8 False 9225 BOTTOM 0
9 False 8658 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 6664 2031 3075 3111 1033 0 3340
1 0 6653 4637 3165 1058 3020 0 3340
2 0 1055 6630 3111 3071 1053 1036 3340
3 0 3033 6671 3006 3094 3095 3031 3340
4 0 3857 1037 6673 3006 3072 1038 3364
5 5 3075 3111 4633 3065 4637 1026 3364
6 5 3006 6676 6671 2055 1036 0 3364
7 5 4637 1057 3020 6653 1011 0 3364
8 5 3006 1055 6672 3085 3123 1042 3340
9 5 3157 3853 4637 4005 0 0 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 1 4 2 2
1 4 13 4 2
2 2 6 3 1
3 3 11 5 1
4 2 8 3 1
5 5 16 5 2
6 0 0 0 0
7 1 5 2 1
8 1 3 2 1
9 1 3 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 855 62743 7462
1 408 99514 42791
2 674 0 0
3 612 43045 4610
4 683 642 491
5 566 113178 21977
6 475 29427 3350
7 771 142129 25585
8 455 1053 645
9 433 46571 13389
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 9746 97 0 0
1 14944 4 0 0
2 21160 41 0 0
3 9910 30 0 0
4 12719 33 0 0
5 22128 4 1 0
6 9425 96 1 1
7 6124 5 1 0
8 9159 0 1 0
9 9121 0 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 20330
1 0 2 35301
2 0 3 116999
3 0 4 188231
4 0 5 125914
5 0 6 17770
6 0 7 116662
7 0 8 18664
8 0 9 78518
9 0 10 3517
physicalDamageDealtToChampions physicalDamageTaken role \
0 1348 10630 NONE
1 5131 6029 SOLO
2 14819 10072 SOLO
3 23557 13802 CARRY
4 21177 13180 SUPPORT
5 3073 20555 SOLO
6 8258 25356 NONE
7 1380 17042 SOLO
8 11268 13840 CARRY
9 1158 14977 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 16 11 0 4 95
1 5 12 4 4 111
2 2 14 1 4 57
3 5 7 3 4 32
4 5 14 2 4 77
5 4 4 2 12 144
6 4 4 14 11 192
7 2 12 5 4 235
8 5 7 4 4 61
9 5 14 5 4 60
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 MrPufferfish2 False 100 JUNGLE 20
1 MrTurtle22 False 100 TOP 58
2 Hockeyed False 100 MIDDLE 7
3 HoneyJo False 100 BOTTOM 6
4 Rivalen415 False 100 UTILITY 18
5 Aldragine False 200 TOP 7
6 Tsumikisama False 200 JUNGLE 6
7 Thor933 False 200 MIDDLE 63
8 Dublaiar False 200 BOTTOM 14
9 Aspectron False 200 UTILITY 38
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 2147 89840 9494
1 2147 135742 48119
2 2147 117177 14997
3 2147 232509 28672
4 2147 134659 22568
5 2147 134388 26504
6 2147 186701 12312
7 2147 172516 27044
8 2147 90154 12786
9 2147 51159 15618
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 21461 7302 17 377
1 21381 1956 167 422
2 32382 4069 128 85
3 24312 11856 236 67
4 29837 6056 76 177
5 43888 13834 162 101
6 35109 13962 65 195
7 23546 4743 208 384
8 23438 5226 116 111
9 24211 3383 44 76
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 125 5 6766
1 273 1 926
2 115 1 178
3 183 3 1232
4 182 1 8102
5 191 1 3438
6 306 9 40612
7 158 1 11723
8 313 2 10582
9 239 1 1070
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 684 1085 0 1
1 196 407 0 1
2 178 1149 1 1
3 504 599 3 1
4 900 3937 6 1
5 1454 1204 0 11
6 703 328 1 11
7 78 380 0 11
8 872 438 0 11
9 1070 112 0 11
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 14 0 2 5 True
1 14 0 2 7 True
2 20 0 2 8 True
3 16 0 1 9 True
4 17 0 1 8 True
5 7 0 0 2 False
6 18 9 1 9 False
7 15 3 1 8 False
8 17 0 1 9 False
9 35 0 0 25 False ,
assists baronKills bountyLevel champLevel championName \
0 4 0 4 17 Renekton
1 4 0 0 17 Viego
2 10 1 0 17 Yone
3 15 0 0 15 Aphelios
4 7 0 0 14 Pyke
5 10 0 0 15 Gangplank
6 6 0 0 15 Kayn
7 6 0 0 16 Viktor
8 6 0 2 14 Tristana
9 10 0 0 14 Lulu
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 6227 23297 6227
1 4203 23320 4203
2 3802 12113 3802
3 5724 28209 5724
4 325 6087 325
5 0 3962 0
6 0 3237 0
7 0 1790 0
8 550 550 550
9 97 599 97
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 2 0 0 False False
1 9 1 2 False False
2 4 0 1 False False
3 3 0 2 True False
4 7 2 0 False True
5 8 0 0 False False
6 11 0 0 False False
7 5 2 0 False False
8 9 0 0 False False
9 12 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False True False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 14788 TOP 2
1 False 13763 JUNGLE 1
2 False 13706 MIDDLE 0
3 False 12380 BOTTOM 0
4 False 10428 UTILITY 0
5 False 10299 TOP 0
6 False 12403 JUNGLE 0
7 False 10239 MIDDLE 0
8 False 10025 BOTTOM 0
9 False 7963 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 6630 3047 3053 3071 1031 3133 3340
1 0 6672 3153 3006 6676 3133 1037 3364
2 0 3031 3006 6673 3072 3133 1036 3340
3 0 2420 3072 3006 3085 6672 1029 3363
4 0 3857 3142 2055 6691 3009 1031 3364
5 3 6673 3158 3508 3033 0 0 3340
6 3 3042 6694 6693 3158 1037 1036 3363
7 3 3191 2421 3100 1056 3020 6655 3364
8 3 6672 1055 3095 3006 0 3123 3340
9 3 3853 6617 3158 6616 3114 1052 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 3 11 5 2
1 3 11 2 2
2 4 11 4 2
3 1 4 3 1
4 2 8 3 2
5 1 3 2 2
6 3 12 4 2
7 0 3 0 1
8 1 4 2 2
9 1 3 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 1009 3983 917
1 812 10609 1886
2 1023 22743 6894
3 1019 608 389
4 863 0 0
5 521 11145 5358
6 805 9251 3647
7 829 132415 19314
8 583 20966 1812
9 320 13964 6016
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 11892 4 0 0
1 6515 129 0 0
2 7854 28 0 0
3 5293 12 0 0
4 6105 0 0 0
5 3392 12 1 0
6 3639 112 1 0
7 2163 11 1 0
8 916 0 1 0
9 1983 0 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 162248
1 0 2 137525
2 0 3 109802
3 0 4 115877
4 0 5 27806
5 0 6 103559
6 0 7 113757
7 0 8 21546
8 0 9 77905
9 0 10 2528
physicalDamageDealtToChampions physicalDamageTaken role \
0 16347 19210 SOLO
1 21653 30510 NONE
2 22553 16776 SOLO
3 16397 11294 NONE
4 10573 16024 SOLO
5 11898 21990 SOLO
6 26435 29882 NONE
7 1122 16791 CARRY
8 13251 20324 SOLO
9 632 19266 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 12 2 4 25
1 5 4 17 11 237
2 6 7 4 4 97
3 4 7 4 4 61
4 5 4 6 14 29
5 12 11 2 4 77
6 4 4 18 11 109
7 9 11 4 4 56
8 3 4 2 11 56
9 5 4 0 11 85
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 LilHammster False 100 TOP 13
1 UwU warrior False 100 JUNGLE 18
2 TheShankJr False 100 MIDDLE 30
3 Dublaiar False 100 BOTTOM 15
4 Vyshadows False 100 UTILITY 16
5 Shuiga1 False 200 TOP 12
6 TSGShadowDawg False 200 JUNGLE 10
7 Kuuki Cookie False 200 MIDDLE 25
8 WatchLong False 200 BOTTOM 2
9 xkkir False 200 UTILITY 37
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1932 171916 17668
1 1932 175470 27153
2 1932 145563 30067
3 1932 139404 18638
4 1932 39555 12816
5 1932 128944 18545
6 1932 132687 30635
7 1932 161762 20436
8 1932 108281 16126
9 1932 16510 6667
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 32750 12584 193 27
1 38102 17000 37 234
2 26302 4110 116 96
3 16587 7326 159 138
4 22656 6925 33 68
5 27516 5207 139 270
6 35343 13897 11 272
7 20101 1938 202 307
8 23399 3848 145 40
9 22721 3075 18 195
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 83 1 5683
1 319 2 27336
2 131 1 13016
3 118 2 22919
4 249 1 11748
5 267 1 14240
6 373 1 9678
7 214 1 7800
8 310 1 9408
9 341 5 18
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 403 1647 3 0
1 3612 1075 2 0
2 619 1672 2 0
3 1851 0 3 0
4 2243 525 0 0
5 1287 2132 0 11
6 552 1821 0 11
7 0 1146 0 11
8 1063 2158 0 11
9 18 1471 0 11
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 13 0 1 7 True
1 35 1 2 1 True
2 4 0 0 2 True
3 17 0 0 9 True
4 36 3 3 13 True
5 7 0 0 4 False
6 4 0 1 2 False
7 18 4 0 8 False
8 10 0 1 6 False
9 39 0 2 21 False ,
assists baronKills bountyLevel champLevel championName \
0 2 0 0 14 Yorick
1 1 0 0 10 Zac
2 4 0 0 13 Seraphine
3 2 0 0 11 Aphelios
4 5 0 0 11 Lux
5 6 0 8 14 Urgot
6 9 0 1 13 Amumu
7 10 0 0 14 Neeko
8 8 0 3 12 Jhin
9 7 0 0 11 Blitzcrank
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 6663 8776 6663
1 0 1954 0
2 836 4315 836
3 1491 1772 1491
4 666 2926 666
5 2938 26560 2938
6 0 15164 0
7 502 1330 502
8 0 2346 0
9 139 1838 139
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 1 0 False False
1 7 0 0 False False
2 3 4 0 False False
3 3 1 0 False False
4 3 3 0 False False
5 0 1 1 False False
6 3 1 2 False False
7 2 1 0 False False
8 0 0 1 False False
9 4 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 8877 TOP 0
1 True 6462 JUNGLE 0
2 True 7128 MIDDLE 0
3 True 7583 BOTTOM 0
4 True 6290 UTILITY 0
5 True 11299 TOP 0
6 True 8853 JUNGLE 0
7 True 7726 MIDDLE 0
8 True 7799 BOTTOM 0
9 True 5879 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 2033 6632 3047 3053 0 0 3363
1 0 6664 2422 3083 0 0 0 3340
2 0 6655 3020 2420 3108 0 0 3363
3 0 1055 6672 3006 3086 1042 1042 3340
4 0 3853 3158 6653 0 0 0 3340
5 0 2031 6630 3047 3077 3071 1029 3340
6 0 3068 1052 3111 3076 1026 1011 3364
7 0 2421 3020 2033 2055 6655 1029 3340
8 0 6671 1055 1018 3009 1036 1037 3340
9 0 3860 3190 2031 1011 3117 1029 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 2 0 1
1 0 1 0 1
2 0 1 0 1
3 0 3 0 1
4 0 1 0 1
5 1 8 8 2
6 2 5 2 1
7 1 3 3 1
8 1 3 3 1
9 0 2 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 894 10325 4654
1 506 57233 2964
2 656 87026 10190
3 867 2303 210
4 600 38411 14240
5 0 0 0
6 802 83024 6405
7 1108 54227 13451
8 0 2108 396
9 574 3813 2490
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 4969 0 0 0
1 8766 108 0 0
2 6138 0 0 0
3 3093 0 0 0
4 2550 0 0 0
5 6323 12 0 0
6 8309 123 0 0
7 7585 8 0 0
8 6250 4 0 0
9 6438 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 80401
1 0 2 18931
2 0 3 8664
3 0 4 71403
4 0 5 2782
5 0 6 148582
6 0 7 21762
7 0 8 13784
8 0 9 70772
9 0 10 4812
physicalDamageDealtToChampions physicalDamageTaken role \
0 3792 11366 SOLO
1 382 21620 NONE
2 889 2856 SOLO
3 10201 4975 CARRY
4 430 2227 SUPPORT
5 13202 7073 DUO
6 1274 14512 NONE
7 1166 4104 DUO
8 8287 5017 CARRY
9 1152 7197 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 4 1 12 135
1 12 11 2 4 60
2 3 4 6 14 322
3 4 4 2 3 65
4 1 14 2 4 62
5 2 12 2 4 52
6 3 4 12 11 46
7 3 4 4 14 48
8 2 7 2 4 61
9 2 3 0 4 51
summonerName teamEarlySurrendered teamId teamPosition \
0 Stormcrow Undun False 100 TOP
1 IkkiAsime False 100 JUNGLE
2 Meghan Sparkle False 100 MIDDLE
3 scripps False 100 BOTTOM
4 FallenAngel2326 False 100 UTILITY
5 Schemen False 200 TOP
6 LurkinDemise False 200 JUNGLE
7 Lexehon False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 ihardlyknowXLI False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 6 1545 98864 8446
1 18 1545 83857 3801
2 24 1545 101586 12257
3 4 1545 80586 10968
4 57 1545 42602 15699
5 11 1545 164871 15022
6 26 1545 119071 9545
7 58 1545 72025 15511
8 16 1545 74615 10378
9 14 1545 14789 3739
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 17909 2765 150 77
1 34957 25160 3 457
2 9378 1231 130 357
3 8328 1405 133 68
4 4832 0 21 251
5 13655 2986 176 54
6 23195 11249 14 127
7 13080 2274 118 180
8 11724 5377 133 98
9 14055 1350 25 47
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 155 1 8136
1 149 3 7692
2 60 1 5895
3 58 1 6879
4 43 0 1408
5 0 1 16289
6 83 1 14285
7 82 1 4013
8 0 2 1734
9 65 1 6163
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 1574 2 2
1 454 4569 0 2
2 1178 383 0 2
3 555 259 1 2
4 1028 54 0 2
5 1819 257 1 3
6 1864 374 0 3
7 892 1391 0 3
8 1695 455 0 3
9 96 419 1 3
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 20 1 2 9 False
1 14 0 0 6 False
2 24 5 1 14 False
3 17 1 2 8 False
4 35 3 2 21 False
5 28 1 2 9 True
6 21 1 5 2 True
7 26 2 5 9 True
8 15 0 3 7 True
9 34 2 3 20 True ,
assists baronKills bountyLevel champLevel championName \
0 2 0 0 13 Chogath
1 3 0 0 10 Ekko
2 1 0 0 11 Yasuo
3 5 0 0 12 Aphelios
4 3 0 0 11 Morgana
5 3 0 0 13 Rumble
6 5 0 0 13 Kindred
7 3 0 1 14 Ezreal
8 3 0 3 12 MissFortune
9 5 0 0 10 Gragas
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3592 3592 3592
1 0 6152 0
2 1125 1580 1125
3 0 3292 0
4 123 1248 123
5 4015 4015 4015
6 0 8290 0
7 2018 3945 2018
8 5029 7319 5029
9 641 3702 641
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 4 0 0 False True
1 3 2 1 False False
2 4 1 0 False False
3 2 0 0 False False
4 2 0 0 False False
5 7 1 0 False False
6 2 0 2 False False
7 2 0 0 False False
8 0 2 0 False False
9 2 1 1 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 9649 TOP 0
1 True 6412 JUNGLE 0
2 True 6881 MIDDLE 0
3 True 7391 BOTTOM 0
4 True 5099 UTILITY 0
5 True 8303 TOP 0
6 True 8985 JUNGLE 0
7 True 7842 MIDDLE 0
8 True 8364 BOTTOM 0
9 True 5519 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1056 3152 3020 3135 3076 1011 3340
1 0 3152 3020 2031 2423 3108 0 3364
2 0 1055 3006 6673 1036 0 0 3340
3 0 6672 3006 3086 1042 1042 1055 3340
4 0 3853 6655 2423 3020 0 0 3340
5 0 3801 2031 6664 1006 3065 3067 3340
6 0 6673 2031 3006 3134 1037 1018 3340
7 0 1055 3158 3042 3508 1036 0 3340
8 0 6672 3006 1036 1038 0 0 3340
9 0 3020 3853 4636 1052 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 7 3 1
1 1 2 2 1
2 1 2 2 1
3 0 2 0 1
4 0 0 0 0
5 1 3 2 2
6 1 4 4 2
7 1 4 3 1
8 1 3 3 2
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 738 54162 12960
1 1259 63229 4088
2 625 5795 864
3 1127 824 330
4 892 20533 4486
5 357 57023 9434
6 882 22405 1425
7 995 10597 3558
8 0 3596 607
9 585 23774 9347
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 10020 4 0 0
1 4464 84 0 0
2 2367 4 0 0
3 4172 4 0 0
4 4376 0 0 0
5 9581 0 0 0
6 7939 148 0 0
7 1669 0 0 0
8 1457 4 0 0
9 5133 4 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 14699
1 0 2 17112
2 0 3 61545
3 0 4 56288
4 0 5 3203
5 0 6 13571
6 0 7 89237
7 0 8 65569
8 0 9 72227
9 0 10 2292
physicalDamageDealtToChampions physicalDamageTaken role \
0 2456 9926 SOLO
1 887 16497 NONE
2 7253 8607 SOLO
3 8745 6719 CARRY
4 348 2929 SUPPORT
5 1476 9596 SOLO
6 9578 16912 NONE
7 4916 7432 SOLO
8 4554 3520 CARRY
9 824 7062 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 12 1 4 130
1 12 11 1 4 30
2 2 4 4 14 124
3 3 7 3 4 61
4 2 14 2 4 56
5 2 12 3 14 66
6 3 4 13 11 110
7 4 4 2 14 84
8 3 7 2 4 75
9 3 4 4 14 98
summonerName teamEarlySurrendered teamId teamPosition \
0 BEEN IT False 100 TOP
1 Cub1k False 100 JUNGLE
2 ORANGE43 False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 IamMeera False 100 UTILITY
5 UmbraLiege False 200 TOP
6 Zaldus False 200 JUNGLE
7 Daiatchix False 200 MIDDLE
8 CinnaWarMaiden False 200 BOTTOM
9 Sir Wee of Snaw False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 67 1521 73990 19077
1 14 1521 86885 5208
2 9 1521 81185 8637
3 10 1521 67594 10044
4 42 1521 24116 5214
5 12 1521 73583 11488
6 3 1521 121005 11088
7 0 1521 80662 8651
8 5 1521 83012 5421
9 20 1521 26530 10636
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 20720 4969 109 439
1 21103 10047 19 403
2 11288 2645 114 63
3 11068 4320 111 103
4 7461 1392 18 49
5 22923 1640 124 172
6 25774 13730 7 202
7 9684 2158 109 0
8 5086 2036 156 113
9 12599 6176 9 161
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 137 1 5128
1 68 1 6544
2 134 1 13845
3 64 2 10480
4 65 4 380
5 193 1 2989
6 53 8 9362
7 51 1 4496
8 0 3 7188
9 39 1 464
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 3660 774 1 4
1 232 141 0 4
2 520 314 0 4
3 969 176 0 4
4 380 155 0 4
5 578 3745 1 1
6 84 921 0 1
7 176 582 1 1
8 259 109 2 1
9 464 403 0 1
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 11 0 0 7 False
1 14 2 3 4 False
2 21 1 0 6 False
3 12 0 0 7 False
4 34 0 1 21 False
5 19 1 1 9 True
6 17 0 1 7 True
7 8 0 1 4 True
8 25 3 2 9 True
9 33 1 1 14 True ,
assists baronKills bountyLevel champLevel championName \
0 2 0 0 10 Teemo
1 3 0 3 9 Vi
2 2 0 3 11 Yone
3 2 0 4 9 Annie
4 4 0 0 8 Ashe
5 0 0 3 11 Neeko
6 1 0 0 8 MasterYi
7 1 0 0 10 Talon
8 2 0 0 8 Caitlyn
9 0 0 0 7 Rell
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 50 50 50
1 0 1633 0
2 2757 2757 2757
3 1591 1591 1591
4 1338 1379 1338
5 1057 3162 1057
6 358 15744 358
7 897 2904 897
8 0 1073 0
9 0 1049 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 2 0 False False
1 1 2 1 False False
2 3 2 0 False False
3 0 0 0 False False
4 1 0 0 False False
5 1 1 0 False False
6 2 0 1 False False
7 4 4 0 False True
8 2 0 0 False False
9 3 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False True False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 4352 TOP 0
1 True 5557 JUNGLE 0
2 True 6584 MIDDLE 0
3 True 5735 BOTTOM 0
4 True 4390 UTILITY 0
5 True 5822 TOP 0
6 True 4832 JUNGLE 0
7 True 5050 MIDDLE 0
8 True 4292 BOTTOM 0
9 True 3124 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1056 3802 3108 1001 0 0 3340
1 0 6664 0 2031 3047 0 0 3364
2 0 2055 6673 0 0 3006 1055 3340
3 0 1056 6655 2031 3020 1052 0 3340
4 0 3864 4005 0 2055 3006 0 3340
5 0 1056 6655 2420 3158 2055 0 3340
6 0 6691 2031 3006 0 0 0 3364
7 0 2031 6693 0 0 1028 3158 3340
8 0 6670 1055 3006 0 1018 0 3340
9 0 3859 3047 1033 1029 1028 0 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 0 1 0 1
1 1 3 3 1
2 1 3 3 1
3 1 4 4 2
4 0 1 0 1
5 1 4 3 1
6 0 2 0 1
7 1 3 3 1
8 0 0 0 0
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 316 19635 4706
1 281 6881 145
2 226 9167 1446
3 0 32486 6028
4 912 1173 606
5 588 33710 4849
6 727 3384 0
7 589 0 0
8 714 54 54
9 419 5793 1300
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 4145 0 0 0
1 1386 68 0 1
2 116 4 0 0
3 535 0 0 0
4 439 0 0 0
5 2976 0 0 0
6 2185 60 0 0
7 2167 0 0 0
8 3066 0 0 0
9 3151 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 14308
1 0 2 31689
2 0 3 51376
3 0 4 5546
4 0 5 12665
5 0 6 11439
6 0 7 46729
7 0 8 38953
8 0 9 33250
9 0 10 2767
physicalDamageDealtToChampions physicalDamageTaken role \
0 925 3295 SUPPORT
1 3294 7016 SUPPORT
2 4670 6680 SUPPORT
3 799 3806 SUPPORT
4 3057 5255 SUPPORT
5 650 1902 SUPPORT
6 3016 9585 SUPPORT
7 6353 7826 SUPPORT
8 4431 2105 SUPPORT
9 181 3779 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 1 4 1 14 124
1 2 4 10 11 70
2 3 4 2 14 104
3 1 4 2 7 96
4 2 3 1 4 154
5 1 4 0 12 127
6 2 4 7 11 67
7 4 14 2 4 127
8 2 7 1 4 59
9 2 14 2 4 229
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 RealUnnatural False 100 TOP 16
1 ThatOnePachi False 100 JUNGLE 9
2 ConnCArt2 False 100 MIDDLE 14
3 MintJoy777 False 100 BOTTOM 11
4 saltyrai False 100 UTILITY 20
5 GohstDrahgon False 200 TOP 16
6 ColdishRamen False 200 JUNGLE 1
7 SkillLaton False 200 MIDDLE 1
8 Dublaiar False 200 BOTTOM 5
9 Nami Oki False 200 UTILITY 8
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 970 34405 6071
1 970 43532 3665
2 970 66952 7028
3 970 38268 7063
4 970 14008 3832
5 970 46485 5694
6 970 59330 3440
7 970 40787 6617
8 970 33305 4486
9 970 11262 1760
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 7850 243 74 91
1 8962 4375 11 162
2 6937 1378 100 107
3 4342 1035 92 104
4 5744 0 3 281
5 5220 9 80 80
6 11972 6706 6 69
7 11021 1133 80 71
8 5295 1244 84 9
9 7219 425 15 29
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 129 1 461
1 12 1 4962
2 45 1 6408
3 0 2 235
4 27 0 169
5 27 1 1335
6 43 1 9217
7 125 1 1834
8 48 2 0
9 44 3 2701
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 439 410 0 1
1 226 559 0 1
2 911 141 1 1
3 235 0 0 1
4 169 50 0 1
5 195 341 1 1
6 424 200 0 1
7 264 1027 0 1
8 0 123 0 1
9 278 288 0 1
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 9 2 0 6 True
1 16 2 3 5 True
2 15 4 1 7 True
3 4 0 0 3 True
4 10 2 0 5 True
5 9 3 1 2 False
6 5 0 1 1 False
7 11 5 2 8 False
8 6 0 0 5 False
9 7 0 0 5 False ,
assists baronKills bountyLevel champLevel championName \
0 6 0 0 14 TahmKench
1 9 0 3 14 Chogath
2 8 0 1 15 Neeko
3 2 0 0 13 Kayn
4 7 0 6 12 Morgana
5 3 0 0 15 Ryze
6 4 0 1 12 Vi
7 3 0 1 10 Ekko
8 6 0 0 12 Jhin
9 6 0 0 12 Lux
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 1076 6070 1076
1 0 21771 0
2 11402 14474 11402
3 1705 3898 1705
4 977 2364 977
5 3017 5281 3017
6 0 4539 0
7 0 0 0
8 0 4337 0
9 0 1073 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 6 2 1 False False
1 3 3 1 False False
2 2 4 1 False True
3 7 3 0 False False
4 2 0 0 False False
5 8 0 0 False False
6 7 0 1 False False
7 7 0 0 False False
8 5 0 0 False False
9 3 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 8882 TOP 0
1 True 9583 JUNGLE 0
2 True 11660 MIDDLE 0
3 True 9820 BOTTOM 0
4 True 8346 UTILITY 0
5 True 11656 TOP 0
6 True 8493 JUNGLE 0
7 True 6011 MIDDLE 0
8 True 6574 BOTTOM 0
9 True 7104 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1054 3068 3111 4401 3801 0 3340
1 0 6662 1031 3111 1028 4401 3066 3364
2 0 1056 3157 3916 6655 1026 3020 3340
3 0 6693 3179 3158 1037 3134 3070 3364
4 0 3853 3157 3020 1052 4005 0 3364
5 0 3089 0 0 6655 3020 3040 3340
6 0 6632 2031 3111 3053 0 0 3340
7 0 3152 2033 3111 0 0 0 3340
8 0 6671 1055 1018 3009 3134 0 3340
9 0 3020 6655 3853 3191 3916 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 4 0 1
1 1 4 3 1
2 2 6 3 1
3 3 9 2 1
4 1 6 6 1
5 3 8 2 1
6 1 4 2 1
7 0 3 0 1
8 0 1 0 1
9 1 4 3 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 381 52978 8993
1 648 88019 6313
2 1065 98123 14791
3 558 939 939
4 560 27641 15939
5 399 144301 22454
6 854 6673 0
7 253 31698 5996
8 868 1334 773
9 1430 30605 11764
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 13175 8 0 0
1 6660 124 0 0
2 8471 4 0 0
3 7016 16 0 0
4 6917 4 0 0
5 15162 8 0 0
6 12417 112 0 0
7 8908 0 0 0
8 6900 0 0 0
9 5387 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 17511
1 0 2 26884
2 0 3 15677
3 0 4 80966
4 0 5 3254
5 0 6 9800
6 0 7 82851
7 0 8 4373
8 0 9 54121
9 0 10 3086
physicalDamageDealtToChampions physicalDamageTaken role \
0 2517 10193 SOLO
1 1841 17982 NONE
2 1705 5762 SOLO
3 8001 13193 CARRY
4 1158 7727 SUPPORT
5 917 6797 SOLO
6 10875 12316 NONE
7 1017 4386 SOLO
8 8302 7202 CARRY
9 598 1719 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 1 12 3 4 107
1 5 4 18 11 120
2 4 14 1 4 61
3 5 7 2 4 101
4 4 14 2 4 53
5 4 12 4 4 478
6 13 11 3 4 174
7 1 4 2 14 149
8 3 7 3 4 59
9 2 14 3 4 141
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 jonkulus False 100 TOP 21
1 2x2HandsOfBlue False 100 JUNGLE 54
2 yaengo False 100 MIDDLE 30
3 Arkademo False 100 BOTTOM 2
4 upRunnerr False 100 UTILITY 75
5 JaiPasID False 200 TOP 26
6 Skraxi False 200 JUNGLE 20
7 Kayle Thighs False 200 MIDDLE 8
8 Dublaiar False 200 BOTTOM 19
9 kaitheshisno False 200 UTILITY 48
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1651 77418 12124
1 1651 134333 10571
2 1651 117544 16800
3 1651 81911 8940
4 1651 31932 18133
5 1651 155611 23371
6 1651 92944 11658
7 1651 36388 7330
8 1651 59599 9075
9 1651 34080 12751
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 23468 4443 132 165
1 25089 12078 17 1606
2 14310 3560 173 119
3 20850 7123 110 77
4 14870 5283 14 106
5 22652 5347 173 70
6 26375 8095 5 160
7 14255 1442 60 183
8 14477 3266 101 50
9 7808 385 24 182
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 202 1 6928
1 84 1 19429
2 77 1 3744
3 173 2 6
4 43 1 1036
5 292 1 1510
6 239 1 3418
7 161 1 316
8 168 2 4144
9 116 1 388
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 613 100 0 1
1 2417 445 0 1
2 304 76 5 1
3 0 640 2 1
4 1036 226 0 1
5 0 693 1 7
6 782 1641 0 7
7 316 959 0 7
8 0 375 0 7
9 388 702 0 7
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 15 2 0 10 True
1 12 3 1 4 True
2 21 4 2 12 True
3 20 3 3 10 True
4 34 0 1 16 True
5 16 0 4 8 False
6 20 0 3 7 False
7 5 0 0 4 False
8 11 0 0 7 False
9 49 2 3 15 False ,
assists baronKills bountyLevel champLevel championName \
0 16 0 0 18 Shen
1 13 0 0 17 XinZhao
2 15 0 0 18 Brand
3 14 0 0 17 Pyke
4 6 2 5 18 Ashe
5 17 0 0 18 Veigar
6 10 0 0 18 Rengar
7 10 0 0 17 Yasuo
8 17 0 0 16 Jhin
9 24 0 0 16 Seraphine
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 65 1360 65
1 256 34536 256
2 2090 22951 2090
3 774 1672 774
4 11645 42481 11645
5 3049 7429 3049
6 4682 22431 4682
7 3384 3581 3384
8 1762 4720 1762
9 2431 6048 2431
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 9 1 0 False False
1 13 0 1 False False
2 9 0 2 False False
3 13 1 0 False False
4 8 1 1 False False
5 8 0 2 False False
6 7 0 0 False False
7 14 0 0 False False
8 6 0 0 False True
9 10 2 0 True False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 True False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 14671 TOP 1
1 False 12007 JUNGLE 1
2 False 15397 MIDDLE 0
3 False 15291 UTILITY 1
4 False 23411 BOTTOM 0
5 False 15990 TOP 1
6 False 18591 JUNGLE 0
7 False 16723 MIDDLE 0
8 False 11799 BOTTOM 0
9 False 12233 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 3075 3068 3047 3748 0 3143 3364
1 1 6692 3053 3047 3153 0 0 3340
2 1 3116 3157 6653 3020 4637 1058 3340
3 1 3179 3857 3142 6691 3814 3117 3364
4 1 6671 3085 3031 6676 3072 3006 3340
5 3 4401 6664 3158 3110 3070 3135 3340
6 3 6691 3508 6676 3814 3033 3158 3340
7 3 3091 3006 6673 3031 3072 1031 3340
8 3 6671 1018 3009 6676 3094 3123 3363
9 3 3853 3009 6617 6616 3116 3011 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 7 2 2
1 1 3 3 1
2 1 8 6 3
3 2 6 2 1
4 5 21 6 3
5 2 11 4 1
6 3 18 8 2
7 1 10 4 2
8 1 5 3 1
9 1 6 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 532 48027 8146
1 728 15453 921
2 730 175728 33062
3 582 0 0
4 954 5869 5269
5 673 151289 32626
6 1119 17990 1800
7 438 18389 1787
8 982 9073 1749
9 465 50323 15860
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 16793 12 0 0
1 10031 103 0 0
2 9388 20 0 0
3 11600 0 0 0
4 8616 45 0 0
5 11944 33 1 0
6 10779 118 1 0
7 14340 16 1 0
8 7163 4 1 0
9 5020 8 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 75505
1 0 2 119607
2 0 3 7621
3 0 4 27369
4 0 5 311350
5 0 6 17172
6 0 7 229079
7 0 8 213117
8 0 9 99892
9 0 10 4236
physicalDamageDealtToChampions physicalDamageTaken role \
0 10037 18977 SOLO
1 14460 37941 NONE
2 639 18739 SOLO
3 9700 18071 SUPPORT
4 49013 27112 CARRY
5 2080 17625 SOLO
6 40301 30804 NONE
7 24731 22650 SOLO
8 8352 16693 CARRY
9 1113 21669 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 7 4 7 14 125
1 14 11 2 4 43
2 3 14 6 4 67
3 7 14 5 4 79
4 7 4 7 7 23
5 6 4 3 12 321
6 6 4 22 11 165
7 4 14 6 4 164
8 4 7 4 4 59
9 7 14 5 4 156
summonerName teamEarlySurrendered teamId teamPosition \
0 LWZNE False 100 TOP
1 Dedolous False 100 JUNGLE
2 Solar02 False 100 MIDDLE
3 HerbsandSpiced False 100 UTILITY
4 i cant nut 1994 False 100 BOTTOM
5 Rotome False 200 TOP
6 Coolgum15 False 200 JUNGLE
7 HollowGunMaster False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 AlexAve False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 38 2545 135856 19951
1 15 2545 149339 15478
2 23 2545 183845 34054
3 18 2545 35241 12186
4 80 2545 326164 56288
5 82 2545 169961 35631
6 12 2545 263138 43435
7 26 2545 261736 27401
8 34 2545 109592 10354
9 45 2545 56109 18158
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 37320 4291 161 214
1 48548 21105 24 395
2 29140 6692 154 54
3 31399 4383 46 107
4 36441 11523 258 1234
5 31199 566 173 1198
6 42566 18182 104 225
7 38476 4755 230 147
8 24827 7613 120 146
9 28327 11509 30 312
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 338 1 12323
1 336 1 14278
2 351 1 496
3 428 1 7872
4 333 3 8945
5 315 1 1499
6 270 1 16069
7 540 1 30230
8 130 4 626
9 326 5 1550
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1766 1548 0 6
1 96 575 1 6
2 352 1012 1 6
3 2485 1727 0 6
4 2005 712 4 6
5 925 1628 2 8
6 1334 982 2 8
7 882 1485 0 8
8 252 970 1 8
9 1184 1637 0 8
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 27 1 1 15 True
1 24 0 0 12 True
2 8 0 0 5 True
3 91 1 13 31 True
4 30 1 1 14 True
5 22 1 0 12 False
6 19 0 1 10 False
7 15 0 2 11 False
8 13 0 1 6 False
9 40 2 3 17 False ,
assists baronKills bountyLevel champLevel championName \
0 10 0 1 14 Chogath
1 11 0 0 13 DrMundo
2 6 0 0 13 Zed
3 12 0 1 12 Senna
4 13 0 0 12 Galio
5 2 0 0 14 Garen
6 4 0 0 12 FiddleSticks
7 5 0 0 13 Pantheon
8 2 0 0 10 Jhin
9 2 0 1 10 Zyra
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 1395 5902 1395
1 185 15028 185
2 1755 2971 1755
3 2789 5170 2789
4 1532 2659 1532
5 7871 10245 7871
6 0 7145 0
7 493 493 493
8 0 1187 0
9 0 717 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 3 0 0 False False
1 6 1 1 False False
2 5 2 0 False False
3 2 0 1 False False
4 1 3 0 False False
5 3 0 0 False True
6 8 0 1 False False
7 7 0 0 False False
8 6 0 0 False False
9 6 3 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 9425 TOP 0
1 True 8535 JUNGLE 0
2 True 10427 MIDDLE 0
3 True 9508 UTILITY 0
4 True 8428 BOTTOM 0
5 True 12385 TOP 0
6 True 7949 JUNGLE 0
7 True 8638 MIDDLE 0
8 True 5610 BOTTOM 0
9 True 6472 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3047 3076 1054 3068 3110 0 3340
1 0 3047 2031 6664 3075 3211 1029 3364
2 0 3071 3047 3035 1036 1029 6691 3340
3 0 6672 3864 3006 3124 3035 0 3340
4 0 3157 2065 3047 2031 1056 0 3340
5 0 1028 6631 3006 3742 3053 1057 3340
6 0 3020 2031 3157 6653 0 0 3330
7 0 6692 2033 3071 2055 3047 0 3340
8 0 6671 1055 3009 1036 1036 0 3340
9 0 3853 3020 6653 3191 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 4 3 1
1 1 2 2 1
2 2 11 6 2
3 2 7 4 2
4 1 6 6 1
5 2 8 5 2
6 0 2 0 1
7 0 4 0 1
8 0 0 0 0
9 0 3 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 909 64111 10123
1 526 68382 4392
2 460 3913 1033
3 740 257 257
4 1465 47544 9574
5 1235 1579 328
6 577 103511 9514
7 326 3886 560
8 636 2295 189
9 521 16559 8808
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 5989 16 0 0
1 7819 133 0 0
2 2499 0 0 0
3 2709 8 0 0
4 2251 0 0 0
5 8677 2 0 0
6 6862 128 0 0
7 3643 0 0 0
8 4730 0 0 0
9 3584 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 26073
1 0 2 44914
2 0 3 78063
3 0 4 47659
4 0 5 4186
5 0 6 109391
6 0 7 6752
7 0 8 83528
8 0 9 47309
9 0 10 1530
physicalDamageDealtToChampions physicalDamageTaken role \
0 3273 16389 SOLO
1 4655 16266 NONE
2 14925 10958 SOLO
3 10477 4795 SUPPORT
4 478 8764 CARRY
5 13685 9746 SOLO
6 29 17141 NONE
7 13915 12439 SOLO
8 4483 6136 CARRY
9 490 5991 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 4 3 12 124
1 2 4 12 11 74
2 6 14 2 4 376
3 3 4 5 7 170
4 3 4 4 14 265
5 3 4 4 14 165
6 12 11 4 4 133
7 2 4 6 14 321
8 3 7 2 4 59
9 2 14 3 4 156
summonerName teamEarlySurrendered teamId teamPosition \
0 AsSaSsIn01 False 100 TOP
1 rinnenine False 100 JUNGLE
2 SørryMaker False 100 MIDDLE
3 ImDahCaptainNow False 100 UTILITY
4 Yabguy False 100 BOTTOM
5 Coolgum15 False 200 TOP
6 SlothoftheAbyss False 200 JUNGLE
7 Rotome False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 AlexAve False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 57 1520 104077 14975
1 7 1520 122567 9739
2 7 1520 85285 16721
3 19 1520 61070 11916
4 29 1520 56067 10514
5 29 1520 114096 16910
6 19 1520 118494 9997
7 16 1520 91569 15626
8 14 1520 52444 4673
9 35 1520 18469 9679
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 24020 7353 128 780
1 25299 14342 8 258
2 15313 1202 143 119
3 7675 9014 46 86
4 11015 878 90 59
5 19543 2028 181 104
6 25208 11785 15 628
7 16857 2349 140 23
8 12018 1902 88 75
9 10003 853 14 99
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 68 1 13892
1 91 1 9270
2 167 1 3308
3 61 5 13153
4 37 1 4337
5 130 1 3125
6 194 1 8229
7 230 1 4155
8 119 2 2840
9 136 1 380
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1579 1641 0 3
1 692 1213 0 3
2 762 1855 1 3
3 1182 170 1 3
4 462 0 1 3
5 2897 1118 3 3
6 453 1204 0 3
7 1150 774 0 3
8 0 1152 0 3
9 380 428 0 3
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 8 0 0 5 True
1 19 1 3 2 True
2 22 2 2 10 True
3 26 0 0 13 True
4 24 3 1 8 True
5 10 0 0 7 False
6 13 0 0 0 False
7 11 1 1 6 False
8 5 0 0 4 False
9 36 4 2 14 False ,
assists baronKills bountyLevel champLevel championName \
0 9 0 1 18 Vi
1 7 2 2 18 MasterYi
2 4 0 0 17 Yone
3 6 0 1 15 Jhin
4 13 0 1 16 Zyra
5 5 0 0 17 Viego
6 9 0 0 15 Taliyah
7 3 0 0 17 Pantheon
8 2 0 0 14 Kaisa
9 5 0 0 14 Swain
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3142 20546 3142
1 3094 39810 3094
2 5129 8242 5129
3 4024 12600 4024
4 3355 9532 3355
5 3841 3841 3841
6 726 6574 726
7 5213 17214 5213
8 998 8166 998
9 521 6047 521
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 9 0 0 False False
1 7 1 1 False False
2 13 0 0 False False
3 4 2 2 False False
4 1 2 0 False False
5 8 0 0 False False
6 8 0 1 False False
7 6 1 1 False True
8 4 0 0 False False
9 11 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False True False
2 False False False
3 True False False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 13817 TOP 0
1 False 16194 JUNGLE 2
2 False 12345 MIDDLE 1
3 False 14222 BOTTOM 0
4 False 12065 UTILITY 0
5 False 12630 TOP 0
6 False 10352 JUNGLE 0
7 False 17208 MIDDLE 0
8 False 10895 BOTTOM 0
9 False 8315 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 6692 3153 3047 3071 1055 1031 3340
1 0 3006 1011 6672 3153 6333 3076 3364
2 0 6673 3006 1029 3095 3072 1036 3340
3 0 1055 6671 3009 6676 3033 1038 3340
4 0 2055 3157 3853 3020 6653 3165 3364
5 3 1054 6673 3047 3153 6333 1038 3340
6 3 6655 2031 3157 3020 3135 0 3340
7 3 6692 3026 3047 3814 3074 6676 3340
8 3 6672 1055 3006 6676 3085 0 3340
9 3 3853 3020 6653 4637 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 7 2 2
1 3 12 5 2
2 1 4 2 1
3 2 11 6 2
4 1 3 2 1
5 2 9 3 1
6 0 2 0 1
7 4 17 9 3
8 1 3 2 1
9 1 3 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 273 75 75
1 565 6094 494
2 234 27080 4131
3 855 5186 289
4 1210 96466 18412
5 537 3997 1789
6 661 122177 9222
7 604 6668 1274
8 748 12668 2921
9 405 35291 6649
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 4419 50 0 0
1 8358 140 0 0
2 4599 12 0 0
3 3391 8 0 1
4 3795 12 0 0
5 5688 4 1 0
6 5566 141 1 0
7 5945 22 1 0
8 3571 8 1 0
9 4198 1 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 173120
1 0 2 183644
2 0 3 122848
3 0 4 101641
4 0 5 7340
5 0 6 143363
6 0 7 12388
7 0 8 214326
8 0 9 112820
9 0 10 2937
physicalDamageDealtToChampions physicalDamageTaken role \
0 19380 19856 SOLO
1 20732 25344 NONE
2 10155 22761 SOLO
3 11602 8732 CARRY
4 1112 4850 SUPPORT
5 18353 26967 SOLO
6 276 22225 NONE
7 35009 22211 SOLO
8 2118 9712 CARRY
9 223 12988 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 12 4 4 112
1 5 4 21 11 187
2 6 14 4 4 323
3 4 4 4 7 225
4 5 14 3 4 300
5 8 14 4 4 190
6 13 11 4 4 133
7 5 4 8 14 320
8 1 7 2 4 58
9 3 14 3 4 155
summonerName teamEarlySurrendered teamId teamPosition \
0 Greedyatitsbest False 100 TOP
1 Galander False 100 JUNGLE
2 IDontNo False 100 MIDDLE
3 XylidicXenoN False 100 BOTTOM
4 TwistedJMan5 False 100 UTILITY
5 MoistureCreature False 200 TOP
6 SlothoftheAbyss False 200 JUNGLE
7 Rotome False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 AlexAve False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 32 2100 179633 20455
1 4 2100 241031 29929
2 14 2100 156925 17102
3 20 2100 107198 11891
4 39 2100 106308 20056
5 21 2100 158301 21932
6 4 2100 147857 9890
7 37 2100 229699 37733
8 0 2100 137670 5255
9 27 2100 38744 7387
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 25297 5116 145 175
1 36077 15511 67 215
2 28335 4095 175 120
3 12486 3689 139 74
4 8723 1770 80 250
5 38479 10991 177 90
6 30325 11342 22 326
7 30874 11357 213 51
8 13799 3206 195 0
9 18666 1266 13 210
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 331 1 6437
1 249 1 51292
2 400 1 6996
3 146 2 370
4 36 1 2501
5 362 1 10940
6 271 1 13290
7 251 1 8704
8 122 2 12181
9 299 1 514
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 998 1020 2 3
1 8701 2374 3 3
2 2814 974 3 3
3 0 362 1 3
4 531 77 2 3
5 1789 5824 0 11
6 391 2532 0 11
7 1449 2717 3 11
8 215 515 0 11
9 514 1478 0 11
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 5 0 0 2 True
1 24 1 1 1 True
2 14 0 0 10 True
3 19 2 1 11 True
4 62 3 3 28 True
5 15 0 0 9 False
6 15 0 2 7 False
7 18 2 0 9 False
8 17 0 1 9 False
9 26 3 2 14 False ,
assists baronKills bountyLevel champLevel championName \
0 4 0 0 16 Shen
1 1 0 0 16 Taliyah
2 1 0 0 15 Pantheon
3 12 0 0 16 Jhin
4 10 0 0 16 Brand
5 7 0 0 18 Sion
6 6 1 13 18 DrMundo
7 11 0 3 18 Azir
8 15 0 0 14 Senna
9 7 0 0 14 Velkoz
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 602 602 602
1 138 11641 138
2 1017 1279 1017
3 1083 3763 1083
4 1425 6769 1425
5 8040 9403 8040
6 2071 20718 2071
7 9367 27326 9367
8 2647 6811 2647
9 1443 4874 1443
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 6 0 0 False False
1 8 0 2 False False
2 12 0 0 False False
3 4 0 1 True False
4 8 2 0 False True
5 3 3 0 False False
6 0 4 2 False False
7 5 1 0 False False
8 9 4 0 False False
9 11 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 9205 TOP 0
1 False 11656 JUNGLE 0
2 False 11297 MIDDLE 0
3 False 11893 BOTTOM 0
4 False 13534 UTILITY 0
5 False 12975 TOP 1
6 False 16047 JUNGLE 1
7 False 18469 MIDDLE 0
8 False 10244 UTILITY 1
9 False 10514 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 3 1054 3068 3111 3076 3001 3066 3340
1 3 6655 2031 3157 3020 3135 1058 3340
2 3 6692 1036 3111 3071 3156 0 3340
3 3 6671 6676 3009 3094 1018 1055 3340
4 3 3853 3020 6653 4637 3135 1058 3364
5 0 2033 6631 3053 1057 3111 3748 3340
6 0 3111 3075 6664 3065 3044 4401 3364
7 0 6655 3157 3089 3041 3115 3020 3363
8 0 3864 2033 3094 6672 3006 0 3340
9 0 1082 3157 3020 3165 1052 6655 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 0 2 0 1
1 1 7 4 2
2 0 2 0 1
3 1 4 3 2
4 4 13 3 2
5 0 2 0 1
6 1 13 13 4
7 4 17 7 2
8 0 1 0 1
9 1 5 2 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 833 49062 7875
1 755 134879 9391
2 259 4861 387
3 825 6444 1318
4 576 86930 40045
5 1361 29617 2072
6 0 133077 6951
7 1096 236374 44680
8 569 194 194
9 450 75318 12427
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 15222 0 1 0
1 13441 140 1 0
2 16285 12 1 0
3 9043 4 1 0
4 14689 0 1 0
5 11787 8 0 0
6 11054 182 0 0
7 13455 58 0 0
8 12081 0 0 0
9 14958 11 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 42657
1 0 2 9961
2 0 3 137193
3 0 4 146140
4 0 5 3354
5 0 6 162577
6 0 7 78752
7 0 8 20614
8 0 9 33989
9 0 10 8750
physicalDamageDealtToChampions physicalDamageTaken role \
0 5968 17040 NONE
1 204 15161 NONE
2 13458 11081 SOLO
3 13963 5495 CARRY
4 568 6168 SUPPORT
5 8864 15325 SOLO
6 6062 33493 NONE
7 3459 15033 SOLO
8 7904 5521 SUPPORT
9 379 8603 CARRY
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 1 12 6 4 190
1 12 11 4 4 132
2 4 4 3 14 320
3 4 7 4 4 58
4 5 14 4 4 155
5 1 4 1 12 105
6 18 11 8 6 88
7 5 12 4 4 263
8 5 7 3 4 243
9 5 4 6 14 61
summonerName teamEarlySurrendered teamId teamPosition \
0 MoistureCreature False 100 TOP
1 SlothoftheAbyss False 100 JUNGLE
2 Rotome False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 AlexAve False 100 UTILITY
5 Ryoma47 False 200 TOP
6 MacBlade3 False 200 JUNGLE
7 Curtisimo False 200 MIDDLE
8 CollateralBeauty False 200 UTILITY
9 Sınclair False 200 BOTTOM
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 42 2163 119323 13844
1 5 2163 170607 10054
2 17 2163 150834 14215
3 34 2163 152585 15281
4 29 2163 90924 41254
5 47 2163 195035 10937
6 12 2163 222839 14473
7 20 2163 266516 50256
8 19 2163 42269 8761
9 18 2163 95432 16703
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 35656 6551 152 235
1 29504 10971 48 326
2 29387 4942 203 39
3 15020 3737 186 153
4 22195 3350 62 45
5 27113 3507 260 837
6 45104 31335 61 421
7 28902 6023 203 276
8 17767 12187 28 42
9 23894 892 99 173
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 236 1 27605
1 321 1 25766
2 408 1 8779
3 103 2 0
4 249 1 640
5 77 1 2840
6 0 1 11010
7 230 1 9527
8 264 5 8085
9 297 1 11363
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 3393 0 10
1 458 902 0 10
2 369 2019 1 10
3 0 481 1 10
4 640 1337 0 10
5 0 0 4 1
6 1458 556 0 1
7 2117 414 4 1
8 663 163 1 1
9 3896 333 0 1
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 16 0 0 11 False
1 19 0 2 8 False
2 19 0 1 9 False
3 17 0 3 10 False
4 32 3 7 14 False
5 31 3 1 13 True
6 27 4 7 5 True
7 25 1 0 11 True
8 69 4 2 42 True
9 15 0 1 7 True ,
assists baronKills bountyLevel champLevel championName \
0 13 0 0 17 Singed
1 18 0 12 18 Lillia
2 9 0 1 16 Fizz
3 8 0 0 14 Brand
4 14 0 2 15 Ornn
5 2 0 1 16 Sett
6 7 0 0 14 Kayn
7 4 0 0 13 Akali
8 2 0 0 14 Kaisa
9 8 0 1 14 Lux
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 4147 4147 4147
1 0 18330 0
2 1767 1767 1767
3 532 3540 532
4 749 6060 749
5 2612 2786 2612
6 839 28007 839
7 748 1511 748
8 3525 6084 3525
9 1878 2378 1878
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 0 0 False False
1 2 0 3 False False
2 6 0 0 False True
3 4 0 0 False False
4 5 0 0 False False
5 10 0 0 False False
6 10 0 2 False False
7 16 0 0 False False
8 8 0 0 False False
9 6 3 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 11794 TOP 1
1 False 16866 JUNGLE 0
2 False 12315 MIDDLE 0
3 False 10916 BOTTOM 0
4 False 10154 UTILITY 0
5 False 14406 TOP 0
6 False 9699 JUNGLE 0
7 False 7275 MIDDLE 0
8 False 11999 BOTTOM 0
9 False 10944 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 2033 3009 3116 4637 6653 0 3340
1 0 7012 4629 3041 3020 3116 3157 3340
2 0 3100 3158 7012 0 0 3157 3340
3 0 1056 6653 3020 4637 3135 0 3340
4 0 3860 3076 0 3083 7004 3047 3340
5 2 4401 3153 6631 3111 3156 0 3340
6 2 6693 2031 3158 3004 3134 1036 3364
7 2 1056 4636 3020 3057 3113 0 3340
8 2 3006 6672 6676 3046 3123 1042 3340
9 2 3157 3853 3020 6655 4628 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 6 4 1
1 2 16 12 2
2 2 11 6 2
3 3 12 5 2
4 1 5 2 1
5 3 10 2 2
6 0 2 0 1
7 0 0 0 0
8 0 5 0 1
9 1 5 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 910 108766 15727
1 1205 186971 38191
2 746 54977 19728
3 1151 45099 20105
4 537 33906 5458
5 735 582 582
6 479 7160 1190
7 265 39265 6876
8 538 9900 4769
9 1029 79706 32312
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 5884 0 0 0
1 11058 184 0 0
2 12447 16 0 0
3 9908 0 0 0
4 10731 10 0 0
5 25675 5 1 0
6 17950 110 1 0
7 25008 0 1 0
8 17771 8 1 0
9 13612 0 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 8082
1 0 2 21533
2 0 3 26539
3 0 4 6311
4 0 5 37604
5 0 6 112980
6 0 7 128594
7 0 8 14411
8 0 9 93775
9 0 10 4604
physicalDamageDealtToChampions physicalDamageTaken role \
0 498 25760 SUPPORT
1 1195 29328 NONE
2 5327 14332 DUO
3 1282 7820 SUPPORT
4 3863 15346 SOLO
5 30219 11098 SOLO
6 10595 14395 NONE
7 1400 6432 SOLO
8 7832 4078 CARRY
9 450 2955 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 10 6 4 12 74
1 4 4 18 11 92
2 6 4 4 14 65
3 5 4 4 14 30
4 4 3 5 4 93
5 4 4 1 12 98
6 2 4 10 11 129
7 3 14 4 4 117
8 5 7 5 4 58
9 2 4 1 14 40
summonerName teamEarlySurrendered teamId teamPosition \
0 ShanesP False 100 TOP
1 GayBambiGoZZZ False 100 JUNGLE
2 ChaseAse False 100 MIDDLE
3 okderrickok False 100 BOTTOM
4 Casenut False 100 UTILITY
5 NotTheRealJimmy False 200 TOP
6 Jordan26 False 200 JUNGLE
7 MechaRome False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 bricci False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 48 2342 119688 16226
1 51 2342 276743 53183
2 13 2342 98404 26126
3 10 2342 53937 22434
4 28 2342 74954 9322
5 50 2342 122607 35469
6 5 2342 157840 11866
7 1 2342 54260 8861
8 0 2342 108533 13358
9 97 2342 84371 32823
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 34493 8445 134 682
1 42066 22580 74 734
2 27433 6721 118 67
3 19151 3593 80 31
4 27623 2672 64 343
5 43715 1604 155 257
6 35593 12980 17 185
7 34733 4505 69 26
8 23204 5007 129 2
9 17647 1029 68 348
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 130 1 2840
1 56 1 68237
2 234 1 16888
3 167 1 2526
4 165 5 3443
5 428 1 9045
6 328 1 22085
7 425 1 584
8 264 3 4857
9 229 1 60
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 2848 1 4
1 13796 1680 0 4
2 1070 653 1 4
3 1046 1422 0 4
4 0 1544 1 4
5 4667 6941 1 10
6 80 3247 1 10
7 584 3291 0 10
8 757 1353 2 10
9 60 1079 0 10
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 10 0 0 6 True
1 9 0 0 2 True
2 17 0 2 8 True
3 12 0 0 9 True
4 18 0 1 11 True
5 15 0 0 9 False
6 20 0 0 7 False
7 14 0 1 9 False
8 14 0 0 9 False
9 73 3 4 31 False ,
assists baronKills bountyLevel champLevel championName \
0 3 0 0 14 Teemo
1 1 0 0 14 MasterYi
2 4 0 0 15 Gragas
3 1 0 0 13 Jhin
4 2 0 0 12 Pyke
5 4 0 4 18 Vayne
6 4 0 0 12 Camille
7 2 0 1 15 Katarina
8 7 0 3 15 Kaisa
9 7 0 0 14 Zoe
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 1826 1826 1826
1 788 14286 788
2 482 810 482
3 0 0 0
4 0 1827 0
5 5527 8717 5527
6 1108 11672 1108
7 2720 2888 2720
8 8747 16433 8747
9 1943 2836 1943
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 3 0 False False
1 5 0 2 False False
2 5 3 0 False False
3 5 2 0 False False
4 8 3 0 False False
5 5 0 0 False False
6 6 0 0 False False
7 4 0 0 False False
8 3 1 1 False False
9 3 2 1 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False True False
9 True False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 9647 TOP 0
1 False 9657 JUNGLE 0
2 False 11168 MIDDLE 0
3 False 9407 BOTTOM 0
4 False 7564 UTILITY 0
5 False 14535 TOP 0
6 False 7528 JUNGLE 0
7 False 10394 MIDDLE 0
8 False 14034 BOTTOM 2
9 False 9475 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 2 1056 6653 3115 3020 0 0 3340
1 2 6691 2031 3006 6676 1043 1036 3340
2 2 3070 3157 4636 4628 2055 3020 3340
3 2 3009 6671 6676 1031 1055 2055 3340
4 2 3857 6691 3117 1037 3134 1036 3364
5 0 3153 3006 2421 1033 3124 6673 3340
6 0 3078 1053 2031 3158 3133 0 3364
7 0 4636 3115 1055 3020 3113 3057 3340
8 0 1055 3046 3006 6676 6672 1043 3340
9 0 3853 6655 3020 4628 3057 0 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 1 2 2 1
1 2 5 2 2
2 1 6 3 1
3 1 3 2 2
4 0 2 0 1
5 2 10 4 2
6 0 0 0 0
7 2 6 3 2
8 2 8 4 2
9 1 6 5 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 732 76142 15039
1 673 5615 0
2 1070 73631 13613
3 526 4455 172
4 532 0 0
5 438 166 166
6 498 10712 13
7 754 83481 9501
8 721 9006 2858
9 810 33660 13453
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 2615 8 1 0
1 5725 144 1 0
2 8874 0 1 0
3 4519 0 1 0
4 6871 0 1 0
5 11620 30 0 0
6 8346 116 0 0
7 7134 12 0 0
8 2526 14 0 0
9 4573 5 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 31294
1 0 2 132341
2 0 3 18963
3 0 4 87602
4 0 5 22774
5 0 6 150946
6 0 7 79430
7 0 8 9561
8 0 9 141047
9 0 10 6535
physicalDamageDealtToChampions physicalDamageTaken role \
0 2350 13186 SOLO
1 7439 17408 NONE
2 841 9078 SOLO
3 6387 4363 CARRY
4 1862 6869 SUPPORT
5 15862 10448 SOLO
6 1337 23916 NONE
7 345 4521 SOLO
8 9644 8172 SOLO
9 1488 7602 NONE
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 6 14 320
1 4 4 18 11 164
2 4 4 5 14 98
3 3 7 3 4 155
4 1 14 2 4 57
5 5 4 2 12 283
6 14 11 1 4 96
7 2 4 0 14 236
8 3 4 2 7 73
9 4 14 3 4 59
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 Rotome False 100 TOP 37
1 Coolgum15 False 100 JUNGLE 3
2 rodaparks False 100 MIDDLE 23
3 AlexAve False 100 BOTTOM 11
4 Dublaiar False 100 UTILITY 2
5 your toilet123 False 200 TOP 10
6 lostpi False 200 JUNGLE 3
7 takayán False 200 MIDDLE 0
8 Filipino Zuko False 200 BOTTOM 0
9 Russttea False 200 UTILITY 30
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1792 115081 18509
1 1792 154647 9414
2 1792 96520 15031
3 1792 92058 6560
4 1792 28649 2412
5 1792 190158 20691
6 1792 113299 2245
7 1792 93042 9847
8 1792 169859 13290
9 1792 54186 17431
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 18376 275 177 362
1 24494 11227 23 147
2 20481 6136 184 201
3 9771 1066 180 89
4 15224 1325 43 77
5 24589 7016 223 77
6 32553 12478 3 266
7 12579 3051 136 0
8 11670 5461 216 23
9 12690 3477 33 95
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 220 1 7645
1 184 1 16690
2 171 1 3926
3 90 2 0
4 199 1 5875
5 147 1 39045
6 137 1 23155
7 120 1 0
8 80 2 19805
9 109 2 13990
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 1120 2573 1 9
1 1975 1360 0 9
2 576 2528 0 9
3 0 889 0 9
4 549 1482 0 9
5 4662 2521 2 1
6 894 291 0 1
7 0 924 3 1
8 787 971 4 1
9 2489 514 0 1
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 17 3 0 5 False
1 20 0 1 9 False
2 34 6 1 13 False
3 14 3 1 10 False
4 36 3 4 17 False
5 19 0 3 9 True
6 10 0 0 4 True
7 12 0 0 8 True
8 22 1 4 10 True
9 40 2 5 19 True ,
assists baronKills bountyLevel champLevel championName \
0 1 0 2 11 Volibear
1 5 0 0 9 Amumu
2 1 0 9 11 Brand
3 3 0 7 9 Lucian
4 9 0 0 8 Braum
5 0 0 0 10 Teemo
6 2 0 0 8 Rammus
7 0 0 0 8 Yone
8 0 0 0 7 Karma
9 1 0 0 8 Jhin
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 451 451 451
1 521 6194 521
2 2516 5748 2516
3 5367 6118 5367
4 1304 1304 1304
5 935 935 935
6 0 1349 0
7 0 0 0
8 0 0 0
9 0 0 0
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 1 0 0 False False
1 1 1 2 False False
2 0 2 0 False False
3 0 2 0 False True
4 1 3 0 True False
5 2 0 0 False False
6 2 0 0 False False
7 7 0 0 False False
8 5 0 0 False False
9 3 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 True False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 5118 TOP 0
1 True 4995 JUNGLE 0
2 True 7235 MIDDLE 0
3 True 8309 BOTTOM 0
4 True 4970 UTILITY 0
5 True 5296 TOP 0
6 True 4219 JUNGLE 0
7 True 3469 MIDDLE 0
8 True 3291 UTILITY 0
9 True 3895 BOTTOM 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1054 6662 0 0 0 3111 3340
1 0 0 2031 0 0 1001 3068 3364
2 0 3020 1052 1026 1056 6653 1011 3340
3 0 2031 0 3134 1055 3006 6672 3340
4 0 1028 2031 3855 0 3105 3117 3364
5 0 1056 6653 2055 1001 0 0 3364
6 0 3111 2031 6660 1033 1029 0 3340
7 0 1055 3006 2031 1053 0 0 3340
8 0 3851 4642 3067 1001 2055 0 3364
9 0 6670 1001 1037 1055 0 0 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 1 2 2 1
1 0 1 0 1
2 1 9 9 2
3 1 7 7 1
4 0 0 0 0
5 1 2 2 1
6 0 0 0 0
7 0 0 0 0
8 0 1 0 1
9 0 0 0 0
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 216 22897 1476
1 229 38575 1236
2 0 51212 9568
3 0 1680 699
4 129 2113 1705
5 697 29169 6686
6 684 28225 1311
7 267 4460 643
8 378 7501 3443
9 547 2127 0
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 6476 8 0 0
1 2753 81 0 0
2 799 2 0 0
3 1509 4 0 0
4 1740 0 0 0
5 1413 0 0 0
6 2273 60 0 0
7 8164 0 0 0
8 3166 0 0 0
9 620 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 18918
1 0 2 11119
2 0 3 8698
3 0 4 66081
4 0 5 5237
5 0 6 16780
6 0 7 13081
7 0 8 17168
8 0 9 1191
9 0 10 25892
physicalDamageDealtToChampions physicalDamageTaken role \
0 2386 2872 SUPPORT
1 218 8916 SUPPORT
2 542 2465 SUPPORT
3 7584 2989 DUO
4 587 3568 SUPPORT
5 2100 3727 DUO
6 244 7952 SUPPORT
7 1254 2157 SUPPORT
8 403 3939 SUPPORT
9 2766 3384 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 2 12 64
1 10 11 2 4 246
2 2 14 1 4 244
3 2 7 2 4 134
4 2 3 1 4 181
5 3 4 3 14 320
6 2 4 9 11 164
7 1 12 2 4 33
8 1 14 2 4 57
9 3 7 2 4 155
summonerName teamEarlySurrendered teamId teamPosition \
0 ObsidianSK False 100 TOP
1 Codon False 100 JUNGLE
2 YeetyMcHamSauce False 100 MIDDLE
3 CookiesandChris False 100 BOTTOM
4 Skrrt and Ernie False 100 UTILITY
5 Rotome False 200 TOP
6 Coolgum15 False 200 JUNGLE
7 big cloud False 200 MIDDLE
8 Dublaiar False 200 UTILITY
9 AlexAve False 200 BOTTOM
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 6 964 46375 3862
1 7 964 57063 1951
2 13 964 60871 10613
3 0 964 75232 9040
4 9 964 11761 2293
5 13 964 53402 9279
6 5 964 46191 1597
7 3 964 30878 2192
8 8 964 8763 3917
9 2 964 28019 2766
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 9883 940 87 224
1 11747 5176 6 143
2 3457 38 103 23
3 4498 1835 139 0
4 5402 170 25 45
5 5179 252 122 137
6 10846 3878 7 118
7 10940 338 59 27
8 7275 0 5 89
9 4313 493 78 39
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 10 1 4560
1 10 1 7367
2 0 1 959
3 0 2 7470
4 6 2 4410
5 12 1 7452
6 37 3 4884
7 157 1 9249
8 67 0 70
9 54 2 0
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 534 0 0
1 495 77 0 0
2 501 193 1 0
3 756 0 2 0
4 0 94 0 0
5 492 39 0 3
6 42 620 0 3
7 294 618 0 3
8 70 168 0 3
9 0 308 0 3
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 8 0 0 4 True
1 12 1 1 5 True
2 9 2 0 4 True
3 9 2 1 6 True
4 25 3 5 10 True
5 7 2 0 4 False
6 6 0 0 4 False
7 1 0 1 0 False
8 6 2 1 5 False
9 7 2 1 5 False ,
assists baronKills bountyLevel champLevel championName \
0 1 0 0 11 Renekton
1 0 0 0 3 Volibear
2 0 0 0 10 Malzahar
3 2 0 0 8 Jhin
4 2 0 0 8 Nautilus
5 1 0 2 10 Pantheon
6 7 0 0 10 Gragas
7 2 0 2 11 Katarina
8 4 0 3 9 Kaisa
9 8 0 0 9 Leona
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 1862 1973 1862
1 0 0 0
2 1030 1030 1030
3 0 0 0
4 0 0 0
5 995 5670 995
6 0 11298 0
7 3266 5533 3266
8 1751 1904 1751
9 558 1931 558
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 4 0 0 False False
1 1 0 0 False False
2 4 0 0 False False
3 3 0 0 False False
4 3 0 0 False False
5 2 0 0 False True
6 0 1 2 False False
7 1 0 0 False False
8 0 0 0 False False
9 1 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False True False
8 True False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 5154 TOP 0
1 True 2762 JUNGLE 0
2 True 6008 MIDDLE 0
3 True 4259 BOTTOM 0
4 True 3312 UTILITY 0
5 True 6197 TOP 0
6 True 4836 JUNGLE 0
7 True 7710 MIDDLE 0
8 True 5690 BOTTOM 0
9 True 4294 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 6692 3047 0 1055 0 0 3340
1 0 1039 2031 0 0 0 0 3364
2 0 6653 3020 1026 0 0 0 3340
3 0 1055 6671 1001 0 0 0 3340
4 0 3859 3047 3067 1029 1033 0 3340
5 0 6692 2033 0 3047 2055 0 3363
6 0 1001 2031 2423 4636 0 0 3364
7 0 1082 2031 3115 3020 4635 0 3340
8 0 6672 1055 3006 1036 1036 0 3340
9 0 3859 3117 3105 1028 1028 2055 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 2 0 1
1 0 0 0 0
2 1 2 2 1
3 0 0 0 0
4 0 0 0 0
5 2 5 2 2
6 0 0 0 0
7 2 6 4 2
8 1 3 3 1
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 456 2333 813
1 249 4256 0
2 254 54625 5194
3 610 237 237
4 502 4720 2267
5 483 440 171
6 0 45618 3239
7 831 65942 5771
8 0 3719 1588
9 950 2486 1134
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 2310 0 0 0
1 149 20 0 0
2 3674 8 0 0
3 2889 0 0 0
4 2881 0 0 0
5 1188 12 0 0
6 3158 84 0 0
7 4368 4 0 0
8 667 4 0 0
9 1123 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 47357
1 0 2 5150
2 0 3 7090
3 0 4 30597
4 0 5 3792
5 0 6 50678
6 0 7 16814
7 0 8 8233
8 0 9 28364
9 0 10 2867
physicalDamageDealtToChampions physicalDamageTaken role \
0 4682 8240 SUPPORT
1 226 2610 SUPPORT
2 136 3039 SUPPORT
3 3791 1792 SUPPORT
4 766 2247 SUPPORT
5 6890 7328 SUPPORT
6 543 10363 SUPPORT
7 677 3782 SUPPORT
8 2263 3362 SUPPORT
9 526 3762 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 4 3 14 112
1 2 11 1 4 179
2 2 12 2 4 415
3 2 4 2 7 113
4 2 14 2 4 206
5 3 4 2 14 319
6 10 11 2 4 95
7 2 4 3 14 164
8 2 7 1 4 57
9 3 14 1 4 155
summonerName teamEarlySurrendered teamId teamPosition \
0 DrW33b False 100 TOP
1 Hi Im Volidyr False 100 JUNGLE
2 Not Scuttle False 100 MIDDLE
3 FlameHunter1414 False 100 BOTTOM
4 ParanoiaSB False 100 UTILITY
5 Rotome False 200 TOP
6 Beeeer Belly False 200 JUNGLE
7 Coolgum15 False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 AlexAve False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 8 1004 50074 5879
1 2 1004 10159 250
2 10 1004 63196 5330
3 8 1004 30834 4028
4 22 1004 12188 3280
5 12 1004 56744 7401
6 10 1004 72847 3946
7 0 1004 74552 6825
8 0 1004 32478 3851
9 13 1004 17860 1902
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 11042 1865 98 8
1 2781 1246 0 96
2 7030 0 119 129
3 4925 843 90 17
4 5177 2 20 93
5 8900 1686 85 16
6 13692 9887 12 251
7 8251 1255 119 0
8 4029 1359 78 0
9 4885 201 19 23
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 107 1 384
1 10 1 752
2 95 0 1480
3 64 2 0
4 57 1 3675
5 53 1 5625
6 0 1 10414
7 35 1 376
8 0 3 394
9 27 4 12505
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 384 492 0 1
1 24 22 0 1
2 0 316 0 1
3 0 244 0 1
4 246 48 0 1
5 340 384 0 0
6 164 170 0 0
7 376 100 1 0
8 0 0 0 0
9 242 0 0 0
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 7 0 1 4 False
1 1 1 0 0 False
2 8 0 0 5 False
3 4 0 0 3 False
4 9 0 0 6 False
5 4 1 0 2 True
6 9 1 2 2 True
7 6 0 0 4 True
8 7 0 0 5 True
9 14 2 0 7 True ,
assists baronKills bountyLevel champLevel championName \
0 2 0 0 13 Maokai
1 6 0 0 11 Nunu
2 1 0 0 13 Ziggs
3 5 0 0 12 Lucian
4 3 0 0 9 Thresh
5 5 0 2 14 Pantheon
6 10 0 3 14 Hecarim
7 5 0 3 14 Fizz
8 2 0 0 11 Kaisa
9 7 0 3 11 Brand
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 1514 2322 1514
1 0 2685 0
2 6395 6796 6395
3 1312 2135 1312
4 62 522 62
5 2058 2058 2058
6 1270 14747 1270
7 1809 2079 1809
8 2615 6737 2615
9 1484 4014 1484
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 3 0 False False
1 6 0 0 False False
2 3 0 0 False False
3 4 0 1 False False
4 5 4 0 False False
5 3 1 0 False True
6 2 0 2 False False
7 2 2 0 False False
8 2 0 0 False False
9 4 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False True False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 7331 TOP 0
1 True 6902 JUNGLE 0
2 True 7685 MIDDLE 0
3 True 8238 BOTTOM 0
4 True 5828 UTILITY 0
5 True 9442 TOP 0
6 True 9716 JUNGLE 0
7 True 8478 MIDDLE 0
8 True 8533 BOTTOM 0
9 True 7056 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3047 2033 3068 3082 3024 2055 3340
1 0 3068 2031 3111 3076 1011 0 3340
2 0 3070 6653 3041 3020 1026 0 3340
3 0 1055 6672 3006 3057 1018 3133 3340
4 0 3024 3855 3190 1028 3009 0 3364
5 0 6692 2033 3111 3071 1037 0 3340
6 0 3078 3111 3742 3076 1028 0 3340
7 0 2033 4636 3100 3158 0 0 3340
8 0 6672 1055 3006 6676 1018 0 3363
9 0 3853 3020 6653 1026 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 3 2 1
1 0 1 0 1
2 1 3 2 1
3 1 3 2 1
4 1 3 2 1
5 2 6 2 1
6 1 4 3 1
7 1 3 3 1
8 2 6 3 2
9 1 3 3 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 483 44526 7166
1 431 38375 5258
2 1298 74791 11005
3 581 1072 397
4 586 5880 2855
5 537 823 523
6 719 13512 1784
7 386 40136 6324
8 896 6506 2347
9 250 35403 12286
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 2136 0 0 0
1 5937 93 0 0
2 5624 0 0 0
3 5302 18 0 0
4 5736 0 0 0
5 5580 0 0 0
6 9094 140 0 0
7 7993 8 0 0
8 3461 4 0 0
9 2784 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 14861
1 0 2 18554
2 0 3 8200
3 0 4 75025
4 0 5 5265
5 0 6 81788
6 0 7 127954
7 0 8 23861
8 0 9 62308
9 0 10 1876
physicalDamageDealtToChampions physicalDamageTaken role \
0 1470 11969 SOLO
1 1332 15910 NONE
2 516 3634 SOLO
3 7957 7926 CARRY
4 547 5290 SUPPORT
5 13484 7520 SOLO
6 10586 19113 NONE
7 1677 4585 SOLO
8 4137 4392 CARRY
9 338 3306 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 1 12 103
1 3 4 11 11 119
2 3 4 4 14 65
3 3 7 3 4 30
4 3 4 2 14 138
5 2 4 4 14 319
6 3 4 16 11 164
7 3 14 2 4 210
8 2 7 2 4 57
9 1 14 4 4 155
summonerName teamEarlySurrendered teamId teamPosition \
0 RIP TROGGY False 100 TOP
1 migsmtz123 False 100 JUNGLE
2 KakyoinlikesMoms False 100 MIDDLE
3 Gedaouedetudl False 100 BOTTOM
4 fisch123 False 100 UTILITY
5 Rotome False 200 TOP
6 Coolgum15 False 200 JUNGLE
7 garblewarble45 False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 AlexAve False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 39 1527 63473 8636
1 20 1527 90419 6995
2 13 1527 89208 12559
3 0 1527 86497 8816
4 18 1527 23300 3723
5 16 1527 86115 14671
6 20 1527 148657 13365
7 7 1527 66477 8552
8 2 1527 74129 7234
9 8 1527 41628 12828
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 15062 3522 115 367
1 22946 11195 10 272
2 9433 1196 125 149
3 13751 3387 161 27
4 11435 274 35 53
5 13195 2735 155 25
6 28764 16035 23 196
7 13516 3423 146 96
8 8030 2321 131 32
9 6551 787 36 28
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 112 1 4085
1 115 1 33489
2 79 1 6216
3 123 2 10399
4 139 4 12153
5 83 1 3504
6 54 1 7190
7 44 1 2480
8 27 1 5314
9 52 1 4348
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 956 0 3
1 405 1099 0 3
2 1038 174 1 3
3 461 522 0 3
4 320 408 0 3
5 664 95 1 1
6 994 555 2 1
7 550 937 0 1
8 749 176 0 1
9 204 460 0 1
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 19 4 2 11 False
1 17 0 0 7 False
2 14 0 1 8 False
3 13 0 3 4 False
4 36 4 3 16 False
5 12 2 0 8 True
6 12 0 1 7 True
7 24 2 2 10 True
8 9 0 2 5 True
9 31 2 0 15 True ,
assists baronKills bountyLevel champLevel championName \
0 9 0 0 17 Illaoi
1 8 0 0 16 Kindred
2 13 1 8 17 AurelionSol
3 8 0 0 15 Jhin
4 12 0 0 13 Rell
5 11 0 0 15 Pantheon
6 4 0 0 14 Ekko
7 6 0 0 16 Syndra
8 1 0 0 14 Kaisa
9 11 0 0 14 Leona
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 7177 20419 7177
1 4127 26318 4127
2 3470 9078 3470
3 8331 16878 8331
4 3064 5146 3064
5 2812 9420 2812
6 0 14722 0
7 2769 5157 2769
8 2876 4067 2876
9 722 1276 722
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 5 0 0 False False
1 9 0 3 False False
2 5 0 0 False False
3 5 2 1 False False
4 6 0 0 False False
5 7 1 0 False False
6 10 1 1 False False
7 9 0 0 False True
8 6 0 0 False False
9 7 2 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False True False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 12675 TOP 1
1 False 14863 JUNGLE 1
2 False 12831 MIDDLE 1
3 False 14313 BOTTOM 0
4 False 8584 UTILITY 0
5 False 10551 TOP 0
6 False 9633 JUNGLE 0
7 False 14755 MIDDLE 0
8 False 11522 BOTTOM 0
9 False 7533 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 3133 6630 3053 3047 3065 1029 3340
1 0 6672 6676 3031 3006 3094 1053 3364
2 0 2033 6656 3020 3116 3165 1052 3340
3 0 6676 6691 3009 3094 3031 0 3363
4 0 4005 3193 3860 1029 3111 1028 3340
5 3 6609 3071 6692 3047 0 0 3340
6 3 3100 3916 3152 3020 1026 0 3340
7 3 2033 3157 3020 6655 3089 3135 3340
8 3 3006 3085 6672 6676 3123 1042 3340
9 3 3860 3047 3068 3109 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 3 2 1
1 3 15 6 2
2 1 9 8 2
3 3 11 5 3
4 0 1 0 1
5 0 4 0 1
6 0 5 0 1
7 5 14 5 1
8 1 6 3 1
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 552 0 0
1 469 27123 3081
2 896 111003 22271
3 1005 12155 1198
4 735 21314 7516
5 417 2969 1380
6 463 94802 10309
7 389 206963 45404
8 741 12688 3210
9 735 24788 4520
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 18278 17 0 0
1 13873 146 0 0
2 15269 4 0 0
3 10960 8 0 0
4 10109 0 0 0
5 6434 6 1 0
6 6701 101 1 0
7 8348 7 1 0
8 4361 11 1 0
9 10191 1 1 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 184644
1 0 2 131984
2 0 3 6081
3 0 4 125338
4 0 5 10458
5 0 6 108778
6 0 7 20088
7 0 8 9826
8 0 9 108237
9 0 10 6557
physicalDamageDealtToChampions physicalDamageTaken role \
0 19286 15590 SOLO
1 20135 16851 NONE
2 347 5411 SOLO
3 18427 7845 CARRY
4 1065 11167 SUPPORT
5 15212 18051 SOLO
6 1962 29301 NONE
7 1966 13404 SOLO
8 3716 14948 CARRY
9 1491 11859 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 4 3 12 393
1 5 4 12 11 307
2 2 4 1 14 131
3 6 7 4 4 238
4 5 4 6 14 84
5 3 4 4 14 319
6 18 11 5 4 89
7 4 4 5 14 164
8 2 7 3 4 57
9 6 14 4 4 155
summonerName teamEarlySurrendered teamId teamPosition \
0 supercoolkiddo69 False 100 TOP
1 HunterPwnz False 100 JUNGLE
2 FlamingPoppins False 100 MIDDLE
3 I Gargle Balls False 100 BOTTOM
4 I Gargle BaIIs False 100 UTILITY
5 Rotome False 200 TOP
6 HD4Him False 200 JUNGLE
7 Coolgum15 False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 AlexAve False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 2 1941 199769 19286
1 5 1941 175136 26234
2 27 1941 121944 22618
3 16 1941 140068 20073
4 19 1941 40053 9610
5 22 1941 118688 17299
6 14 1941 127333 13290
7 62 1941 222458 49152
8 0 1941 127434 7380
9 31 1941 36776 6739
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 35584 8639 214 29
1 31307 16284 15 142
2 21810 4858 154 156
3 19307 7427 159 150
4 22033 3760 40 47
5 25318 4348 133 33
6 37405 12582 31 353
7 22321 3529 207 394
8 19997 3469 173 0
9 23051 613 37 68
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 130 1 15125
1 276 9 16028
2 110 1 4860
3 209 4 2574
4 208 5 8280
5 187 1 6941
6 325 1 12443
7 285 1 5668
8 179 1 6508
9 211 4 5430
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 1716 3 3
1 3017 581 2 3
2 0 1130 2 3
3 446 501 4 3
4 1028 756 0 3
5 706 831 1 11
6 1018 1402 0 11
7 1781 569 1 11
8 453 687 1 11
9 728 1001 0 11
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 19 0 0 10 True
1 24 0 5 6 True
2 8 0 0 5 True
3 20 2 0 9 True
4 47 0 2 29 True
5 11 2 0 7 False
6 31 1 2 11 False
7 12 0 0 7 False
8 10 0 0 7 False
9 25 2 0 14 False ,
assists baronKills bountyLevel champLevel championName \
0 1 0 0 11 Fiora
1 4 0 0 10 Nunu
2 5 0 0 11 Leblanc
3 5 0 0 9 Ezreal
4 5 0 0 9 Sett
5 4 0 12 12 Pantheon
6 6 0 1 11 Velkoz
7 7 0 1 11 Evelynn
8 7 0 0 11 Vayne
9 7 0 0 9 Leona
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 450 916 450
1 0 4180 0
2 0 888 0
3 2166 3656 2166
4 2199 3676 2199
5 3942 8275 3942
6 109 3745 109
7 765 9873 765
8 2091 7061 2091
9 144 1946 144
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 7 2 0 False False
1 4 4 2 False False
2 1 2 0 False False
3 5 0 0 False False
4 3 0 0 False False
5 1 3 0 False True
6 3 0 0 False False
7 2 1 1 False False
8 7 2 0 False False
9 2 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 True False False
6 False False False
7 False True False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 5354 TOP 0
1 True 7115 JUNGLE 0
2 True 5789 MIDDLE 0
3 True 6989 BOTTOM 0
4 True 5329 UTILITY 0
5 True 9958 TOP 0
6 True 5564 MIDDLE 0
7 True 7031 JUNGLE 0
8 True 7481 BOTTOM 0
9 True 5264 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 2031 6631 3047 2055 0 0 3340
1 0 3047 2031 3066 3068 1031 0 3364
2 0 2033 1082 3020 6655 0 0 3364
3 0 3070 2031 6632 1053 1001 1043 3340
4 0 3855 2422 3748 1029 1028 1033 3340
5 0 6692 2033 3053 3047 2055 3077 3363
6 0 2420 1056 1029 6655 2422 1052 3340
7 0 3020 2031 4636 3057 1026 1052 3340
8 0 1055 2003 2055 3086 3006 6672 3340
9 0 3859 1001 3068 2055 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 1 0 1
1 1 5 2 1
2 1 2 2 1
3 1 4 2 1
4 1 2 2 1
5 1 12 12 1
6 0 2 0 1
7 0 1 0 1
8 1 3 3 2
9 0 2 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 183 816 505
1 529 34883 3274
2 1112 19742 4778
3 346 6914 3802
4 998 0 0
5 700 1828 956
6 447 34825 6680
7 249 67709 4858
8 381 866 649
9 736 5503 2754
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 4192 16 0 0
1 4765 80 0 1
2 3427 4 0 0
3 3311 0 0 0
4 2810 0 0 0
5 1284 4 0 0
6 3805 0 0 0
7 2828 104 0 0
8 3734 8 0 0
9 2272 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 33567
1 0 2 14791
2 0 3 13724
3 0 4 42720
4 0 5 25704
5 0 6 80949
6 0 7 9551
7 0 8 11897
8 0 9 56109
9 0 10 4045
physicalDamageDealtToChampions physicalDamageTaken role \
0 3088 8282 SOLO
1 529 14492 NONE
2 624 5367 SOLO
3 9216 8636 CARRY
4 3642 9870 SUPPORT
5 16902 10137 SOLO
6 243 1841 SOLO
7 516 12879 NONE
8 11774 6479 CARRY
9 1503 4923 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 2 12 3 4 94
1 3 4 10 11 218
2 1 4 3 14 377
3 1 4 3 7 517
4 3 4 4 14 95
5 2 4 5 14 319
6 3 21 2 4 57
7 2 4 14 11 164
8 3 4 3 7 275
9 3 14 2 4 154
summonerName teamEarlySurrendered teamId teamPosition \
0 Rudeboiiii False 100 TOP
1 Tylue False 100 JUNGLE
2 KDA Ashe False 100 MIDDLE
3 LyteSide False 100 BOTTOM
4 Superdeez False 100 UTILITY
5 Rotome False 200 TOP
6 Dublaiar False 200 MIDDLE
7 Coolgum15 False 200 JUNGLE
8 ImmortalPhantom1 False 200 BOTTOM
9 AlexAve False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 6 1236 35335 4544
1 19 1236 70675 3890
2 12 1236 36983 5745
3 0 1236 49634 13019
4 14 1236 33601 6301
5 22 1236 83496 18576
6 12 1236 50357 7606
7 6 1236 88153 5575
8 9 1236 66296 14652
9 28 1236 15084 4676
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 13150 1508 65 74
1 20657 9795 14 331
2 9546 2594 92 16
3 12491 2817 89 0
4 13559 0 37 54
5 12457 4614 114 30
6 5664 9 77 134
7 16518 9204 6 199
8 11311 3228 120 50
9 8272 322 22 38
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 150 1 951
1 94 1 21000
2 36 1 3517
3 112 2 0
4 61 0 7896
5 30 1 718
6 73 1 5980
7 26 1 8546
8 111 2 9320
9 51 3 5534
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 951 675 0 3
1 86 1398 0 3
2 342 751 0 3
3 0 543 1 3
4 2659 878 0 3
5 718 1035 0 1
6 682 18 1 1
7 200 809 1 1
8 2229 1097 1 1
9 418 1076 0 1
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 15 3 1 7 False
1 12 4 1 5 False
2 15 4 2 5 False
3 8 0 0 6 False
4 16 0 2 8 False
5 23 4 4 8 True
6 11 0 1 6 True
7 14 1 1 6 True
8 13 3 2 5 True
9 17 2 1 10 True ,
assists baronKills bountyLevel champLevel championName \
0 0 0 0 10 Garen
1 3 0 1 8 Shaco
2 0 0 0 10 Kayle
3 1 0 1 8 Jhin
4 2 0 0 8 Brand
5 0 0 5 12 Fiora
6 3 0 0 9 Viego
7 3 0 0 10 Velkoz
8 3 0 0 9 Pantheon
9 7 0 0 9 Senna
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 1502 1502 1502
1 11 1856 11
2 634 634 634
3 0 0 0
4 0 0 0
5 4435 7763 4435
6 1382 11589 1382
7 1637 2982 1637
8 2177 4616 2177
9 984 2222 984
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 4 1 0 False False
1 5 2 0 False False
2 2 0 0 False False
3 3 0 0 False False
4 5 0 0 False False
5 0 1 0 False False
6 1 0 1 False False
7 1 0 0 False False
8 1 0 1 False True
9 3 0 0 True False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False True False
7 True False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 4574 TOP 0
1 True 4540 JUNGLE 0
2 True 5141 MIDDLE 0
3 True 3913 BOTTOM 0
4 True 4960 UTILITY 0
5 True 6707 TOP 0
6 True 6553 JUNGLE 0
7 True 4646 MIDDLE 0
8 True 6901 BOTTOM 0
9 True 7195 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1054 6029 3047 3067 1036 0 3340
1 0 3157 3117 0 0 0 0 3340
2 0 1054 3115 3006 0 0 0 3340
3 0 6670 3009 1018 0 0 1055 3340
4 0 3853 3802 2055 1001 3108 0 3364
5 0 6631 1037 3047 1053 0 0 3340
6 0 6673 2031 3006 1053 1042 0 3340
7 0 6653 0 2422 0 1056 0 3340
8 0 1055 6692 3111 3134 1018 0 3340
9 0 3864 3004 6670 3009 0 0 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 0 0 0 0
1 0 1 0 1
2 0 1 0 1
3 0 2 0 1
4 0 2 0 1
5 1 5 5 1
6 1 4 4 1
7 0 0 0 0
8 1 6 6 1
9 2 4 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 503 0 0
1 244 20288 3007
2 474 29595 1509
3 432 541 0
4 259 13394 6096
5 0 516 241
6 900 8842 404
7 357 19442 1310
8 950 0 0
9 425 0 0
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 241 0 0 0
1 236 48 0 0
2 1007 8 0 0
3 420 0 0 0
4 168 0 0 0
5 292 0 0 0
6 2278 80 0 0
7 2014 0 0 0
8 3381 4 0 0
9 3509 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 42077
1 0 2 10969
2 0 3 17324
3 0 4 26187
4 0 5 824
5 0 6 48091
6 0 7 48618
7 0 8 13449
8 0 9 30017
9 0 10 34210
physicalDamageDealtToChampions physicalDamageTaken role \
0 6214 7857 DUO
1 680 8508 SUPPORT
2 737 6430 DUO
3 2834 5578 SUPPORT
4 423 5171 SUPPORT
5 6824 10446 DUO
6 3026 9707 SUPPORT
7 553 1096 SUPPORT
8 5971 4907 SUPPORT
9 7735 4812 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 14 3 4 186
1 10 11 3 14 214
2 2 4 0 14 319
3 2 7 2 4 57
4 1 14 2 4 154
5 1 12 2 4 94
6 7 11 2 4 122
7 1 4 2 21 65
8 3 14 2 4 69
9 2 4 4 7 270
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 SooChubby False 100 TOP 23
1 AFK Poopin False 100 JUNGLE 14
2 Rotome False 100 MIDDLE 2
3 Dublaiar False 100 BOTTOM 8
4 AlexAve False 100 UTILITY 6
5 Rudeboiiii False 200 TOP 3
6 ToastyStroodle False 200 JUNGLE 6
7 eHOakk False 200 MIDDLE 5
8 Ashbyflex False 200 BOTTOM 9
9 CPavan False 200 UTILITY 27
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 969 42497 6634
1 969 35203 4561
2 969 50095 2247
3 969 26729 2834
4 969 14348 6650
5 969 56247 9190
6 969 62318 3676
7 969 35615 1864
8 969 30548 6324
9 969 34778 7903
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 10223 220 96 51
1 8962 1732 1 330
2 7478 1562 110 121
3 6244 853 52 33
4 5603 384 8 8
5 11376 6273 105 52
6 11986 6648 11 92
7 3191 352 69 32
8 8597 1759 78 17
9 8720 6698 35 136
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 106 1 420
1 71 1 3945
2 48 2 3175
3 47 1 0
4 48 1 130
5 0 2 7639
6 30 1 4857
7 14 1 2724
8 0 1 531
9 39 3 568
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 420 2124 0 3
1 873 217 0 3
2 0 40 0 3
3 0 245 0 3
4 130 263 0 3
5 2124 636 1 0
6 246 0 1 0
7 0 80 0 0
8 353 308 1 0
9 168 398 0 0
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 6 1 1 5 False
1 15 2 0 5 False
2 3 0 0 2 False
3 6 0 0 4 False
4 8 1 0 4 False
5 8 2 0 5 True
6 10 1 1 4 True
7 6 0 0 5 True
8 0 0 0 1 True
9 10 0 1 6 True ,
assists baronKills bountyLevel champLevel championName \
0 0 0 0 11 Pantheon
1 1 0 0 9 Taliyah
2 0 0 0 12 Kassadin
3 0 0 0 9 Jhin
4 0 0 0 9 Pyke
5 3 0 2 13 Nasus
6 5 0 1 11 Nunu
7 3 0 4 12 Leblanc
8 3 0 6 11 Kaisa
9 7 0 2 10 Yuumi
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 0 0 0
1 0 1904 0
2 2887 2887 2887
3 0 0 0
4 0 0 0
5 6135 10836 6135
6 1100 20420 1100
7 2184 4696 2184
8 6832 9762 6832
9 1298 1459 1298
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 4 2 0 False False
1 5 0 0 False False
2 2 0 0 False False
3 3 0 0 False False
4 3 0 0 False False
5 0 0 0 False False
6 1 0 3 False False
7 0 1 0 False False
8 0 2 0 False True
9 0 3 0 True False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False True False
9 True False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 5976 TOP 0
1 True 4995 JUNGLE 0
2 True 5852 MIDDLE 0
3 True 5121 BOTTOM 0
4 True 4548 UTILITY 0
5 True 7243 TOP 1
6 True 7314 JUNGLE 0
7 True 7194 MIDDLE 0
8 True 9300 BOTTOM 0
9 True 6035 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 1 6692 2033 3111 1028 1036 0 3340
1 1 6655 2031 1001 0 0 0 3340
2 1 2031 6656 3070 1082 1052 0 3363
3 1 3009 1055 6671 1036 0 0 3340
4 1 3857 3117 3134 1036 1036 3123 3340
5 0 1054 6632 1029 2031 3047 0 3340
6 0 1033 2031 3047 6660 0 0 3340
7 0 3111 2033 6655 3108 3067 0 3364
8 0 1055 6672 3006 6676 3086 0 3364
9 0 3853 3504 1004 6617 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 1 0 1
1 0 0 0 0
2 0 0 0 0
3 0 0 0 0
4 0 0 0 0
5 1 2 2 1
6 1 3 2 1
7 1 4 4 1
8 1 6 6 1
9 1 2 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 612 5230 874
1 746 65595 2270
2 561 42361 3831
3 582 442 274
4 795 0 0
5 0 7752 1441
6 609 32274 4236
7 0 32458 7949
8 0 6794 2131
9 0 5721 4033
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 3582 0 0 0
1 4875 85 0 0
2 6081 0 0 0
3 4099 0 0 0
4 2874 0 0 0
5 1071 12 0 0
6 2475 92 0 0
7 3614 0 0 0
8 978 11 0 0
9 308 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 57675
1 0 2 6931
2 0 3 13895
3 0 4 46640
4 0 5 17434
5 0 6 76855
6 0 7 17370
7 0 8 14613
8 0 9 92576
9 0 10 1206
physicalDamageDealtToChampions physicalDamageTaken role \
0 13057 7142 NONE
1 47 13507 NONE
2 400 5469 SOLO
3 3603 4167 CARRY
4 1825 6169 SUPPORT
5 6520 16447 SOLO
6 964 19176 NONE
7 1986 3228 SOLO
8 7202 7499 CARRY
9 755 2309 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 2 14 319
1 12 11 3 4 132
2 2 4 2 12 164
3 3 7 1 4 57
4 3 4 2 14 112
5 6 6 3 4 129
6 11 11 2 4 230
7 2 4 4 14 139
8 3 7 3 4 48
9 5 14 3 3 355
summonerName teamEarlySurrendered teamId teamPosition \
0 Rotome False 100 TOP
1 SlothoftheAbyss False 100 JUNGLE
2 Coolgum15 False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 ItzKool8d False 100 UTILITY
5 damamac False 200 TOP
6 Tokoyamis Shadow False 200 JUNGLE
7 Dekus brokenbody False 200 MIDDLE
8 Carnic False 200 BOTTOM
9 IAphroditeI False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 20 1295 69036 14352
1 6 1295 79300 2399
2 10 1295 60306 4232
3 11 1295 58098 3877
4 8 1295 24265 2063
5 13 1295 89758 7962
6 18 1295 91013 5900
7 13 1295 56738 10744
8 0 1295 104779 9768
9 12 1295 7581 5442
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 11111 2044 121 29
1 18739 7499 1 326
2 12138 868 121 81
3 8943 1836 90 33
4 9633 1994 45 77
5 17938 1401 122 86
6 21688 14774 25 269
7 6867 1924 106 33
8 8727 3753 160 0
9 2628 5739 4 32
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 83 1 6130
1 122 1 6773
2 63 1 4050
3 67 2 11015
4 61 1 6831
5 0 1 5150
6 16 1 41369
7 0 1 9667
8 0 3 5408
9 0 5 654
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 420 386 0 6
1 81 356 0 6
2 0 586 0 6
3 0 677 0 6
4 238 589 0 6
5 0 420 2 0
6 699 36 1 0
7 808 24 1 0
8 434 248 2 0
9 654 10 0 0
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 15 2 0 6 False
1 5 0 0 3 False
2 6 0 0 5 False
3 3 0 0 3 False
4 11 0 2 8 False
5 9 0 0 6 True
6 17 0 0 7 True
7 13 1 3 4 True
8 16 2 4 6 True
9 25 3 2 11 True ,
assists baronKills bountyLevel champLevel championName \
0 1 0 9 14 Pantheon
1 3 0 0 10 Taliyah
2 3 0 5 14 Talon
3 5 0 0 11 Kaisa
4 7 0 0 9 Shaco
5 0 0 0 11 Camille
6 2 0 1 11 Lillia
7 2 0 0 12 Malzahar
8 3 0 0 10 Samira
9 4 0 1 9 Karma
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 5782 5782 5782
1 0 10869 0
2 3117 3117 3117
3 1674 4973 1674
4 78 867 78
5 1526 1526 1526
6 0 3895 0
7 3917 3917 3917
8 1855 3387 1855
9 266 266 266
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 0 0 0 False True
1 3 0 2 False False
2 1 0 0 False False
3 1 0 0 False False
4 4 1 0 False False
5 8 0 0 False False
6 4 2 1 False False
7 6 0 0 False False
8 5 2 0 False False
9 5 1 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 9408 TOP 0
1 True 6565 JUNGLE 0
2 True 9821 MIDDLE 0
3 True 5986 BOTTOM 0
4 True 5874 UTILITY 0
5 True 5143 TOP 0
6 True 7343 JUNGLE 0
7 True 7158 MIDDLE 0
8 True 7222 BOTTOM 0
9 True 5278 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 2033 6692 3047 3053 0 0 3340
1 0 3020 2031 6655 3108 1052 0 3340
2 0 1055 6693 3117 6695 3134 0 3340
3 0 6671 1055 3006 1018 1036 0 3363
4 0 2424 3853 1052 6653 0 3020 3364
5 0 1055 3078 3047 0 0 0 3340
6 0 6653 2031 3020 3191 0 0 3340
7 0 1026 3020 6653 1011 1052 0 3340
8 0 6673 3006 1055 3134 0 0 3363
9 0 3851 2031 4005 3020 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 9 9 1
1 1 5 4 1
2 2 10 5 3
3 0 1 0 1
4 0 3 0 1
5 0 0 0 0
6 0 4 0 1
7 0 1 0 1
8 1 3 2 1
9 0 1 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 0 1084 382
1 636 61627 5094
2 944 0 0
3 1200 4752 973
4 452 13143 7085
5 229 518 518
6 616 53925 4850
7 498 62395 6854
8 479 4489 1347
9 495 15016 3900
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 1022 8 0 0
1 4496 87 0 0
2 6439 0 0 0
3 3972 0 0 0
4 3518 0 0 0
5 1372 0 0 0
6 4279 108 0 0
7 1079 0 0 0
8 4970 0 0 0
9 4840 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 95095
1 0 2 8522
2 0 3 90807
3 0 4 47841
4 0 5 1318
5 0 6 34601
6 0 7 12447
7 0 8 11517
8 0 9 54213
9 0 10 1909
physicalDamageDealtToChampions physicalDamageTaken role \
0 13147 8719 DUO
1 140 10361 NONE
2 14188 3161 DUO
3 2581 2368 CARRY
4 739 2917 SUPPORT
5 5061 13488 SOLO
6 53 14341 NONE
7 224 10239 SOLO
8 5119 4620 CARRY
9 270 3511 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 5 14 319
1 12 11 3 4 132
2 3 4 4 14 164
3 2 7 2 4 57
4 1 4 3 14 232
5 3 4 3 12 105
6 3 4 13 11 295
7 4 4 0 14 252
8 1 4 3 7 348
9 4 4 5 14 284
summonerName teamEarlySurrendered teamId teamPosition \
0 Rotome False 100 TOP
1 SlothoftheAbyss False 100 JUNGLE
2 Coolgum15 False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 Mackwo False 100 UTILITY
5 Brutha Jake False 200 TOP
6 KiwiiiCat False 200 JUNGLE
7 Amateraisu False 200 MIDDLE
8 Miusaka False 200 BOTTOM
9 HolidayCatt False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 19 1236 96761 14111
1 4 1236 77565 5383
2 2 1236 94322 14864
3 0 1236 52594 3554
4 19 1236 14777 8140
5 11 1236 40032 7285
6 14 1236 85211 6119
7 15 1236 78293 7078
8 0 1236 59326 6467
9 10 1236 17658 4903
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 11448 4433 148 29
1 15267 7497 7 282
2 10262 1880 132 154
3 6396 1851 109 0
4 7258 0 7 139
5 15523 1845 103 76
6 18891 7217 6 371
7 11665 290 137 96
8 9851 1298 126 0
9 8536 575 14 116
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 0 1 582
1 61 1 7415
2 35 1 3515
3 33 2 0
4 85 0 315
5 150 1 4912
6 116 1 18838
7 152 1 4380
8 124 2 624
9 105 1 732
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 582 1705 2 2
1 149 409 0 2
2 676 660 1 2
3 0 55 0 2
4 315 822 0 2
5 1705 662 0 3
6 1215 270 0 3
7 0 346 1 3
8 0 260 1 3
9 732 184 0 3
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 6 0 0 3 True
1 1 0 1 0 True
2 10 0 2 5 True
3 6 0 0 5 True
4 26 1 3 10 True
5 6 0 0 4 False
6 18 2 0 8 False
7 6 0 0 4 False
8 11 2 2 5 False
9 30 1 4 14 False ,
assists baronKills bountyLevel champLevel championName \
0 1 0 3 16 Pantheon
1 4 0 0 11 Kindred
2 2 0 0 13 Kassadin
3 2 0 0 10 Varus
4 1 0 0 9 Janna
5 1 0 1 12 MonkeyKing
6 9 0 1 13 RekSai
7 2 0 0 13 Mordekaiser
8 7 0 2 12 Jhin
9 8 0 3 13 Senna
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2376 5458 2376
1 0 1121 0
2 3330 3330 3330
3 0 0 0
4 0 0 0
5 1620 2796 1620
6 0 9676 0
7 2956 18979 2956
8 5733 11466 5733
9 2025 5492 2025
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 2 2 0 False False
1 6 0 0 False False
2 7 0 0 False True
3 5 0 0 False False
4 9 6 0 False False
5 5 1 0 False False
6 2 0 1 False False
7 5 3 1 False False
8 1 0 1 False False
9 2 3 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 True False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 10765 TOP 0
1 True 7204 JUNGLE 0
2 True 10490 MIDDLE 0
3 True 4998 BOTTOM 0
4 True 4927 UTILITY 0
5 True 6749 TOP 0
6 True 9606 JUNGLE 0
7 True 8689 MIDDLE 0
8 True 10081 BOTTOM 0
9 True 10034 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 6692 2033 3047 3814 3155 1036 3363
1 0 6672 2031 3006 1053 1043 0 3340
2 0 3157 6656 3070 1082 1058 3020 3340
3 0 3004 1036 1036 3158 0 0 3340
4 0 3853 4005 3158 1004 2055 0 3364
5 0 1055 3047 2031 3077 6630 0 3340
6 0 2031 6693 3047 3814 3044 0 3340
7 0 1056 4637 1029 4633 3006 0 3340
8 0 1055 6676 6671 1053 1042 3006 3340
9 0 6672 3124 3864 3086 2015 3009 3340
killingSprees kills largestKillingSpree largestMultiKill \
0 2 8 4 1
1 0 1 0 1
2 1 6 4 1
3 0 0 0 0
4 0 0 0 0
5 0 1 0 1
6 1 9 8 2
7 1 5 2 2
8 2 7 5 2
9 2 7 4 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 769 4183 363
1 369 14039 222
2 377 57337 15383
3 384 2857 1004
4 382 8373 4464
5 484 5141 958
6 1106 6283 0
7 371 68583 7762
8 1224 7640 2156
9 988 130 50
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 3602 8 0 0
1 5681 106 0 0
2 2943 2 0 0
3 799 0 0 0
4 275 0 0 0
5 3103 8 0 0
6 6166 113 0 0
7 2899 28 0 0
8 5987 5 0 0
9 5042 15 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 118634
1 0 2 57432
2 0 3 16171
3 0 4 43220
4 0 5 1203
5 0 6 42998
6 0 7 96820
7 0 8 16554
8 0 9 105110
9 0 10 59957
physicalDamageDealtToChampions physicalDamageTaken role \
0 15301 8328 SOLO
1 2338 16703 NONE
2 1266 17088 SOLO
3 5442 7820 CARRY
4 822 11692 SUPPORT
5 3440 8728 SOLO
6 16520 15678 NONE
7 2191 13983 SOLO
8 8878 6432 CARRY
9 11485 4931 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 5 14 319
1 11 11 3 4 132
2 4 4 3 12 164
3 3 7 3 4 57
4 3 4 3 3 181
5 3 4 2 12 94
6 13 11 4 4 325
7 4 14 3 4 345
8 3 4 2 7 316
9 2 3 2 4 48
summonerName teamEarlySurrendered teamId teamPosition \
0 Rotome False 100 TOP
1 SlothoftheAbyss False 100 JUNGLE
2 Coolgum15 False 100 MIDDLE
3 Dublaiar False 100 BOTTOM
4 STABBYYYY False 100 UTILITY
5 Loohna False 200 TOP
6 h20200 False 200 JUNGLE
7 WithBidenWeFall False 200 MIDDLE
8 EthreainAmbusher False 200 BOTTOM
9 catchyoubltch False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 16 1501 126656 16353
1 3 1501 80682 2832
2 19 1501 80388 16649
3 6 1501 46077 6446
4 31 1501 9576 5287
5 3 1501 49709 4398
6 32 1501 120512 20389
7 3 1501 99379 11058
8 18 1501 114337 11142
9 22 1501 66132 11989
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 13236 4443 201 69
1 22712 11106 8 204
2 21702 2631 140 112
3 8759 1087 69 100
4 14056 849 13 123
5 12090 859 108 17
6 22063 13023 18 237
7 17367 4888 98 87
8 12420 3010 155 113
9 9973 6540 45 110
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 70 1 3837
1 149 8 9210
2 186 1 6880
3 92 2 0
4 139 4 0
5 142 1 1570
6 54 1 17408
7 132 1 14241
8 36 2 1586
9 64 3 6045
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 688 1305 1 4
1 271 328 0 4
2 0 1670 1 4
3 0 140 0 4
4 0 2089 0 4
5 0 258 1 2
6 3868 217 0 2
7 1104 484 1 2
8 106 0 0 2
9 453 0 1 2
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 25 2 0 6 False
1 14 0 1 7 False
2 10 0 0 7 False
3 9 0 1 5 False
4 61 9 6 28 False
5 17 1 1 5 True
6 17 0 3 8 True
7 21 3 1 11 True
8 10 0 0 7 True
9 18 3 4 8 True ,
assists baronKills bountyLevel champLevel championName \
0 1 0 0 14 Warwick
1 3 0 0 10 XinZhao
2 3 0 0 14 TwistedFate
3 0 0 0 10 MissFortune
4 0 0 0 9 Lux
5 1 0 2 13 Pantheon
6 5 0 0 12 Jax
7 5 0 3 14 Katarina
8 9 0 8 12 Jhin
9 12 0 3 13 Karma
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 2966 9743 2966
1 0 10768 0
2 4798 4798 4798
3 558 1786 558
4 262 919 262
5 482 7017 482
6 1431 6747 1431
7 1211 2529 1211
8 1354 5338 1354
9 1531 1750 1531
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 4 0 0 False True
1 6 1 1 False False
2 2 3 0 False False
3 7 2 0 False False
4 8 2 0 False False
5 9 1 0 False False
6 3 0 0 False False
7 3 1 0 False False
8 0 0 2 False False
9 1 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False True False
1 False False False
2 False False False
3 False False False
4 False False False
5 False False False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 11210 TOP 0
1 True 6550 JUNGLE 0
2 True 9610 MIDDLE 0
3 True 6847 BOTTOM 0
4 True 4763 UTILITY 0
5 True 8961 TOP 0
6 True 7960 JUNGLE 0
7 True 8979 MIDDLE 0
8 True 9546 BOTTOM 0
9 True 8019 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 0 1053 3748 3158 6632 1043 0 3340
1 0 6692 2031 3006 1043 0 0 3340
2 0 2420 6656 2033 3158 1052 3100 3340
3 0 1055 6671 1001 3134 1018 2055 3340
4 0 3851 2031 6655 0 2422 0 3364
5 0 6609 2033 6692 2055 1001 1036 3340
6 0 3047 2031 3078 1043 1053 1037 3340
7 0 1055 3047 3115 1082 4635 0 3340
8 0 6671 1055 3009 6676 3086 1042 3340
9 0 3853 6617 6616 3158 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 2 11 6 1
1 0 1 0 1
2 0 2 0 1
3 0 2 0 1
4 0 0 0 0
5 2 5 2 1
6 1 3 3 1
7 1 5 3 2
8 1 8 8 2
9 2 5 3 2
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 574 20112 9858
1 767 11561 458
2 1227 104473 10784
3 483 2049 397
4 265 17020 3363
5 249 1336 312
6 934 28628 2305
7 926 75744 10523
8 0 2666 995
9 355 40053 15297
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 5816 4 0 0
1 4638 92 0 0
2 6680 6 0 0
3 7689 0 0 0
4 5827 0 0 0
5 7547 11 0 0
6 6547 128 0 0
7 6517 0 0 0
8 2942 12 0 1
9 3420 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 58815
1 0 2 59078
2 0 3 15718
3 0 4 51883
4 0 5 2609
5 0 6 87562
6 0 7 75649
7 0 8 15311
8 0 9 77221
9 0 10 4241
physicalDamageDealtToChampions physicalDamageTaken role \
0 6385 22962 NONE
1 4325 19286 NONE
2 2085 7479 SOLO
3 3268 4655 CARRY
4 126 4540 SUPPORT
5 14896 10120 SOLO
6 6486 14203 NONE
7 912 10553 SOLO
8 7777 4841 CARRY
9 1313 4628 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 7 21 100
1 3 4 14 11 51
2 2 12 2 4 128
3 4 7 4 4 204
4 4 4 0 14 132
5 2 4 4 21 319
6 11 11 3 4 132
7 4 4 4 14 188
8 2 7 3 4 57
9 3 4 5 14 164
summonerName teamEarlySurrendered teamId teamPosition \
0 EightyBard False 100 TOP
1 wisehallo False 100 JUNGLE
2 Vecksu False 100 MIDDLE
3 Matisse False 100 BOTTOM
4 Aeriseon False 100 UTILITY
5 Rotome False 200 TOP
6 SlothoftheAbyss False 200 JUNGLE
7 IrelíaIntsU False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 Coolgum15 False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 32 1547 88517 16364
1 4 1547 79266 4860
2 31 1547 125299 12869
3 3 1547 53933 3666
4 18 1547 19630 3489
5 24 1547 99453 15209
6 9 1547 111011 8851
7 0 1547 91693 12074
8 25 1547 79887 8773
9 29 1547 53370 17277
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 29469 13845 148 221
1 23944 12568 9 349
2 14500 4038 163 103
3 12514 1675 116 66
4 10512 485 13 237
5 17788 3770 134 32
6 20778 8461 9 231
7 17118 1992 155 0
8 7783 3616 119 78
9 8049 5229 32 199
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 116 1 9589
1 188 1 8626
2 85 1 5107
3 188 3 0
4 168 1 0
5 199 1 10555
6 26 1 6734
7 91 1 638
8 0 2 0
9 12 5 9076
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 120 690 2 2
1 76 20 0 2
2 0 340 1 2
3 0 170 0 2
4 0 144 0 2
5 0 120 0 3
6 60 28 0 3
7 638 48 0 3
8 0 0 1 3
9 666 0 1 3
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 10 0 1 6 False
1 19 1 1 8 False
2 27 3 3 11 False
3 15 3 1 11 False
4 25 3 0 16 False
5 10 3 2 3 True
6 19 0 2 8 True
7 16 1 1 9 True
8 11 0 2 5 True
9 35 0 4 13 True ,
assists baronKills bountyLevel champLevel championName \
0 1 0 0 14 Irelia
1 5 0 2 14 Zed
2 10 0 0 13 Yasuo
3 14 0 0 12 Yuumi
4 2 0 0 12 Udyr
5 5 0 5 17 Viego
6 12 1 1 14 Nunu
7 12 0 2 16 Kayle
8 11 0 3 14 Jhin
9 16 0 0 13 Senna
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 3046 6380 3046
1 1473 5710 1473
2 0 5830 0
3 1129 1129 1129
4 771 1709 771
5 9894 34121 9894
6 298 27384 298
7 5267 8388 5267
8 607 5747 607
9 3119 3378 3119
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 11 1 0 False False
1 3 0 0 False False
2 12 0 0 False False
3 5 2 0 False False
4 7 1 0 False False
5 3 0 0 False False
6 5 0 4 False False
7 4 2 0 False False
8 6 0 0 False True
9 7 1 0 True False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 True 10088 TOP 0
1 True 11529 JUNGLE 0
2 True 9034 MIDDLE 0
3 True 7342 UTILITY 0
4 True 9649 BOTTOM 0
5 True 17081 TOP 1
6 True 9144 JUNGLE 0
7 True 13123 MIDDLE 0
8 True 9948 BOTTOM 1
9 True 9244 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 2 1028 3153 3047 3078 1037 1028 3340
1 2 6692 0 3074 3814 3111 1036 3364
2 2 1055 6673 3006 3031 1036 0 3340
3 2 6672 3006 0 0 1052 0 3364
4 2 3113 6664 3047 3742 2055 3057 3364
5 0 1055 3153 6672 3047 6333 3051 3340
6 0 3068 2031 3111 1031 3066 0 3340
7 0 1054 3115 3006 1058 4633 1058 3363
8 0 6671 1055 3047 6676 0 0 3340
9 0 6692 3864 3047 3123 3133 1028 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 1 4 2 1
1 3 11 5 2
2 1 2 2 1
3 0 2 0 1
4 2 6 2 1
5 3 17 6 3
6 1 3 2 1
7 2 10 5 2
8 1 5 3 2
9 0 3 0 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 271 18226 4343
1 822 14416 907
2 398 6728 1362
3 549 11533 9022
4 553 83669 7980
5 827 7815 2950
6 820 33008 4546
7 636 110507 14933
8 463 982 866
9 408 0 0
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 4499 16 0 0
1 3995 84 0 0
2 9670 5 0 0
3 1905 4 0 0
4 5039 35 0 0
5 8900 23 0 0
6 4544 116 0 0
7 4174 20 0 0
8 4648 0 0 0
9 4409 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 94437
1 0 2 96426
2 0 3 98273
3 0 4 1377
4 0 5 26462
5 0 6 184634
6 0 7 21521
7 0 8 35085
8 0 9 78346
9 0 10 32102
physicalDamageDealtToChampions physicalDamageTaken role \
0 6587 23806 DUO
1 20347 17049 NONE
2 16095 20959 DUO
3 445 6762 SUPPORT
4 3468 24357 CARRY
5 34261 23891 NONE
6 702 25911 NONE
7 5186 19691 SOLO
8 9389 8501 CARRY
9 17245 9237 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 4 4 2 12 223
1 15 11 3 4 144
2 4 14 5 4 84
3 4 14 4 6 86
4 4 4 6 6 288
5 4 4 6 14 248
6 13 11 3 4 132
7 4 4 5 21 319
8 4 7 4 4 56
9 4 14 3 4 53
summonerName teamEarlySurrendered teamId teamPosition \
0 the12eht False 100 TOP
1 Juanissimo False 100 JUNGLE
2 FLAGGED 79388788 False 100 MIDDLE
3 Wagwan4Battyman False 100 UTILITY
4 poopoosauce69 False 100 BOTTOM
5 StalwartHide False 200 TOP
6 SlothoftheAbyss False 200 JUNGLE
7 Rotome False 200 MIDDLE
8 Dublaiar False 200 BOTTOM
9 LaggMyBlame False 200 UTILITY
timeCCingOthers timePlayed totalDamageDealt totalDamageDealtToChampions \
0 14 1673 113906 11177
1 8 1673 117842 22323
2 18 1673 112297 17885
3 22 1673 13199 9756
4 27 1673 112924 11903
5 22 1673 210612 42173
6 24 1673 110689 5444
7 7 1673 149702 20450
8 21 1673 84346 10283
9 40 1673 34134 17557
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 30240 4232 160 99
1 21583 9309 48 235
2 31871 5061 133 83
3 8877 13594 7 38
4 31301 2422 120 130
5 35438 17306 202 113
6 30670 17067 19 266
7 24209 14163 177 224
8 13618 4377 122 49
9 13945 6256 16 142
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 296 1 1243
1 106 1 6998
2 375 1 7296
3 108 5 288
4 150 1 2791
5 117 2 18162
6 159 1 56159
7 121 5 4108
8 153 3 5017
9 182 5 2031
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 247 1933 1 9
1 1068 537 1 9
2 428 1241 0 9
3 288 209 0 9
4 455 1904 0 9
5 4961 2647 6 2
6 196 214 0 2
7 330 344 2 2
8 27 468 0 2
9 311 298 1 2
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 15 1 0 8 False
1 15 0 4 1 False
2 6 0 0 4 False
3 26 3 2 11 False
4 12 2 3 3 False
5 16 2 1 9 True
6 14 0 0 6 True
7 13 2 0 6 True
8 8 0 0 6 True
9 42 1 4 18 True ,
assists baronKills bountyLevel champLevel championName \
0 2 0 0 15 Darius
1 8 0 0 15 Gragas
2 6 0 0 16 Neeko
3 3 0 0 15 Kaisa
4 8 0 0 14 Brand
5 4 1 1 18 Viego
6 9 0 0 17 MasterYi
7 5 0 8 18 Kayle
8 6 0 1 14 Jhin
9 8 0 2 14 Lux
damageDealtToBuildings damageDealtToObjectives damageDealtToTurrets \
0 711 13846 711
1 0 8826 0
2 147 1409 147
3 1352 3707 1352
4 286 2827 286
5 7983 43129 7983
6 2094 30797 2094
7 10466 16190 10466
8 1078 1196 1078
9 1119 2511 1119
deaths detectorWardsPlaced dragonKills firstBloodAssist firstBloodKill \
0 11 0 0 False False
1 5 0 1 False False
2 11 0 0 False False
3 6 0 0 False False
4 11 1 0 False False
5 4 0 0 False True
6 7 0 4 False False
7 3 1 0 False False
8 5 0 0 False False
9 6 0 0 False False
firstTowerAssist firstTowerKill gameEndedInEarlySurrender \
0 False False False
1 False False False
2 False False False
3 False False False
4 False False False
5 False True False
6 False False False
7 False False False
8 False False False
9 False False False
gameEndedInSurrender goldEarned individualPosition inhibitorKills \
0 False 8613 TOP 0
1 False 10230 JUNGLE 0
2 False 10820 MIDDLE 0
3 False 12914 BOTTOM 0
4 False 11328 UTILITY 0
5 False 15445 TOP 0
6 False 13721 JUNGLE 0
7 False 17307 MIDDLE 2
8 False 9517 BOTTOM 0
9 False 9517 UTILITY 0
inhibitorsLost item0 item1 item2 item3 item4 item5 item6 \
0 2 6631 3047 1055 3742 1029 1029 3340
1 2 2031 6656 2421 4630 3116 1001 3364
2 2 6655 3165 3111 3102 1052 0 3340
3 2 1055 6672 6676 3046 3006 1038 3340
4 2 1026 3853 3916 3020 4637 6653 3340
5 0 3153 6672 3006 3053 6676 0 3340
6 0 6672 3006 3124 3153 1038 1031 3340
7 0 3100 2420 3115 4633 3089 3006 3340
8 0 6671 1055 3009 6676 1018 0 3340
9 0 6655 3853 4628 3020 0 0 3364
killingSprees kills largestKillingSpree largestMultiKill \
0 0 0 0 0
1 1 4 2 1
2 1 6 2 1
3 2 9 5 2
4 2 6 2 1
5 3 15 5 2
6 1 7 4 2
7 3 14 8 2
8 0 2 0 1
9 1 6 2 1
longestTimeSpentLiving magicDamageDealt magicDamageDealtToChampions \
0 439 296 0
1 583 87971 9704
2 417 110706 18383
3 1139 8040 4312
4 526 94691 24759
5 999 9619 4052
6 595 4624 136
7 495 208894 18939
8 616 2399 1021
9 658 45773 16023
magicDamageTaken neutralMinionsKilled nexusLost objectivesStolen \
0 8772 32 1 0
1 8002 102 1 0
2 10368 0 1 0
3 8655 0 1 0
4 7300 4 1 0
5 14822 16 0 0
6 14802 156 0 0
7 12881 66 0 0
8 9036 4 0 0
9 10546 0 0 0
objectivesStolenAssists participantId physicalDamageDealt \
0 0 1 123266
1 0 2 21004
2 0 3 17647
3 0 4 108591
4 0 5 5021
5 0 6 168349
6 0 7 162285
7 0 8 49027
8 0 9 74805
9 0 10 2216
physicalDamageDealtToChampions physicalDamageTaken role \
0 5877 16495 SOLO
1 1145 25060 NONE
2 1047 12527 SOLO
3 10663 12005 CARRY
4 459 11722 SUPPORT
5 19238 24672 NONE
6 16527 19400 NONE
7 5025 8847 SOLO
8 6917 3143 CARRY
9 548 3005 SUPPORT
summoner1Casts summoner1Id summoner2Casts summoner2Id summonerLevel \
0 3 4 3 12 81
1 1 4 16 11 141
2 4 4 4 14 38
3 4 4 5 7 68
4 4 4 6 14 163
5 4 4 3 12 173
6 5 4 12 11 161
7 4 4 2 12 319
8 4 7 3 4 56
9 4 4 3 14 27
summonerName teamEarlySurrendered teamId teamPosition timeCCingOthers \
0 LilZambee False 100 TOP 12
1 DisLex1c False 100 JUNGLE 30
2 BussyJuice6969 False 100 MIDDLE 45
3 TheStove5137 False 100 BOTTOM 0
4 FlyingTurban False 100 UTILITY 11
5 DarkZexi False 200 TOP 14
6 D3GRAD3D False 200 JUNGLE 7
7 Rotome False 200 MIDDLE 12
8 Dublaiar False 200 BOTTOM 18
9 SmashNuts False 200 UTILITY 35
timePlayed totalDamageDealt totalDamageDealtToChampions \
0 1951 131312 5877
1 1951 118984 11515
2 1951 133014 20087
3 1951 133478 15999
4 1951 100974 26390
5 1951 198176 26018
6 1951 205788 22297
7 1951 262694 24841
8 1951 77325 8058
9 1951 49225 17808
totalDamageTaken totalHeal totalMinionsKilled totalTimeCCDealt \
0 27464 3292 157 140
1 35388 16849 25 582
2 24279 3991 170 265
3 23076 6870 212 13
4 21293 446 90 25
5 40740 17037 189 66
6 35315 16050 69 183
7 22459 14253 240 496
8 12381 3148 120 75
9 13780 1092 39 231
totalTimeSpentDead totalUnitsHealed trueDamageDealt \
0 260 1 7750
1 114 5 10009
2 348 1 4661
3 221 3 16846
4 322 1 1261
5 194 1 20206
6 211 1 38878
7 82 5 4772
8 129 2 120
9 151 1 1235
trueDamageDealtToChampions trueDamageTaken turretKills turretsLost \
0 0 2196 0 11
1 666 2325 0 11
2 656 1383 0 11
3 1024 2415 0 11
4 1171 2271 0 11
5 2728 1244 3 0
6 5632 1113 2 0
7 875 729 5 0
8 120 202 0 0
9 1235 227 0 0
visionScore visionWardsBoughtInGame wardsKilled wardsPlaced win
0 12 0 1 6 False
1 10 0 3 0 False
2 10 0 1 5 False
3 3 0 0 2 False
4 56 1 1 28 False
5 19 0 0 10 True
6 28 0 1 11 True
7 18 1 0 9 True
8 16 0 0 10 True
9 27 0 0 13 True ]
There are a lot of game aspect in League of Legends to examine, so let's look at the result of all the mechanics: winrate. This will be done by finding each user's summonerName entry in the datatable and the win entry. Each role (Top, jungle, middle, bottom, and support, AKA: top, jg, mid, bot, supp) will be examined.
Now each player plays certain roles more/less frequently. We can also track role frequency to better assess the player's skill.
Here we will also remove any role under 5% playrate, which is about 10 games, and anything less than 10 games tells us very little about their performance in a lane.
I'm anticipating Rotome will have the highest winrate, and Dublaiar will have to lowest.
cole_matches[0]
| assists | baronKills | bountyLevel | champLevel | championName | damageDealtToBuildings | damageDealtToObjectives | damageDealtToTurrets | deaths | detectorWardsPlaced | dragonKills | firstBloodAssist | firstBloodKill | firstTowerAssist | firstTowerKill | gameEndedInEarlySurrender | gameEndedInSurrender | goldEarned | individualPosition | inhibitorKills | inhibitorTakedowns | inhibitorsLost | item0 | item1 | item2 | item3 | item4 | item5 | item6 | killingSprees | kills | largestKillingSpree | largestMultiKill | longestTimeSpentLiving | magicDamageDealt | magicDamageDealtToChampions | magicDamageTaken | neutralMinionsKilled | nexusTakedowns | objectivesStolen | objectivesStolenAssists | participantId | physicalDamageDealt | physicalDamageDealtToChampions | physicalDamageTaken | role | summoner1Casts | summoner1Id | summoner2Casts | summoner2Id | summonerLevel | summonerName | teamEarlySurrendered | teamId | teamPosition | timeCCingOthers | timePlayed | totalDamageDealt | totalDamageDealtToChampions | totalDamageTaken | totalHeal | totalMinionsKilled | totalTimeCCDealt | totalTimeSpentDead | totalUnitsHealed | trueDamageDealt | trueDamageDealtToChampions | trueDamageTaken | turretKills | turretTakedowns | turretsLost | visionScore | visionWardsBoughtInGame | wardsKilled | wardsPlaced | win | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 0 | 0 | 0 | 11 | Sett | 3859 | 5390 | 3859 | 4 | 1 | 0 | False | False | False | False | False | True | 5451 | TOP | 0 | 0 | 0 | 1054 | 6630 | 1001 | 0 | 0 | 0 | 3340 | 0 | 0 | 0 | 0 | 483 | 556 | 556 | 2115 | 0 | 0 | 0 | 0 | 1 | 58716 | 6127 | 11345 | DUO | 2 | 12 | 3 | 4 | 292 | SOUTHGUNSLING | False | 100 | TOP | 11 | 1190 | 66560 | 7161 | 14311 | 599 | 120 | 95 | 105 | 1 | 7288 | 478 | 850 | 0 | 0 | 3 | 10 | 1 | 0 | 6 | False |
| 1 | 1 | 0 | 0 | 10 | MasterYi | 0 | 7813 | 0 | 4 | 1 | 0 | False | False | False | False | False | True | 5894 | JUNGLE | 0 | 0 | 0 | 6672 | 1001 | 1042 | 1042 | 1042 | 1018 | 3364 | 0 | 0 | 0 | 0 | 666 | 6253 | 0 | 2823 | 116 | 0 | 0 | 0 | 2 | 71888 | 2314 | 13404 | SUPPORT | 10 | 11 | 3 | 4 | 115 | pwndaros | False | 100 | JUNGLE | 2 | 1190 | 95127 | 3831 | 16518 | 6705 | 10 | 129 | 112 | 1 | 16985 | 1516 | 290 | 0 | 0 | 3 | 15 | 2 | 1 | 4 | False |
| 2 | 0 | 0 | 0 | 11 | Xerath | 0 | 200 | 0 | 4 | 2 | 0 | False | False | False | False | False | True | 5149 | MIDDLE | 0 | 0 | 0 | 1056 | 6655 | 3020 | 0 | 0 | 0 | 3340 | 0 | 2 | 0 | 1 | 583 | 44739 | 6867 | 7074 | 0 | 0 | 0 | 0 | 3 | 7778 | 151 | 480 | SUPPORT | 1 | 4 | 1 | 12 | 99 | PsyQe | False | 100 | MIDDLE | 13 | 1190 | 52518 | 7018 | 7555 | 12 | 87 | 142 | 106 | 1 | 0 | 0 | 0 | 0 | 0 | 3 | 16 | 2 | 1 | 7 | False |
| 3 | 0 | 0 | 0 | 9 | Varus | 214 | 376 | 214 | 5 | 0 | 0 | False | False | False | False | False | True | 5917 | BOTTOM | 0 | 0 | 0 | 0 | 6691 | 3006 | 1036 | 1036 | 3070 | 3340 | 1 | 2 | 2 | 2 | 352 | 2947 | 752 | 2915 | 0 | 0 | 0 | 0 | 4 | 42621 | 4750 | 6140 | SUPPORT | 2 | 14 | 2 | 4 | 117 | TheDreadnaught7 | False | 100 | BOTTOM | 5 | 1190 | 47225 | 5649 | 9468 | 347 | 107 | 118 | 105 | 1 | 1656 | 146 | 412 | 0 | 0 | 3 | 14 | 0 | 4 | 5 | False |
| 4 | 2 | 0 | 0 | 9 | Yuumi | 0 | 135 | 0 | 4 | 3 | 0 | False | False | False | False | False | True | 3878 | UTILITY | 0 | 0 | 0 | 3851 | 1052 | 2065 | 2055 | 0 | 0 | 3364 | 0 | 0 | 0 | 0 | 397 | 3790 | 1683 | 2117 | 0 | 0 | 0 | 0 | 5 | 2526 | 439 | 2525 | SUPPORT | 4 | 7 | 4 | 3 | 163 | snokween11 | False | 100 | UTILITY | 11 | 1190 | 6316 | 2122 | 5011 | 5068 | 8 | 22 | 64 | 5 | 0 | 0 | 369 | 0 | 0 | 3 | 20 | 4 | 0 | 9 | False |
| 5 | 2 | 0 | 5 | 13 | Riven | 118 | 118 | 118 | 0 | 0 | 0 | False | False | False | False | False | True | 7639 | TOP | 0 | 0 | 0 | 6630 | 2031 | 1036 | 3047 | 3067 | 1036 | 3340 | 1 | 5 | 5 | 2 | 0 | 52 | 52 | 1014 | 3 | 0 | 0 | 0 | 6 | 64501 | 12168 | 8366 | SUPPORT | 3 | 4 | 1 | 11 | 189 | Xigma the Dragon | False | 200 | TOP | 27 | 1190 | 68736 | 12358 | 10798 | 1495 | 135 | 103 | 0 | 1 | 4183 | 138 | 1417 | 0 | 0 | 0 | 7 | 0 | 1 | 4 | True |
| 6 | 9 | 0 | 3 | 11 | Amumu | 0 | 11783 | 0 | 0 | 0 | 3 | False | False | False | False | False | True | 7128 | JUNGLE | 0 | 0 | 0 | 3068 | 2031 | 3047 | 3076 | 1011 | 0 | 3364 | 1 | 3 | 3 | 2 | 0 | 58069 | 3355 | 2517 | 104 | 0 | 0 | 0 | 7 | 15386 | 1070 | 9139 | SUPPORT | 12 | 11 | 1 | 4 | 139 | babongshoo | False | 200 | JUNGLE | 15 | 1190 | 84637 | 5658 | 11657 | 4969 | 3 | 157 | 0 | 1 | 11181 | 1232 | 0 | 0 | 0 | 0 | 9 | 0 | 1 | 1 | True |
| 7 | 1 | 0 | 2 | 12 | Azir | 3514 | 7569 | 3514 | 2 | 3 | 0 | False | False | False | False | False | True | 7794 | MIDDLE | 0 | 0 | 0 | 0 | 2420 | 3020 | 1056 | 6655 | 1052 | 3340 | 2 | 6 | 4 | 2 | 478 | 68778 | 10658 | 3822 | 0 | 0 | 0 | 0 | 8 | 7147 | 93 | 3262 | SUPPORT | 2 | 4 | 2 | 21 | 191 | Coolgum15 | False | 200 | MIDDLE | 6 | 1190 | 80690 | 10876 | 7457 | 94 | 121 | 128 | 53 | 1 | 4764 | 124 | 372 | 1 | 1 | 0 | 10 | 3 | 0 | 6 | True |
| 8 | 3 | 0 | 1 | 11 | Ashe | 4037 | 13197 | 4037 | 1 | 0 | 0 | False | True | True | False | False | True | 8614 | BOTTOM | 0 | 0 | 0 | 1054 | 6673 | 3006 | 3123 | 3046 | 0 | 3340 | 1 | 5 | 4 | 2 | 746 | 709 | 677 | 2888 | 11 | 0 | 0 | 0 | 9 | 67978 | 5308 | 4512 | DUO | 3 | 4 | 2 | 7 | 240 | Negi Valentine | False | 200 | BOTTOM | 16 | 1190 | 70113 | 5985 | 7618 | 1468 | 130 | 379 | 27 | 2 | 1425 | 0 | 216 | 1 | 2 | 0 | 14 | 0 | 2 | 6 | True |
| 9 | 6 | 0 | 1 | 9 | Leona | 1114 | 5782 | 1114 | 1 | 2 | 0 | True | False | False | True | False | True | 5342 | UTILITY | 0 | 0 | 0 | 3860 | 3047 | 2055 | 3105 | 1028 | 3076 | 3364 | 0 | 2 | 0 | 1 | 741 | 2382 | 959 | 1319 | 0 | 0 | 0 | 0 | 10 | 6373 | 986 | 4627 | SUPPORT | 5 | 14 | 2 | 4 | 192 | Thick2BThighs | False | 200 | UTILITY | 15 | 1190 | 24810 | 2372 | 6080 | 190 | 29 | 21 | 21 | 1 | 16054 | 427 | 133 | 1 | 1 | 0 | 24 | 3 | 3 | 11 | True |
#categorial to numeric conversion for @lane s
def numeric_lane(lane):
if lane == 'TOP':
return 0
elif lane == 'JUNGLE':
return 1
elif lane == 'MIDDLE':
return 2
elif lane == 'BOTTOM':
return 3
else:
return 4
#finds winrates for a @summoner in a list of dataframes @match_list
def winrates(summoner, match_list):
#tuple with role, num wins, and num games for winrates
#indexes bottom up are top, jg, mid, bot, supp (AKA utility)
match = [('TOP', 0, 0), ('JUNGLE', 0, 0), ('MIDDLE', 0, 0),
('BOTTOM', 0, 0), ('UTILITY', 0, 0)]
for i in match_list:
lane = i.loc[i['summonerName'] == summoner]['teamPosition'].tolist()[0]
lane = numeric_lane(lane)
win = i.loc[i['summonerName'] == summoner]['win'].bool()
#since tuples are immutable we have to create another
lane_data = list(match[lane])
if win:
lane_data[1] += 1
lane_data[2] += 1
else:
lane_data[2] += 1
match[lane] = tuple(lane_data)
#create df and columns with data
df = pd.DataFrame(match, columns =['Role', 'numWins', 'numGames'])
df['winrate%'] = df['numWins']/df['numGames']*100
df['playrate%'] = df['numGames']/187*100
df['summonerName'] = summoner
df['averageWinrate%'] = df['numWins'].sum()/187*100
return df
#removes rows from a dataframe @df if the playrate of that lane is under 5%
def remove_low(df):
drop = []
for index, row in df.iterrows():
if row['playrate%'] < 5:
drop.append(index)
df = df.drop(drop)
return df
#get winrate data with winrates() and remove playrates under 5% with remove_low()
cole_winrates = winrates('Coolgum15', cole_matches)
cole_winrates = remove_low(cole_winrates)
jerry_winrates = winrates('Rotome', jerry_matches)
jerry_winrates = remove_low(jerry_winrates)
aidan_winrates = winrates('Dublaiar', aidan_matches)
aidan_winrates = remove_low(aidan_winrates)
wins = pd.concat([cole_winrates, jerry_winrates, aidan_winrates])
wins = wins.reset_index(drop = True)
wins
| Role | numWins | numGames | winrate% | playrate% | summonerName | averageWinrate% | |
|---|---|---|---|---|---|---|---|
| 0 | TOP | 20 | 37 | 54.054054 | 19.786096 | Coolgum15 | 50.267380 |
| 1 | JUNGLE | 27 | 57 | 47.368421 | 30.481283 | Coolgum15 | 50.267380 |
| 2 | MIDDLE | 22 | 47 | 46.808511 | 25.133690 | Coolgum15 | 50.267380 |
| 3 | BOTTOM | 11 | 22 | 50.000000 | 11.764706 | Coolgum15 | 50.267380 |
| 4 | UTILITY | 14 | 24 | 58.333333 | 12.834225 | Coolgum15 | 50.267380 |
| 5 | TOP | 9 | 18 | 50.000000 | 9.625668 | Rotome | 54.545455 |
| 6 | JUNGLE | 6 | 14 | 42.857143 | 7.486631 | Rotome | 54.545455 |
| 7 | MIDDLE | 79 | 143 | 55.244755 | 76.470588 | Rotome | 54.545455 |
| 8 | MIDDLE | 5 | 11 | 45.454545 | 5.882353 | Dublaiar | 47.058824 |
| 9 | BOTTOM | 70 | 148 | 47.297297 | 79.144385 | Dublaiar | 47.058824 |
| 10 | UTILITY | 11 | 21 | 52.380952 | 11.229947 | Dublaiar | 47.058824 |
players = ['Coolgum15', 'Rotome', 'Dublaiar']
roles = cole_winrates['Role'].tolist()
values = cole_winrates['winrate%'].tolist()
#graph labels
x = np.arange(len(roles))
width = .25
fig, ax = plt.subplots()
ax.set_ylabel('Winrate%')
ax.set_xlabel('Role')
ax.set_title('Winrates by lane in the last 187 games. Lanes with <5% playrate excluded')
ax.set_xticks(x)
ax.set_xticklabels(roles)
#graph data
ax.bar(x + width, values, width, label = 'Coolgum15')
jerry_w = jerry_winrates['winrate%'].tolist()
jerry_w.extend([0,0])
ax.bar(x - width, jerry_w, width, color='green', label="Rotome")
aidan_w = [0,0]
aidan_w.extend(aidan_winrates['winrate%'].tolist())
ax.bar(x, aidan_w, width, color='red', label="Dublaiar")
ax.legend(players)
fig.set_size_inches(16, 9)
The data confirms my suspicions! There is also some interesting data here for Coolgum15 and Dublaiar, where even in their most played roles (Coolgum15: Jungle, Middle and Dublaiar: Bottom) are below 50% winrate. From this data those two should maybe abandon their more played roles for other roles where they have higher winrates like Support (Utility).
There is a complaint in our friend group that I would like to investigate. One person, David, that we play with sometimes is way better than us, and because of how matchmaking in League of Legends works, our average game playing with him feels harder to win than usual. He tries to alleviate this by going on a new account called a "smurf" where the matchmaking shouldn't have detected that he is good yet. So let's look into games where we play with his account or his smurf: StalwartHide / RyeBreadPitt
I will also be removing entries for lanes with no data, as there are lanes with no data due to not playing a lot of games of League with David.
Since we are looking at performance with David overall, we can remove lane specific columns to get a cleaner representation.
#finds winrates for a @summoner in a list of dataframes @match_list while present with the player @david
def winrates_with_david(summoner, match_list, david):
#tuple with role, num wins, and num games for winrates
#indexes bottom up are top, jg, mid, bot, supp (AKA utility)
match = [('TOP', 0, 0), ('JUNGLE', 0, 0), ('MIDDLE', 0, 0),
('BOTTOM', 0, 0), ('UTILITY', 0, 0)]
count = 0
for i in match_list:
if david in i['summonerName'].tolist():
lane = i.loc[i['summonerName'] == summoner]['teamPosition'].tolist()[0]
lane = numeric_lane(lane)
win = i.loc[i['summonerName'] == summoner]['win'].bool()
#since tuples are immutable we have to create another
lane_data = list(match[lane])
if win:
lane_data[1] += 1
lane_data[2] += 1
else:
lane_data[2] += 1
match[lane] = tuple(lane_data)
count += 1
df = pd.DataFrame(match, columns =['Role', 'numWins', 'numGames'])
df['winrate%'] = df['numWins']/df['numGames']*100
df['playrate%'] = df['numGames']/count*100
df['summonerName'] = summoner
df['averageWinrate_with_David%'] = df['numWins'].sum()/count*100
df['davidAccount'] = david
return df
#get winrates for each player with they are with each david account and add their original winrate
cole_stalwart = winrates_with_david('Coolgum15', cole_matches, 'StalwartHide')
cole_stalwart['original_winrate%'] = cole_winrates['averageWinrate%']
cole_rye = winrates_with_david('Coolgum15', cole_matches, 'RyeBreadPitt')
cole_rye['original_winrate%'] = cole_winrates['averageWinrate%']
jerry_stalwart = winrates_with_david('Rotome', jerry_matches, 'StalwartHide')
jerry_stalwart['original_winrate%'] = jerry_winrates['averageWinrate%']
jerry_rye = winrates_with_david('Rotome', jerry_matches, 'RyeBreadPitt')
jerry_rye['original_winrate%'] = jerry_winrates['averageWinrate%']
aidan_stalwart = winrates_with_david('Dublaiar', aidan_matches, 'StalwartHide')
aidan_stalwart['original_winrate%'] = aidan_winrates['averageWinrate%']
aidan_rye = winrates_with_david('Dublaiar', aidan_matches, 'RyeBreadPitt')
aidan_rye['original_winrate%'] = aidan_winrates['averageWinrate%']
#combine dataframes and remove irrelevant columns
wins = pd.concat([cole_stalwart, cole_rye, jerry_stalwart, jerry_rye, aidan_stalwart, aidan_rye])
wins = wins.dropna()
wins = wins.reset_index(drop = True)
wins = wins.drop(['winrate%', 'playrate%', 'Role'],axis=1)
wins = wins.groupby(['summonerName','davidAccount','averageWinrate_with_David%','original_winrate%']).sum()
wins
| numWins | numGames | ||||
|---|---|---|---|---|---|
| summonerName | davidAccount | averageWinrate_with_David% | original_winrate% | ||
| Coolgum15 | RyeBreadPitt | 61.111111 | 50.267380 | 11 | 18 |
| StalwartHide | 43.750000 | 50.267380 | 7 | 16 | |
| Dublaiar | RyeBreadPitt | 47.826087 | 47.058824 | 11 | 23 |
| StalwartHide | 58.333333 | 47.058824 | 14 | 24 | |
| Rotome | RyeBreadPitt | 45.833333 | 54.545455 | 9 | 22 |
| StalwartHide | 53.846154 | 54.545455 | 25 | 47 |
Data here is quite mixed. Some players perform better when David is on StalwartHide (Dublaiar) and others perform worse. Some players perform better when David is on RyeBreadPitt (Coolgum15) and others perform worse. I would say that the smurf has no overall impact if we all played a game together, but if a single player were to play a game with only David, they could be very excited or not interested at all depending on the account. However, I can definitely confirm my suspicions that playing with David's main account StalwartHide is harder than a game without him for me.
Now let's look into the parts of gameplay that are not great in order to improve a player's gameplay and their winrates.
In League of Legends, one of the most important aspects of your gameplay is how much money you earn. A large amount of money can come from kills, but an even larger amount can be gained through killing enemy minions or neutral jungle monsters. Killing enemy minions and jungle monsters will contribute to your creep score, or CS, and I want to investigate how creep score impacts each player's winrate. Specifically, I want to examine how creep score difference from a player's lane opponent impacts their winrate.
I will be looking at the main roles for Rotome (Mid) and Dublaiar (Bot), and at Coolgum15 overall, as I, Coolgum15, dont really have a main role. Except, I will not consider my support games, as supports aren't really supposed to CS.
I'm choosing to represent all players on one graph in order to make comparisons easier, despite the messy nature of combining graphs.
#calculates the winrates of range <-50 to >50 cs differences in increments of 5 from a @summoner s @matches
def cs_diff(summoner, matches):
#list of tuples in the form of (int cs difference, bool win)
diff = []
#find cs diff and win/loss
for i in matches:
#no support games
if i.loc[i['summonerName'] == summoner]['teamPosition'].tolist()[0] != 'UTILITY':
#find enemy
lane = i.loc[i['summonerName'] == summoner]['teamPosition'].tolist()[0]
enemy = i.loc[i['teamPosition'] == lane]
enemy = enemy.loc[enemy['summonerName'] != summoner]['summonerName'].tolist()
#rare case where there was no lane opponent. Missing data handling
if enemy != []:
enemy = enemy[0]
#find cs difference
summ_jg = i.loc[i['summonerName'] == summoner]['totalMinionsKilled'].tolist()[0]
summ_min = i.loc[i['summonerName'] == summoner]['neutralMinionsKilled'].tolist()[0]
summcs = summ_jg + summ_min
enemy_jg = i.loc[i['summonerName'] == enemy]['totalMinionsKilled'].tolist()[0]
enemy_min = i.loc[i['summonerName'] == summoner]['neutralMinionsKilled'].tolist()[0]
enemycs = enemy_jg + enemy_min
csdiff = summcs - enemycs
win = i.loc[i['summonerName'] == summoner]['win'].bool()
diff.append((csdiff, win))
#cs differce buckets incrementing by 5 from <-50 to >50
cs = []
bucket = []
for (a,b) in diff:
if a <=-50:
if b:
bucket.append(1)
else:
bucket.append(0)
cs.append(bucket)
bucket = []
for (a,b) in diff:
if a >50:
if b:
bucket.append(1)
else:
bucket.append(0)
cs.append(bucket)
bucket = []
count = 1
for i in range(-45, 51, 5):
bucket = []
for (a,b) in diff:
if a <= i and a > i-5:
if b:
bucket.append(1)
else:
bucket.append(0)
cs.append(bucket)
count += 1
#calculate winrates for each cs bucket
cs_winrate = []
size = []
for i in cs:
win = 0
win = sum(i)
#rare case of no cs diff in that bucket.
#to treat this missing case we just use a middling 50 percent winrate (ie no impact)
if len(i) != 0:
cs_winrate.append(win/len(i)*100)
else:
cs_winrate.append(50)
size.append(len(i))
return cs_winrate, size
#gather data via function
players = ['Coolgum15', 'Rotome', 'Dublaiar']
cole_cs, cole_size = cs_diff('Coolgum15', cole_matches)
jerry_cs, jerry_size = cs_diff('Rotome', jerry_matches)
aidan_cs, aidan_size = cs_diff('Dublaiar', aidan_matches)
#graph data
buckets = ['<-50', '(-50)-(-45)', '(-45)-(-40)', '(-40)-(-35)', '(-35)-(-30)',
'(-30)-(-25)', '(-25)-(-20)', '(-20)-(-15)', '(-15)-(-10)', '(-10)-(-5)',
'(-5)-0', '0-5', '5-10', '10-15', '15-20', '20-25', '25-30', '30-35',
'35-40', '40-45', '45-50', '>50']
fig, ax = plt.subplots()
ax.set_ylabel('Winrate%')
ax.set_xlabel('CS difference')
ax.set_title('Winrate vs CS difference from lane opponent')
fig.set_size_inches(24, 18)
ax.scatter(buckets, cole_cs, color = 'blue')
ax.scatter(buckets, jerry_cs, color = 'green')
ax.scatter(buckets, aidan_cs, color = 'red')
ax.legend(players)
<matplotlib.legend.Legend at 0x7f4c638567c0>
This data is hard to interpret, so we'll implement some machine learning and use a linear regression line for each player's data.
players = ['Coolgum15', 'Rotome', 'Dublaiar']
x = np.array([0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21])
fig, ax = plt.subplots()
ax.set_ylabel('Winrate%')
ax.set_xlabel('CS difference')
ax.set_title('Winrate vs CS difference from lane opponent')
fig.set_size_inches(24, 18)
ax.scatter(buckets, cole_cs, color = 'blue')
y = np.array(cole_cs)
m, b = np.polyfit(x, y, 1)
ax.plot(['<-50', '>50'],[b, m*21 + b], color = 'blue')
ax.scatter(buckets, jerry_cs, color = 'green')
y = np.array(jerry_cs)
m, b = np.polyfit(x, y, 1)
ax.plot(['<-50', '>50'],[b, m*21 + b], color = 'green')
ax.scatter(buckets, aidan_cs, color = 'red')
y = np.array(aidan_cs)
m, b = np.polyfit(x, y, 1)
ax.plot(['<-50', '>50'],[b, m*21 + b], color = 'red')
ax.legend(players)
<matplotlib.legend.Legend at 0x7f4cc2a91df0>
The fit on any of these lines is not great, but there is still some information we can unpack here.
Dublaiar's CS score has almost no impact on their performance, meaning that he is not making use of his gold and not pushing his lead further, but does play safe when behind.
Meanwhile, Coolgum15 has the best performance with high cs, but also the worst performance with low cs. This tells me that I do push my lead better than my friends, but I can't play safe when I'm behind on CS and end up losing
I would say Rotome has the healthiest CS difference distribution, as he does have a below 50% winrate when behind on CS, but it is very slight meaning he plays the most safe when behind. Rotome could work on pushing his leads with higher CS though, as his high-CS winrate is a little lower than expected.
Commenting on the accuracy of these points and this regression, while most of these CS bucket ranges have sufficient amounts of data, not all of them do. I did have to code around one case where there was 0 data in that bucket, despite there beind ~160 games per player. Outliers like Dublaiar's 0% winrate at a >50 CS lead are dubious, and would be rolled out in any sample size larger than this one.
Let's take a look at residuals to see if we get any more insights.
There are several useful conclusions from the gathered data that can push the players to do better as a whole. These I will be communicating with my team in order for us to do better in future games.
David: If our group ever decides to play with David, he doesn't have to worry about switching to his smurf account and can instead focus on levelling his main account, as the matchmaking does not favor his smurf to the group overall.
Jerry (Rotome): Jerry is effectively playing from a CS deficit, but he could be pushing his lead better, as even in games with high CS differences in his favor he still has okay winrates. However, his middle lane game is on point, and he has a solid winrate in the midlane and should continue to lane there.
Cole (Coolgum15): As much as I play jungle in order to fill a role for the team, I should either get serious about getting better at jungle, or switch to a different role that I am more successful in, like top or support. Additionally, I need to work on my middle lane play, because I'm going to keep playing it because I love it so much. Furthermore, I play HORRIBLY when behind on CS and need to improve my CS-ing skills in a bad situation, as well as getting better at playing from behind.
Aidan (Dublaiar): Aidan has plenty of areas to improves in, whether that be bot lane overall, or pushing his lead while ahead on CS, or even branching out to other roles. Aidan should most likely shift to support if he cares greatly about winrates.